Skip to content

Commit

Permalink
feat: update WBNB to wrap BNB on opBNB mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
gleiser-oliveira committed Mar 12, 2024
1 parent 4bc76dd commit 7bf9d31
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions apps/evm/src/libs/tokens/infos/commonTokens/opBnbMainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ import wbnbLogo from 'libs/tokens/img/wbnb.svg';
import xvsLogo from 'libs/tokens/img/xvs.svg';
import type { Token } from 'types';

const bnbToken: Token = {
address: '0x0000000000000000000000000000000000000000',
decimals: 18,
symbol: 'BNB',
asset: bnbLogo,
isNative: true,
};

export const tokens: Token[] = [
{
address: '0x0000000000000000000000000000000000000000',
decimals: 18,
symbol: 'BNB',
asset: bnbLogo,
isNative: true,
},
bnbToken,
{
address: '0x3E2e61F1c075881F3fB8dd568043d8c221fd5c61',
decimals: 18,
Expand Down Expand Up @@ -50,5 +52,6 @@ export const tokens: Token[] = [
decimals: 18,
symbol: 'WBNB',
asset: wbnbLogo,
tokenWrapped: bnbToken,
},
];

0 comments on commit 7bf9d31

Please sign in to comment.