Skip to content

Commit

Permalink
feat: add mph and ausdc tokens to supported tokens (#423)
Browse files Browse the repository at this point in the history
* feat: add MPH token to the list of supported tokens

* feat: add aUSDC token to the list of supported tokens
  • Loading branch information
yomarion committed Mar 2, 2021
1 parent 45f09f9 commit 6f8afec
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/currency/src/erc20/networks/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,24 @@ const extraERC20Tokens = {
decimals: 2,
address: '0x433d86336dB759855A66cCAbe4338313a8A7fc77',
},
// MPH
'0x8888801af4d980682e47f1a9036e589479e835c5': {
name: 'MPH',
erc20: true,
logo: 'mph.svg',
symbol: 'MPH',
decimals: 18,
address: '0x8888801af4d980682e47f1a9036e589479e835c5',
},
// Aave USDC
'0x9bA00D6856a4eDF4665BcA2C2309936572473B7E': {
name: 'aUSDC',
erc20: true,
logo: 'ausdc.svg',
symbol: 'aUSDC',
decimals: 6,
address: '0x9bA00D6856a4eDF4665BcA2C2309936572473B7E',
},
};
/* eslint-enable spellcheck/spell-checker */

Expand Down

0 comments on commit 6f8afec

Please sign in to comment.