Skip to content

Commit

Permalink
feat: added cGLD and cEUR on celo network (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
yomarion committed May 23, 2021
1 parent c2b98b2 commit a91ae11
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/currency/src/erc20/networks/celo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,23 @@ import { TokenMap } from './types';

// List of the supported celo network tokens
export const supportedCeloERC20: TokenMap = {
// cUSD token (https://explorer.celo.org/address/0x765de816845861e75a25fca122bb6898b8b1282a/transactions)
// https://explorer.celo.org/address/0x765de816845861e75a25fca122bb6898b8b1282a/read_contract
'0x765DE816845861e75A25fCA122bb6898B8B1282a': {
// FIXME: should be cUSD, need to work on the retrocompatibility
symbol: 'CUSD',
decimals: 18,
name: 'Celo Dollar',
},
// https://explorer.celo.org/address/0x471EcE3750Da237f93B8E339c536989b8978a438/read_contract
'0x471EcE3750Da237f93B8E339c536989b8978a438': {
symbol: 'cGLD',
decimals: 18,
name: 'Celo Gold',
},
// https://explorer.celo.org/address/0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73/read_contract
'0xD8763CBa276a3738E6DE85b4b3bF5FDed6D6cA73': {
symbol: 'cEUR',
decimals: 18,
name: 'Celo Euro',
},
};

0 comments on commit a91ae11

Please sign in to comment.