1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
export const tokens = {
ZRX: {
name: '0x Protocol Token',
decimals: 18,
symbol: 'ZRX',
},
WETH: {
name: 'Wrapped ETH',
decimals: 18,
symbol: 'WETH',
},
};
export const ETHER_TOKEN = {
name: 'Ether',
decimals: 18,
symbol: 'ETH',
};
export const TOKENS_BY_NETWORK: {
[networkId: number]: { [tokenSymbol: string]: { address: string; decimals: number; symbol: string; name: string } };
} = {
3: {
ZRX: {
...tokens.ZRX,
address: '0xff67881f8d12f372d91baae9752eb3631ff0ed00',
},
WETH: {
...tokens.WETH,
address: '0xc778417e063141139fce010982780140aa0cd5ab',
},
},
42: {
ZRX: {
...tokens.ZRX,
address: '0x2002d3812f58e35f0ea1ffbf80a75a38c32175fa',
},
WETH: {
...tokens.WETH,
address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
},
},
};
|