dsa-connectors/scripts/tests/mainnet/tokens.ts

24 lines
483 B
TypeScript
Raw Normal View History

2021-12-05 05:23:21 +00:00
export const tokens = {
eth: {
type: "token",
symbol: "ETH",
name: "Ethereum",
address: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
decimals: 18,
},
dai: {
type: "token",
symbol: "DAI",
name: "DAI Stable",
2021-12-05 20:04:41 +00:00
address: "0x6B175474E89094C44Da98b954EedeAC495271d0F",
2021-12-05 05:23:21 +00:00
decimals: 18,
},
usdc: {
type: "token",
symbol: "USDC",
name: "USD Coin",
2021-12-05 20:04:41 +00:00
address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
2021-12-05 05:23:21 +00:00
decimals: 6,
},
};