add brave and more icons

r_light
yann300 4 months ago
parent 234d0765d4
commit fafc5a148e
  1. 5
      apps/remix-ide/src/app/udapp/run-tab.js
  2. BIN
      apps/remix-ide/src/assets/img/brave.png
  3. BIN
      apps/remix-ide/src/assets/img/foundry.png
  4. 4
      libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx

@ -144,6 +144,7 @@ export class RunTab extends ViewPlugin {
'ganache-provider': 'Deploy to a ganache development nework.',
'foundry-provider': 'Deploy to a foundry development nework.',
'injected-MetaMask': 'Deploy through the Metamask browser extension.',
'injected-Brave Wallet': 'Deploy through the Brave Wallet extension.',
'injected-Brave': 'Deploy through the Brave browser extension.',
'injected-metamask-optimism': 'Deploy to the Optimism network through the Metamask browser extension.',
'injected-metamask-arbitrum': 'Deploy to the Arbitrum network through the Metamask browser extension.',
@ -157,6 +158,7 @@ export class RunTab extends ViewPlugin {
'injected-metamask-sepolia': ['assets/img/metamask.png'],
'injected-metamask-ephemery': ['assets/img/metamask.png'],
'injected-MetaMask': ['assets/img/metamask.png'],
'injected-Brave Wallet': ['assets/img/brave.png'],
'hardhat-provider': ['assets/img/hardhat.png'],
'walletconnect': ['assets/img/Walletconnect-logo.png'],
'vm-cancun': ['assets/img/guitarRemiCroped.webp'],
@ -167,9 +169,12 @@ export class RunTab extends ViewPlugin {
'vm-mainnet-fork': ['assets/img/guitarRemiCroped.webp'],
'vm-sepolia-fork': ['assets/img/sleepingRemiCroped.webp'],
'vm-custom-fork': ['assets/img/remixLogo.webp'],
'foundry-provider': ['assets/img/foundry.png'],
'basic-http-provider': ['assets/img/hexagon-remix-greengrey-texture.png']
}
const addProvider = async (position, name, displayName, isInjected, isVM, fork = '', dataId = '', title = '') => {
console.log(name)
await this.call('blockchain', 'addProvider', {
position,
options: {},

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

@ -74,8 +74,8 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
{ props.logo && <img className='remixui_grid_view_logo mr-1' src={props.logo} style={{ width: '1rem', height: '1rem' }}/> }
{ props.logos && props.logos.map((logo) => <img className='remixui_grid_view_logo mr-1' src={logo} style={{ width: '1rem', height: '1rem' }}/>)}
{ props.title && <label
className='m-0 p-0 align-items-left'
style={{ overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', fontSize: 'xx-small' }}
className='m-0 p-0 align-items-left font-weight-bold'
style={{ overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}
>
{ props.title }
</label> }

Loading…
Cancel
Save