@pioneer-platform/tokens 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @pioneer-platform/tokens
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Automated minor version bump for all packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/loggerdog@8.5.0
13
+
14
+ ## 0.1.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Automated patch version bump for all packages
19
+ - Updated dependencies
20
+ - @pioneer-platform/loggerdog@8.4.1
21
+
3
22
  ## 0.1.0
4
23
 
5
24
  ### Minor Changes
package/package.json CHANGED
@@ -1,18 +1,8 @@
1
1
  {
2
2
  "name": "@pioneer-platform/tokens",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
- "dependencies": {
7
- "@coinmasters/tokens": "^3.7.28",
8
- "@coinmasters/types": "^4.7.28",
9
- "@noble/hashes": "^1.4.0",
10
- "@pioneer-platform/loggerdog": "^8.4.0",
11
- "@types/node": "^18.15.11",
12
- "ts-node": "^8.10.2",
13
- "typescript": "^5.0.4"
14
- },
15
- "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40",
16
6
  "scripts": {
17
7
  "npm": "pnpm i",
18
8
  "test": "pnpm run build && node __tests__/test-module.js",
@@ -21,5 +11,15 @@
21
11
  "build": "tsc -p .",
22
12
  "prepublish": "pnpm run build",
23
13
  "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
24
- }
14
+ },
15
+ "dependencies": {
16
+ "@coinmasters/tokens": "^3.7.28",
17
+ "@coinmasters/types": "^4.7.28",
18
+ "@noble/hashes": "^1.4.0",
19
+ "@pioneer-platform/loggerdog": "^8.5.0",
20
+ "@types/node": "^18.15.11",
21
+ "ts-node": "^8.10.2",
22
+ "typescript": "^5.0.4"
23
+ },
24
+ "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
25
25
  }
