Skip to content

Commit

Permalink
feat: adding usdc token on xdai
Browse files Browse the repository at this point in the history
  • Loading branch information
KolevDarko committed Oct 13, 2021
1 parent 4cc80d7 commit e5a78cf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/currency/src/erc20/networks/index.ts
Expand Up @@ -6,6 +6,7 @@ import type { TokenMap } from './types';
import { supportedFantomTokens } from './fantom';
import { supportedBSCTestERC20 } from './bsctest';
import { supportedBSCERC20 } from './bsc';
import { supportedXDAIERC20 } from './xdai';

export const supportedNetworks: Record<string, TokenMap> = {
celo: supportedCeloERC20,
Expand All @@ -15,6 +16,7 @@ export const supportedNetworks: Record<string, TokenMap> = {
fantom: supportedFantomTokens,
bsctest: supportedBSCTestERC20,
bsc: supportedBSCERC20,
xdai: supportedXDAIERC20,
};

export type { TokenMap };
10 changes: 10 additions & 0 deletions packages/currency/src/erc20/networks/xdai.ts
@@ -0,0 +1,10 @@
import { TokenMap } from './types';

// List of the supported bsc network tokens
export const supportedXDAIERC20: TokenMap = {
'0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83': {
name: 'USDC token on xDai',
symbol: 'USDC',
decimals: 6,
},
};

0 comments on commit e5a78cf

Please sign in to comment.