Skip to content
This repository has been archived by the owner on Mar 11, 2023. It is now read-only.

Commit

Permalink
[Backend] Fix BSC bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
UnsignedInt8 committed Nov 8, 2021
1 parent 653a5c4 commit bee5aff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common/Networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const PublicNetworks: INetwork[] = [
defaultTokens: [],
},
{
symbol: 'BSC',
symbol: 'BNB',
comm_id: 'bsc',
network: 'BSC',
chainId: 56,
Expand Down
12 changes: 9 additions & 3 deletions src/misc/Tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,13 @@ const BSC_ETH = {
symbol: 'ETH',
};

export const BscPopularTokens = [BSC_ETH, BSC_DAI, BSC_USDC, BUSD, CAKE, XVS, ALPACA];
const BSC_BUSD = {
address: '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56',
decimals: 18,
symbol: 'BUSD',
};

export const BscPopularTokens = [BSC_ETH, BSC_DAI, BSC_USDC, BSC_BUSD, CAKE, XVS, ALPACA];

const HECO_ETH = {
address: '0x64FF637fB478863B7468bc97D30a5bF3A428a1fD',
Expand Down Expand Up @@ -592,7 +598,7 @@ const zkSyncTest_DAI = {

export const zkSyncTestPopularTokens = [zkSyncTest_USDC, zkSyncTest_DAI];

const all: IToken[] = [
const all = [
...Stablecoins,
WETH,
...BTCTokens,
Expand All @@ -603,6 +609,6 @@ const all: IToken[] = [
...FTMPopularTokens,
...BscPopularTokens,
...HecoPopularTokens,
];
] as IToken[];

export default all;

0 comments on commit bee5aff

Please sign in to comment.