package/lib/index.d.ts DELETED
@@ -1,14 +0,0 @@
1
- export { list as OneInchList } from './tokenLists/1inch';
2
- export { list as CoinGeckoList } from './tokenLists/Coingecko';
3
- export { list as MayaList } from './tokenLists/Maya';
4
- export { list as NativeList } from './tokenLists/Native';
5
- export { list as PancakeswapList } from './tokenLists/Pancakeswap';
6
- export { list as PancakeswapETHList } from './tokenLists/Pancakeswapeth';
7
- export { list as PangolinList } from './tokenLists/Pangolin';
8
- export { list as PioneerList } from './tokenLists/Pioneer';
9
- export { list as StargateARBList } from './tokenLists/Stargatearb';
10
- export { list as SushiswapList } from './tokenLists/Sushiswap';
11
- export { list as ThorchainList } from './tokenLists/Thorchain';
12
- export { list as TraderjoeList } from './tokenLists/Traderjoe';
13
- export { list as UniswapList } from './tokenLists/Uniswap';
14
- export { list as WoofiList } from './tokenLists/Woofi';
package/lib/index.js DELETED
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.WoofiList = exports.UniswapList = exports.TraderjoeList = exports.ThorchainList = exports.SushiswapList = exports.StargateARBList = exports.PioneerList = exports.PangolinList = exports.PancakeswapETHList = exports.PancakeswapList = exports.NativeList = exports.MayaList = exports.CoinGeckoList = exports.OneInchList = void 0;
4
- var _1inch_1 = require("./tokenLists/1inch");
5
- Object.defineProperty(exports, "OneInchList", { enumerable: true, get: function () { return _1inch_1.list; } });
6
- var Coingecko_1 = require("./tokenLists/Coingecko");
7
- Object.defineProperty(exports, "CoinGeckoList", { enumerable: true, get: function () { return Coingecko_1.list; } });
8
- var Maya_1 = require("./tokenLists/Maya");
9
- Object.defineProperty(exports, "MayaList", { enumerable: true, get: function () { return Maya_1.list; } });
10
- var Native_1 = require("./tokenLists/Native");
11
- Object.defineProperty(exports, "NativeList", { enumerable: true, get: function () { return Native_1.list; } });
12
- var Pancakeswap_1 = require("./tokenLists/Pancakeswap");
13
- Object.defineProperty(exports, "PancakeswapList", { enumerable: true, get: function () { return Pancakeswap_1.list; } });
14
- var Pancakeswapeth_1 = require("./tokenLists/Pancakeswapeth");
15
- Object.defineProperty(exports, "PancakeswapETHList", { enumerable: true, get: function () { return Pancakeswapeth_1.list; } });
16
- var Pangolin_1 = require("./tokenLists/Pangolin");
17
- Object.defineProperty(exports, "PangolinList", { enumerable: true, get: function () { return Pangolin_1.list; } });
18
- var Pioneer_1 = require("./tokenLists/Pioneer");
19
- Object.defineProperty(exports, "PioneerList", { enumerable: true, get: function () { return Pioneer_1.list; } });
20
- var Stargatearb_1 = require("./tokenLists/Stargatearb");
21
- Object.defineProperty(exports, "StargateARBList", { enumerable: true, get: function () { return Stargatearb_1.list; } });
22
- var Sushiswap_1 = require("./tokenLists/Sushiswap");
23
- Object.defineProperty(exports, "SushiswapList", { enumerable: true, get: function () { return Sushiswap_1.list; } });
24
- var Thorchain_1 = require("./tokenLists/Thorchain");
25
- Object.defineProperty(exports, "ThorchainList", { enumerable: true, get: function () { return Thorchain_1.list; } });
26
- var Traderjoe_1 = require("./tokenLists/Traderjoe");
27
- Object.defineProperty(exports, "TraderjoeList", { enumerable: true, get: function () { return Traderjoe_1.list; } });
28
- var Uniswap_1 = require("./tokenLists/Uniswap");
29
- Object.defineProperty(exports, "UniswapList", { enumerable: true, get: function () { return Uniswap_1.list; } });
30
- var Woofi_1 = require("./tokenLists/Woofi");
31
- Object.defineProperty(exports, "WoofiList", { enumerable: true, get: function () { return Woofi_1.list; } });
@@ -1,207 +0,0 @@
1
- export declare const list: {
2
- readonly name: "Trust Wallet: Ethereum";
3
- readonly timestamp: "2021-11-09T22:30:24.689Z";
4
- readonly version: {
5
- readonly major: 14;
6
- readonly minor: 0;
7
- readonly patch: 0;
8
- };
9
- readonly tokens: readonly [{
10
- readonly address: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2";
11
- readonly chain: "ETH";
12
- readonly identifier: "ETH.WETH-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2";
13
- readonly decimals: 18;
14
- }, {
15
- readonly address: "0x0000000000085d4780B73119b644AE5ecd22b376";
16
- readonly chain: "ETH";
17
- readonly identifier: "ETH.TUSD-0X0000000000085D4780B73119B644AE5ECD22B376";
18
- readonly decimals: 18;
19
- }, {
20
- readonly address: "0x0Ae055097C6d159879521C384F1D2123D1f195e6";
21
- readonly chain: "ETH";
22
- readonly identifier: "ETH.STAKE-0X0AE055097C6D159879521C384F1D2123D1F195E6";
23
- readonly decimals: 18;
24
- }, {
25
- readonly address: "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e";
26
- readonly chain: "ETH";
27
- readonly identifier: "ETH.YFI-0X0BC529C00C6401AEF6D220BE8C6EA1667F6AD93E";
28
- readonly decimals: 18;
29
- }, {
30
- readonly address: "0x0D8775F648430679A709E98d2b0Cb6250d2887EF";
31
- readonly chain: "ETH";
32
- readonly identifier: "ETH.BAT-0X0D8775F648430679A709E98D2B0CB6250D2887EF";
33
- readonly decimals: 18;
34
- }, {
35
- readonly address: "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942";
36
- readonly chain: "ETH";
37
- readonly identifier: "ETH.MANA-0X0F5D2FB29FB7D3CFEE444A200298F468908CC942";
38
- readonly decimals: 18;
39
- }, {
40
- readonly address: "0x111111111117dC0aa78b770fA6A738034120C302";
41
- readonly chain: "ETH";
42
- readonly identifier: "ETH.1INCH-0X111111111117DC0AA78B770FA6A738034120C302";
43
- readonly decimals: 18;
44
- }, {
45
- readonly address: "0x1985365e9f78359a9B6AD760e32412f4a445E862";
46
- readonly chain: "ETH";
47
- readonly identifier: "ETH.REP-0X1985365E9F78359A9B6AD760E32412F4A445E862";
48
- readonly decimals: 18;
49
- }, {
50
- readonly address: "0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44";
51
- readonly chain: "ETH";
52
- readonly identifier: "ETH.KP3R-0X1CEB5CB57C4D4E2B2433641B95DD330A33185A44";
53
- readonly decimals: 18;
54
- }, {
55
- readonly address: "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984";
56
- readonly chain: "ETH";
57
- readonly identifier: "ETH.UNI-0X1F9840A85D5AF5BF1D1762F925BDADDC4201F984";
58
- readonly decimals: 18;
59
- }, {
60
- readonly address: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599";
61
- readonly chain: "ETH";
62
- readonly identifier: "ETH.WBTC-0X2260FAC5E5542A773AA44FBCFEDF7C193BC2C599";
63
- readonly decimals: 8;
64
- }, {
65
- readonly address: "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39";
66
- readonly chain: "ETH";
67
- readonly identifier: "ETH.HEX-0X2B591E99AFE9F32EAA6214F7B7629768C40EEB39";
68
- readonly decimals: 8;
69
- }, {
70
- readonly address: "0x2ba592F78dB6436527729929AAf6c908497cB200";
71
- readonly chain: "ETH";
72
- readonly identifier: "ETH.CREAM-0X2BA592F78DB6436527729929AAF6C908497CB200";
73
- readonly decimals: 18;
74
- }, {
75
- readonly address: "0x408e41876cCCDC0F92210600ef50372656052a38";
76
- readonly chain: "ETH";
77
- readonly identifier: "ETH.REN-0X408E41876CCCDC0F92210600EF50372656052A38";
78
- readonly decimals: 18;
79
- }, {
80
- readonly address: "0x40FD72257597aA14C7231A7B1aaa29Fce868F677";
81
- readonly chain: "ETH";
82
- readonly identifier: "ETH.XOR-0X40FD72257597AA14C7231A7B1AAA29FCE868F677";
83
- readonly decimals: 18;
84
- }, {
85
- readonly address: "0x514910771AF9Ca656af840dff83E8264EcF986CA";
86
- readonly chain: "ETH";
87
- readonly identifier: "ETH.LINK-0X514910771AF9CA656AF840DFF83E8264ECF986CA";
88
- readonly decimals: 18;
89
- }, {
90
- readonly address: "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51";
91
- readonly chain: "ETH";
92
- readonly identifier: "ETH.sUSD-0X57AB1EC28D129707052DF4DF418D58A2D46D5F51";
93
- readonly decimals: 18;
94
- }, {
95
- readonly address: "0x584bC13c7D411c00c01A62e8019472dE68768430";
96
- readonly chain: "ETH";
97
- readonly identifier: "ETH.HEGIC-0X584BC13C7D411C00C01A62E8019472DE68768430";
98
- readonly decimals: 18;
99
- }, {
100
- readonly address: "0x607F4C5BB672230e8672085532f7e901544a7375";
101
- readonly chain: "ETH";
102
- readonly identifier: "ETH.RLC-0X607F4C5BB672230E8672085532F7E901544A7375";
103
- readonly decimals: 9;
104
- }, {
105
- readonly address: "0x6B175474E89094C44Da98b954EedeAC495271d0F";
106
- readonly chain: "ETH";
107
- readonly identifier: "ETH.DAI-0X6B175474E89094C44DA98B954EEDEAC495271D0F";
108
- readonly decimals: 18;
109
- }, {
110
- readonly address: "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2";
111
- readonly chain: "ETH";
112
- readonly identifier: "ETH.SUSHI-0X6B3595068778DD592E39A122F4F5A5CF09C90FE2";
113
- readonly decimals: 18;
114
- }, {
115
- readonly address: "0x6BFf2fE249601ed0Db3a87424a2E923118BB0312";
116
- readonly chain: "ETH";
117
- readonly identifier: "ETH.FYZ-0X6BFF2FE249601ED0DB3A87424A2E923118BB0312";
118
- readonly decimals: 18;
119
- }, {
120
- readonly address: "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9";
121
- readonly chain: "ETH";
122
- readonly identifier: "ETH.AAVE-0X7FC66500C84A76AD7E9C93437BFC5AC33E2DDAE9";
123
- readonly decimals: 18;
124
- }, {
125
- readonly address: "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e";
126
- readonly chain: "ETH";
127
- readonly identifier: "ETH.UBT-0X8400D94A5CB0FA0D041A3788E395285D61C9EE5E";
128
- readonly decimals: 8;
129
- }, {
130
- readonly address: "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419";
131
- readonly chain: "ETH";
132
- readonly identifier: "ETH.DIA-0X84CA8BC7997272C7CFB4D0CD3D55CD942B3C9419";
133
- readonly decimals: 18;
134
- }, {
135
- readonly address: "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9";
136
- readonly chain: "ETH";
137
- readonly identifier: "ETH.SXP-0X8CE9137D39326AD0CD6491FB5CC0CBA0E089B6A9";
138
- readonly decimals: 18;
139
- }, {
140
- readonly address: "0x967da4048cD07aB37855c090aAF366e4ce1b9F48";
141
- readonly chain: "ETH";
142
- readonly identifier: "ETH.OCEAN-0X967DA4048CD07AB37855C090AAF366E4CE1B9F48";
143
- readonly decimals: 18;
144
- }, {
145
- readonly address: "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2";
146
- readonly chain: "ETH";
147
- readonly identifier: "ETH.MKR-0X9F8F72AA9304C8B593D555F12EF6589CC3A579A2";
148
- readonly decimals: 18;
149
- }, {
150
- readonly address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48";
151
- readonly chain: "ETH";
152
- readonly identifier: "ETH.USDC-0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48";
153
- readonly decimals: 6;
154
- }, {
155
- readonly address: "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d";
156
- readonly chain: "ETH";
157
- readonly identifier: "ETH.CEL-0XAAAEBE6FE48E54F431B0C390CFAF0B017D09D42D";
158
- readonly decimals: 4;
159
- }, {
160
- readonly address: "0xba100000625a3754423978a60c9317c58a424e3D";
161
- readonly chain: "ETH";
162
- readonly identifier: "ETH.BAL-0XBA100000625A3754423978A60C9317C58A424E3D";
163
- readonly decimals: 18;
164
- }, {
165
- readonly address: "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55";
166
- readonly chain: "ETH";
167
- readonly identifier: "ETH.BAND-0XBA11D00C5F74255F56A5E366F4F77F5A186D7F55";
168
- readonly decimals: 18;
169
- }, {
170
- readonly address: "0xc00e94Cb662C3520282E6f5717214004A7f26888";
171
- readonly chain: "ETH";
172
- readonly identifier: "ETH.COMP-0XC00E94CB662C3520282E6F5717214004A7F26888";
173
- readonly decimals: 18;
174
- }, {
175
- readonly address: "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F";
176
- readonly chain: "ETH";
177
- readonly identifier: "ETH.SNX-0XC011A73EE8576FB46F5E1C5751CA3B9FE0AF2A6F";
178
- readonly decimals: 18;
179
- }, {
180
- readonly address: "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07";
181
- readonly chain: "ETH";
182
- readonly identifier: "ETH.OMG-0XD26114CD6EE289ACCF82350C8D8487FEDB8A0C07";
183
- readonly decimals: 18;
184
- }, {
185
- readonly address: "0xD46bA6D942050d489DBd938a2C909A5d5039A161";
186
- readonly chain: "ETH";
187
- readonly identifier: "ETH.AMPL-0XD46BA6D942050D489DBD938A2C909A5D5039A161";
188
- readonly decimals: 9;
189
- }, {
190
- readonly address: "0xdAC17F958D2ee523a2206206994597C13D831ec7";
191
- readonly chain: "ETH";
192
- readonly identifier: "ETH.USDT-0XDAC17F958D2EE523A2206206994597C13D831EC7";
193
- readonly decimals: 6;
194
- }, {
195
- readonly address: "0xE41d2489571d322189246DaFA5ebDe1F4699F498";
196
- readonly chain: "ETH";
197
- readonly identifier: "ETH.ZRX-0XE41D2489571D322189246DAFA5EBDE1F4699F498";
198
- readonly decimals: 18;
199
- }, {
200
- readonly address: "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c";
201
- readonly chain: "ETH";
202
- readonly identifier: "ETH.ENJ-0XF629CBD94D3791C9250152BD8DFBDF380E2A3B9C";
203
- readonly decimals: 18;
204
- }];
205
- readonly count: 39;
206
- readonly logo: "https://static.thorswap.net/token-list/images/eth.1inch-0x111111111117dc0aa78b770fa6a738034120c302.png";
207
- };
@@ -1,246 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.list = void 0;
4
- exports.list = {
5
- name: 'Trust Wallet: Ethereum',
6
- timestamp: '2021-11-09T22:30:24.689Z',
7
- version: { major: 14, minor: 0, patch: 0 },
8
- tokens: [
9
- {
10
- address: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
11
- chain: 'ETH',
12
- identifier: 'ETH.WETH-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2',
13
- decimals: 18,
14
- },
15
- {
16
- address: '0x0000000000085d4780B73119b644AE5ecd22b376',
17
- chain: 'ETH',
18
- identifier: 'ETH.TUSD-0X0000000000085D4780B73119B644AE5ECD22B376',
19
- decimals: 18,
20
- },
21
- {
22
- address: '0x0Ae055097C6d159879521C384F1D2123D1f195e6',
23
- chain: 'ETH',
24
- identifier: 'ETH.STAKE-0X0AE055097C6D159879521C384F1D2123D1F195E6',
25
- decimals: 18,
26
- },
27
- {
28
- address: '0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e',
29
- chain: 'ETH',
30
- identifier: 'ETH.YFI-0X0BC529C00C6401AEF6D220BE8C6EA1667F6AD93E',
31
- decimals: 18,
32
- },
33
- {
34
- address: '0x0D8775F648430679A709E98d2b0Cb6250d2887EF',
35
- chain: 'ETH',
36
- identifier: 'ETH.BAT-0X0D8775F648430679A709E98D2B0CB6250D2887EF',
37
- decimals: 18,
38
- },
39
- {
40
- address: '0x0F5D2fB29fb7d3CFeE444a200298f468908cC942',
41
- chain: 'ETH',
42
- identifier: 'ETH.MANA-0X0F5D2FB29FB7D3CFEE444A200298F468908CC942',
43
- decimals: 18,
44
- },
45
- {
46
- address: '0x111111111117dC0aa78b770fA6A738034120C302',
47
- chain: 'ETH',
48
- identifier: 'ETH.1INCH-0X111111111117DC0AA78B770FA6A738034120C302',
49
- decimals: 18,
50
- },
51
- {
52
- address: '0x1985365e9f78359a9B6AD760e32412f4a445E862',
53
- chain: 'ETH',
54
- identifier: 'ETH.REP-0X1985365E9F78359A9B6AD760E32412F4A445E862',
55
- decimals: 18,
56
- },
57
- {
58
- address: '0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44',
59
- chain: 'ETH',
60
- identifier: 'ETH.KP3R-0X1CEB5CB57C4D4E2B2433641B95DD330A33185A44',
61
- decimals: 18,
62
- },
63
- {
64
- address: '0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984',
65
- chain: 'ETH',
66
- identifier: 'ETH.UNI-0X1F9840A85D5AF5BF1D1762F925BDADDC4201F984',
67
- decimals: 18,
68
- },
69
- {
70
- address: '0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599',
71
- chain: 'ETH',
72
- identifier: 'ETH.WBTC-0X2260FAC5E5542A773AA44FBCFEDF7C193BC2C599',
73
- decimals: 8,
74
- },
75
- {
76
- address: '0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39',
77
- chain: 'ETH',
78
- identifier: 'ETH.HEX-0X2B591E99AFE9F32EAA6214F7B7629768C40EEB39',
79
- decimals: 8,
80
- },
81
- {
82
- address: '0x2ba592F78dB6436527729929AAf6c908497cB200',
83
- chain: 'ETH',
84
- identifier: 'ETH.CREAM-0X2BA592F78DB6436527729929AAF6C908497CB200',
85
- decimals: 18,
86
- },
87
- {
88
- address: '0x408e41876cCCDC0F92210600ef50372656052a38',
89
- chain: 'ETH',
90
- identifier: 'ETH.REN-0X408E41876CCCDC0F92210600EF50372656052A38',
91
- decimals: 18,
92
- },
93
- {
94
- address: '0x40FD72257597aA14C7231A7B1aaa29Fce868F677',
95
- chain: 'ETH',
96
- identifier: 'ETH.XOR-0X40FD72257597AA14C7231A7B1AAA29FCE868F677',
97
- decimals: 18,
98
- },
99
- {
100
- address: '0x514910771AF9Ca656af840dff83E8264EcF986CA',
101
- chain: 'ETH',
102
- identifier: 'ETH.LINK-0X514910771AF9CA656AF840DFF83E8264ECF986CA',
103
- decimals: 18,
104
- },
105
- {
106
- address: '0x57Ab1ec28D129707052df4dF418D58a2D46d5f51',
107
- chain: 'ETH',
108
- identifier: 'ETH.sUSD-0X57AB1EC28D129707052DF4DF418D58A2D46D5F51',
109
- decimals: 18,
110
- },
111
- {
112
- address: '0x584bC13c7D411c00c01A62e8019472dE68768430',
113
- chain: 'ETH',
114
- identifier: 'ETH.HEGIC-0X584BC13C7D411C00C01A62E8019472DE68768430',
115
- decimals: 18,
116
- },
117
- {
118
- address: '0x607F4C5BB672230e8672085532f7e901544a7375',
119
- chain: 'ETH',
120
- identifier: 'ETH.RLC-0X607F4C5BB672230E8672085532F7E901544A7375',
121
- decimals: 9,
122
- },
123
- {
124
- address: '0x6B175474E89094C44Da98b954EedeAC495271d0F',
125
- chain: 'ETH',
126
- identifier: 'ETH.DAI-0X6B175474E89094C44DA98B954EEDEAC495271D0F',
127
- decimals: 18,
128
- },
129
- {
130
- address: '0x6B3595068778DD592e39A122f4f5a5cF09C90fE2',
131
- chain: 'ETH',
132
- identifier: 'ETH.SUSHI-0X6B3595068778DD592E39A122F4F5A5CF09C90FE2',
133
- decimals: 18,
134
- },
135
- {
136
- address: '0x6BFf2fE249601ed0Db3a87424a2E923118BB0312',
137
- chain: 'ETH',
138
- identifier: 'ETH.FYZ-0X6BFF2FE249601ED0DB3A87424A2E923118BB0312',
139
- decimals: 18,
140
- },
141
- {
142
- address: '0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9',
143
- chain: 'ETH',
144
- identifier: 'ETH.AAVE-0X7FC66500C84A76AD7E9C93437BFC5AC33E2DDAE9',
145
- decimals: 18,
146
- },
147
- {
148
- address: '0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e',
149
- chain: 'ETH',
150
- identifier: 'ETH.UBT-0X8400D94A5CB0FA0D041A3788E395285D61C9EE5E',
151
- decimals: 8,
152
- },
153
- {
154
- address: '0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419',
155
- chain: 'ETH',
156
- identifier: 'ETH.DIA-0X84CA8BC7997272C7CFB4D0CD3D55CD942B3C9419',
157
- decimals: 18,
158
- },
159
- {
160
- address: '0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9',
161
- chain: 'ETH',
162
- identifier: 'ETH.SXP-0X8CE9137D39326AD0CD6491FB5CC0CBA0E089B6A9',
163
- decimals: 18,
164
- },
165
- {
166
- address: '0x967da4048cD07aB37855c090aAF366e4ce1b9F48',
167
- chain: 'ETH',
168
- identifier: 'ETH.OCEAN-0X967DA4048CD07AB37855C090AAF366E4CE1B9F48',
169
- decimals: 18,
170
- },
171
- {
172
- address: '0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2',
173
- chain: 'ETH',
174
- identifier: 'ETH.MKR-0X9F8F72AA9304C8B593D555F12EF6589CC3A579A2',
175
- decimals: 18,
176
- },
177
- {
178
- address: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
179
- chain: 'ETH',
180
- identifier: 'ETH.USDC-0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48',
181
- decimals: 6,
182
- },
183
- {
184
- address: '0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d',
185
- chain: 'ETH',
186
- identifier: 'ETH.CEL-0XAAAEBE6FE48E54F431B0C390CFAF0B017D09D42D',
187
- decimals: 4,
188
- },
189
- {
190
- address: '0xba100000625a3754423978a60c9317c58a424e3D',
191
- chain: 'ETH',
192
- identifier: 'ETH.BAL-0XBA100000625A3754423978A60C9317C58A424E3D',
193
- decimals: 18,
194
- },
195
- {
196
- address: '0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55',
197
- chain: 'ETH',
198
- identifier: 'ETH.BAND-0XBA11D00C5F74255F56A5E366F4F77F5A186D7F55',
199
- decimals: 18,
200
- },
201
- {
202
- address: '0xc00e94Cb662C3520282E6f5717214004A7f26888',
203
- chain: 'ETH',
204
- identifier: 'ETH.COMP-0XC00E94CB662C3520282E6F5717214004A7F26888',
205
- decimals: 18,
206
- },
207
- {
208
- address: '0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F',
209
- chain: 'ETH',
210
- identifier: 'ETH.SNX-0XC011A73EE8576FB46F5E1C5751CA3B9FE0AF2A6F',
211
- decimals: 18,
212
- },
213
- {
214
- address: '0xd26114cd6EE289AccF82350c8d8487fedB8A0C07',
215
- chain: 'ETH',
216
- identifier: 'ETH.OMG-0XD26114CD6EE289ACCF82350C8D8487FEDB8A0C07',
217
- decimals: 18,
218
- },
219
- {
220
- address: '0xD46bA6D942050d489DBd938a2C909A5d5039A161',
221
- chain: 'ETH',
222
- identifier: 'ETH.AMPL-0XD46BA6D942050D489DBD938A2C909A5D5039A161',
223
- decimals: 9,
224
- },
225
- {
226
- address: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
227
- chain: 'ETH',
228
- identifier: 'ETH.USDT-0XDAC17F958D2EE523A2206206994597C13D831EC7',
229
- decimals: 6,
230
- },
231
- {
232
- address: '0xE41d2489571d322189246DaFA5ebDe1F4699F498',
233
- chain: 'ETH',
234
- identifier: 'ETH.ZRX-0XE41D2489571D322189246DAFA5EBDE1F4699F498',
235
- decimals: 18,
236
- },
237
- {
238
- address: '0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c',
239
- chain: 'ETH',
240
- identifier: 'ETH.ENJ-0XF629CBD94D3791C9250152BD8DFBDF380E2A3B9C',
241
- decimals: 18,
242
- },
243
- ],
244
- count: 39,
245
- logo: 'https://static.thorswap.net/token-list/images/eth.1inch-0x111111111117dc0aa78b770fa6a738034120c302.png',
246
- };