@swapkit/helpers 2.4.3 → 3.0.0-beta.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.
Files changed (106) hide show
  1. package/dist/api/index.cjs +3 -0
  2. package/dist/api/index.cjs.map +16 -0
  3. package/dist/api/index.js +3 -0
  4. package/dist/api/index.js.map +16 -0
  5. package/dist/chunk-fazw0jvt.js +3 -0
  6. package/dist/chunk-fazw0jvt.js.map +9 -0
  7. package/dist/chunk-nm00d52v.js +4 -0
  8. package/dist/chunk-nm00d52v.js.map +9 -0
  9. package/dist/contracts/index.cjs +3 -0
  10. package/dist/contracts/index.cjs.map +38 -0
  11. package/dist/contracts/index.js +3 -0
  12. package/dist/contracts/index.js.map +38 -0
  13. package/dist/index.cjs +6 -0
  14. package/dist/index.cjs.map +29 -0
  15. package/dist/index.js +3 -3
  16. package/dist/index.js.map +19 -20
  17. package/dist/tokens/index.cjs +3 -0
  18. package/dist/tokens/index.cjs.map +23 -0
  19. package/dist/tokens/index.js +3 -0
  20. package/dist/tokens/index.js.map +23 -0
  21. package/package.json +31 -15
  22. package/src/api/index.ts +19 -0
  23. package/src/api/microgard/endpoints.ts +83 -0
  24. package/src/api/microgard/types.ts +60 -0
  25. package/src/api/midgard/endpoints.ts +166 -0
  26. package/src/api/midgard/types.ts +155 -0
  27. package/src/api/swapkitApi/endpoints.ts +266 -0
  28. package/src/api/swapkitApi/types.ts +772 -0
  29. package/src/api/thornode/endpoints.ts +78 -0
  30. package/src/api/thornode/types.ts +241 -0
  31. package/src/api/thorswapStatic/endpoints.ts +30 -0
  32. package/src/api/thorswapStatic/types.ts +18 -0
  33. package/src/contracts/abis/avaxGeneric.ts +92 -0
  34. package/src/contracts/abis/avaxWoofi.ts +145 -0
  35. package/src/contracts/abis/bscGeneric.ts +106 -0
  36. package/src/contracts/abis/chainflipGateway.ts +330 -0
  37. package/src/contracts/abis/erc20.ts +99 -0
  38. package/src/contracts/abis/ethGeneric.ts +92 -0
  39. package/src/contracts/abis/mayaEvmVaults.ts +331 -0
  40. package/src/contracts/abis/pancakeV2.ts +145 -0
  41. package/src/contracts/abis/pangolin.ts +120 -0
  42. package/src/contracts/abis/sushiswap.ts +120 -0
  43. package/src/contracts/abis/tcEthVault.ts +650 -0
  44. package/src/contracts/abis/traderJoe.ts +120 -0
  45. package/src/contracts/abis/uniswapV2.ts +120 -0
  46. package/src/contracts/abis/uniswapV2Leg.ts +128 -0
  47. package/src/contracts/abis/uniswapV3_100.ts +128 -0
  48. package/src/contracts/abis/uniswapV3_10000.ts +128 -0
  49. package/src/contracts/abis/uniswapV3_3000.ts +128 -0
  50. package/src/contracts/abis/uniswapV3_500.ts +128 -0
  51. package/src/contracts/index.ts +95 -0
  52. package/src/contracts/routers/index.ts +58 -0
  53. package/src/contracts/routers/kyber.ts +402 -0
  54. package/src/contracts/routers/oneinch.ts +2188 -0
  55. package/src/contracts/routers/pancakeswap.ts +340 -0
  56. package/src/contracts/routers/pangolin.ts +340 -0
  57. package/src/contracts/routers/sushiswap.ts +340 -0
  58. package/src/contracts/routers/traderJoe.ts +340 -0
  59. package/src/contracts/routers/uniswapv2.ts +340 -0
  60. package/src/contracts/routers/uniswapv3.ts +254 -0
  61. package/src/contracts/routers/woofi.ts +171 -0
  62. package/src/index.ts +11 -12
  63. package/src/modules/__tests__/assetValue.test.ts +0 -2
  64. package/src/modules/__tests__/swapKitConfig.test.ts +37 -0
  65. package/src/modules/assetValue.ts +26 -92
  66. package/src/modules/bigIntArithmetics.ts +6 -2
  67. package/src/modules/requestClient.ts +26 -35
  68. package/src/modules/swapKitConfig.ts +131 -0
  69. package/src/modules/swapKitError.ts +6 -6
  70. package/src/tokens/index.ts +15 -0
  71. package/src/tokens/lists/camelot_v3.ts +15920 -0
  72. package/src/tokens/lists/caviar_v1.ts +1694 -0
  73. package/src/tokens/lists/chainflip.ts +104 -0
  74. package/src/tokens/lists/index.ts +13 -0
  75. package/src/tokens/lists/jupiter.ts +29606 -0
  76. package/src/tokens/lists/mayachain.ts +513 -0
  77. package/src/tokens/lists/oneinch.ts +14238 -0
  78. package/src/tokens/lists/openocean_v2.ts +11514 -0
  79. package/src/tokens/lists/pancakeswap.ts +4296 -0
  80. package/src/tokens/lists/pangolin_v1.ts +175 -0
  81. package/src/tokens/lists/sushiswap_v2.ts +965 -0
  82. package/src/tokens/lists/thorchain.ts +669 -0
  83. package/src/tokens/lists/traderjoe_v2.ts +1384 -0
  84. package/src/tokens/lists/uniswap_v2.ts +5596 -0
  85. package/src/tokens/lists/uniswap_v3.ts +5946 -0
  86. package/src/types/chains.ts +26 -46
  87. package/src/types/commonTypes.ts +3 -90
  88. package/src/types/index.ts +3 -4
  89. package/src/types/sdk.ts +0 -24
  90. package/src/types/tokens.ts +1 -1
  91. package/src/types/wallet.ts +37 -21
  92. package/src/{helpers → utils}/asset.ts +49 -19
  93. package/src/{helpers → utils}/derivationPath.ts +7 -2
  94. package/src/{helpers → utils}/memo.ts +0 -65
  95. package/src/{helpers → utils}/others.ts +12 -5
  96. package/src/utils/plugin.ts +13 -0
  97. package/src/{helpers/web3wallets.ts → utils/wallets.ts} +175 -148
  98. package/src/modules/walletUtils.ts +0 -30
  99. package/src/types/network.ts +0 -49
  100. /package/src/{helpers → utils}/__tests__/asset.test.ts +0 -0
  101. /package/src/{helpers/__tests__/derivationPath.ts → utils/__tests__/derivationPath.test.ts} +0 -0
  102. /package/src/{helpers → utils}/__tests__/memo.test.ts +0 -0
  103. /package/src/{helpers → utils}/__tests__/others.test.ts +0 -0
  104. /package/src/{helpers → utils}/__tests__/validators.test.ts +0 -0
  105. /package/src/{helpers → utils}/liquidity.ts +0 -0
  106. /package/src/{helpers → utils}/validators.ts +0 -0
@@ -0,0 +1,669 @@
1
+ export const list = {
2
+ provider: "THORCHAIN",
3
+ chainId: "thorchain-1",
4
+ name: "THORCHAIN",
5
+ timestamp: "2025-01-22T13:31:17.516Z",
6
+ version: {
7
+ major: 1,
8
+ minor: 0,
9
+ patch: 0,
10
+ },
11
+ keywords: [],
12
+ count: 68,
13
+ tokens: [
14
+ {
15
+ chain: "AVAX",
16
+ chainId: "43114",
17
+ decimals: 18,
18
+ identifier: "AVAX.AVAX",
19
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/avax.avax.png",
20
+ shortCode: "a",
21
+ ticker: "AVAX",
22
+ },
23
+ {
24
+ address: "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f",
25
+ chain: "AVAX",
26
+ chainId: "43114",
27
+ decimals: 9,
28
+ identifier: "AVAX.SOL-0xfe6b19286885a4f7f55adad09c3cd1f906d2478f",
29
+ logoURI:
30
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.sol-0xfe6b19286885a4f7f55adad09c3cd1f906d2478f.png",
31
+ ticker: "SOL",
32
+ },
33
+ {
34
+ address: "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e",
35
+ chain: "AVAX",
36
+ chainId: "43114",
37
+ decimals: 6,
38
+ identifier: "AVAX.USDC-0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e",
39
+ logoURI:
40
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.usdc-0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png",
41
+ ticker: "USDC",
42
+ },
43
+ {
44
+ address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
45
+ chain: "AVAX",
46
+ chainId: "43114",
47
+ decimals: 6,
48
+ identifier: "AVAX.USDT-0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
49
+ logoURI:
50
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.usdt-0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png",
51
+ ticker: "USDT",
52
+ },
53
+ {
54
+ address: "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
55
+ chain: "BASE",
56
+ chainId: "8453",
57
+ decimals: 8,
58
+ identifier: "BASE.CBBTC-0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
59
+ logoURI:
60
+ "https://storage.googleapis.com/token-list-swapkit/images/base.cbbtc-0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf.png",
61
+ ticker: "CBBTC",
62
+ },
63
+ {
64
+ chain: "BASE",
65
+ chainId: "8453",
66
+ decimals: 18,
67
+ identifier: "BASE.ETH",
68
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/base.eth.png",
69
+ shortCode: "f",
70
+ ticker: "ETH",
71
+ },
72
+ {
73
+ address: "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
74
+ chain: "BASE",
75
+ chainId: "8453",
76
+ decimals: 6,
77
+ identifier: "BASE.USDC-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
78
+ logoURI:
79
+ "https://storage.googleapis.com/token-list-swapkit/images/base.usdc-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png",
80
+ ticker: "USDC",
81
+ },
82
+ {
83
+ chain: "BCH",
84
+ chainId: "bitcoincash",
85
+ decimals: 8,
86
+ identifier: "BCH.BCH",
87
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/bch.bch.png",
88
+ shortCode: "c",
89
+ ticker: "BCH",
90
+ },
91
+ {
92
+ chain: "BSC",
93
+ chainId: "56",
94
+ decimals: 18,
95
+ identifier: "BSC.BNB",
96
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/bsc.bnb.png",
97
+ shortCode: "s",
98
+ ticker: "BNB",
99
+ },
100
+ {
101
+ address: "0x4b0f1812e5df2a09796481ff14017e6005508003",
102
+ chain: "BSC",
103
+ chainId: "56",
104
+ decimals: 18,
105
+ identifier: "BSC.TWT-0x4b0f1812e5df2a09796481ff14017e6005508003",
106
+ logoURI:
107
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.twt-0x4b0f1812e5df2a09796481ff14017e6005508003.png",
108
+ ticker: "TWT",
109
+ },
110
+ {
111
+ address: "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
112
+ chain: "BSC",
113
+ chainId: "56",
114
+ decimals: 18,
115
+ identifier: "BSC.USDC-0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
116
+ logoURI:
117
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.usdc-0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png",
118
+ ticker: "USDC",
119
+ },
120
+ {
121
+ address: "0x55d398326f99059ff775485246999027b3197955",
122
+ chain: "BSC",
123
+ chainId: "56",
124
+ decimals: 18,
125
+ identifier: "BSC.USDT-0x55d398326f99059ff775485246999027b3197955",
126
+ logoURI:
127
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.usdt-0x55d398326f99059ff775485246999027b3197955.png",
128
+ ticker: "USDT",
129
+ },
130
+ {
131
+ chain: "BTC",
132
+ chainId: "bitcoin",
133
+ decimals: 8,
134
+ identifier: "BTC.BTC",
135
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/btc.btc.png",
136
+ shortCode: "b",
137
+ ticker: "BTC",
138
+ },
139
+ {
140
+ chain: "DOGE",
141
+ chainId: "dogecoin",
142
+ decimals: 8,
143
+ identifier: "DOGE.DOGE",
144
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/doge.doge.png",
145
+ shortCode: "d",
146
+ ticker: "DOGE",
147
+ },
148
+ {
149
+ address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
150
+ chain: "ETH",
151
+ chainId: "1",
152
+ decimals: 18,
153
+ identifier: "ETH.AAVE-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
154
+ logoURI:
155
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.aave-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9.png",
156
+ ticker: "AAVE",
157
+ },
158
+ {
159
+ address: "0x6b175474e89094c44da98b954eedeac495271d0f",
160
+ chain: "ETH",
161
+ chainId: "1",
162
+ decimals: 18,
163
+ identifier: "ETH.DAI-0x6b175474e89094c44da98b954eedeac495271d0f",
164
+ logoURI:
165
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.dai-0x6b175474e89094c44da98b954eedeac495271d0f.png",
166
+ ticker: "DAI",
167
+ },
168
+ {
169
+ address: "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
170
+ chain: "ETH",
171
+ chainId: "1",
172
+ decimals: 18,
173
+ identifier: "ETH.DPI-0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
174
+ logoURI:
175
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.dpi-0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b.png",
176
+ ticker: "DPI",
177
+ },
178
+ {
179
+ chain: "ETH",
180
+ chainId: "1",
181
+ decimals: 18,
182
+ identifier: "ETH.ETH",
183
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/eth.eth.png",
184
+ shortCode: "e",
185
+ ticker: "ETH",
186
+ },
187
+ {
188
+ address: "0xc770eefad204b5180df6a14ee197d99d808ee52d",
189
+ chain: "ETH",
190
+ chainId: "1",
191
+ decimals: 18,
192
+ identifier: "ETH.FOX-0xc770eefad204b5180df6a14ee197d99d808ee52d",
193
+ logoURI:
194
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.fox-0xc770eefad204b5180df6a14ee197d99d808ee52d.png",
195
+ ticker: "FOX",
196
+ },
197
+ {
198
+ address: "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
199
+ chain: "ETH",
200
+ chainId: "1",
201
+ decimals: 2,
202
+ identifier: "ETH.GUSD-0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
203
+ logoURI:
204
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.gusd-0x056fd409e1d7a124bd7017459dfea2f387b6d5cd.png",
205
+ ticker: "GUSD",
206
+ },
207
+ {
208
+ address: "0x514910771af9ca656af840dff83e8264ecf986ca",
209
+ chain: "ETH",
210
+ chainId: "1",
211
+ decimals: 18,
212
+ identifier: "ETH.LINK-0x514910771af9ca656af840dff83e8264ecf986ca",
213
+ logoURI:
214
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.link-0x514910771af9ca656af840dff83e8264ecf986ca.png",
215
+ ticker: "LINK",
216
+ },
217
+ {
218
+ address: "0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
219
+ chain: "ETH",
220
+ chainId: "1",
221
+ decimals: 18,
222
+ identifier: "ETH.LUSD-0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
223
+ logoURI:
224
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.lusd-0x5f98805a4e8be255a32880fdec7f6728c6568ba0.png",
225
+ ticker: "LUSD",
226
+ },
227
+ {
228
+ address: "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
229
+ chain: "ETH",
230
+ chainId: "1",
231
+ decimals: 18,
232
+ identifier: "ETH.SNX-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
233
+ logoURI:
234
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.snx-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png",
235
+ ticker: "SNX",
236
+ },
237
+ {
238
+ address: "0x108a850856db3f85d0269a2693d896b394c80325",
239
+ chain: "ETH",
240
+ chainId: "1",
241
+ decimals: 18,
242
+ identifier: "ETH.TGT-0x108a850856db3f85d0269a2693d896b394c80325",
243
+ logoURI:
244
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.tgt-0x108a850856db3f85d0269a2693d896b394c80325.png",
245
+ ticker: "TGT",
246
+ },
247
+ {
248
+ address: "0xa5f2211b9b8170f694421f2046281775e8468044",
249
+ chain: "ETH",
250
+ chainId: "1",
251
+ decimals: 18,
252
+ identifier: "ETH.THOR-0xa5f2211b9b8170f694421f2046281775e8468044",
253
+ logoURI:
254
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.thor-0xa5f2211b9b8170f694421f2046281775e8468044.png",
255
+ ticker: "THOR",
256
+ },
257
+ {
258
+ address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
259
+ chain: "ETH",
260
+ chainId: "1",
261
+ decimals: 6,
262
+ identifier: "ETH.USDC-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
263
+ logoURI:
264
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdc-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png",
265
+ ticker: "USDC",
266
+ },
267
+ {
268
+ address: "0x8e870d67f660d95d5be530380d0ec0bd388289e1",
269
+ chain: "ETH",
270
+ chainId: "1",
271
+ decimals: 18,
272
+ identifier: "ETH.USDP-0x8e870d67f660d95d5be530380d0ec0bd388289e1",
273
+ logoURI:
274
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdp-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png",
275
+ ticker: "USDP",
276
+ },
277
+ {
278
+ address: "0xdac17f958d2ee523a2206206994597c13d831ec7",
279
+ chain: "ETH",
280
+ chainId: "1",
281
+ decimals: 6,
282
+ identifier: "ETH.USDT-0xdac17f958d2ee523a2206206994597c13d831ec7",
283
+ logoURI:
284
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdt-0xdac17f958d2ee523a2206206994597c13d831ec7.png",
285
+ ticker: "USDT",
286
+ },
287
+ {
288
+ address: "0x815c23eca83261b6ec689b60cc4a58b54bc24d8d",
289
+ chain: "ETH",
290
+ chainId: "1",
291
+ decimals: 18,
292
+ identifier: "ETH.VTHOR-0x815c23eca83261b6ec689b60cc4a58b54bc24d8d",
293
+ logoURI:
294
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.vthor-0x815c23eca83261b6ec689b60cc4a58b54bc24d8d.png",
295
+ ticker: "VTHOR",
296
+ },
297
+ {
298
+ address: "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
299
+ chain: "ETH",
300
+ chainId: "1",
301
+ decimals: 8,
302
+ identifier: "ETH.WBTC-0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
303
+ logoURI:
304
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.wbtc-0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png",
305
+ ticker: "WBTC",
306
+ },
307
+ {
308
+ address: "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c",
309
+ chain: "ETH",
310
+ chainId: "1",
311
+ decimals: 18,
312
+ identifier: "ETH.XRUNE-0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c",
313
+ logoURI:
314
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.xrune-0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c.png",
315
+ ticker: "XRUNE",
316
+ },
317
+ {
318
+ chain: "GAIA",
319
+ chainId: "cosmoshub-4",
320
+ decimals: 6,
321
+ identifier: "GAIA.ATOM",
322
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/gaia.atom.png",
323
+ shortCode: "g",
324
+ ticker: "ATOM",
325
+ },
326
+ {
327
+ chain: "LTC",
328
+ chainId: "litecoin",
329
+ decimals: 8,
330
+ identifier: "LTC.LTC",
331
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/ltc.ltc.png",
332
+ shortCode: "l",
333
+ ticker: "LTC",
334
+ },
335
+ {
336
+ chain: "THOR",
337
+ chainId: "thorchain-1",
338
+ decimals: 8,
339
+ identifier: "THOR.AVAX/AVAX",
340
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/avax.avax.png",
341
+ ticker: "AVAX",
342
+ },
343
+ {
344
+ address: "0xfe6b19286885a4f7f55adad09c3cd1f906d2478f",
345
+ chain: "THOR",
346
+ chainId: "thorchain-1",
347
+ decimals: 8,
348
+ identifier: "THOR.AVAX/SOL-0xfe6b19286885a4f7f55adad09c3cd1f906d2478f",
349
+ logoURI:
350
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.sol-0xfe6b19286885a4f7f55adad09c3cd1f906d2478f.png",
351
+ ticker: "SOL",
352
+ },
353
+ {
354
+ address: "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e",
355
+ chain: "THOR",
356
+ chainId: "thorchain-1",
357
+ decimals: 8,
358
+ identifier: "THOR.AVAX/USDC-0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e",
359
+ logoURI:
360
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.usdc-0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png",
361
+ ticker: "USDC",
362
+ },
363
+ {
364
+ address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
365
+ chain: "THOR",
366
+ chainId: "thorchain-1",
367
+ decimals: 8,
368
+ identifier: "THOR.AVAX/USDT-0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7",
369
+ logoURI:
370
+ "https://storage.googleapis.com/token-list-swapkit/images/avax.usdt-0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png",
371
+ ticker: "USDT",
372
+ },
373
+ {
374
+ chain: "THOR",
375
+ chainId: "thorchain-1",
376
+ decimals: 8,
377
+ identifier: "THOR.BCH/BCH",
378
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/bch.bch.png",
379
+ ticker: "BCH",
380
+ },
381
+ {
382
+ chain: "THOR",
383
+ chainId: "thorchain-1",
384
+ decimals: 8,
385
+ identifier: "THOR.BSC/BNB",
386
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/bsc.bnb.png",
387
+ ticker: "BNB",
388
+ },
389
+ {
390
+ address: "0x4b0f1812e5df2a09796481ff14017e6005508003",
391
+ chain: "THOR",
392
+ chainId: "thorchain-1",
393
+ decimals: 8,
394
+ identifier: "THOR.BSC/TWT-0x4b0f1812e5df2a09796481ff14017e6005508003",
395
+ logoURI:
396
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.twt-0x4b0f1812e5df2a09796481ff14017e6005508003.png",
397
+ ticker: "TWT",
398
+ },
399
+ {
400
+ address: "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
401
+ chain: "THOR",
402
+ chainId: "thorchain-1",
403
+ decimals: 8,
404
+ identifier: "THOR.BSC/USDC-0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
405
+ logoURI:
406
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.usdc-0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d.png",
407
+ ticker: "USDC",
408
+ },
409
+ {
410
+ address: "0x55d398326f99059ff775485246999027b3197955",
411
+ chain: "THOR",
412
+ chainId: "thorchain-1",
413
+ decimals: 8,
414
+ identifier: "THOR.BSC/USDT-0x55d398326f99059ff775485246999027b3197955",
415
+ logoURI:
416
+ "https://storage.googleapis.com/token-list-swapkit/images/bsc.usdt-0x55d398326f99059ff775485246999027b3197955.png",
417
+ ticker: "USDT",
418
+ },
419
+ {
420
+ chain: "THOR",
421
+ chainId: "thorchain-1",
422
+ decimals: 8,
423
+ identifier: "THOR.BTC/BTC",
424
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/btc.btc.png",
425
+ ticker: "BTC",
426
+ },
427
+ {
428
+ chain: "THOR",
429
+ chainId: "thorchain-1",
430
+ decimals: 8,
431
+ identifier: "THOR.DOGE/DOGE",
432
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/doge.doge.png",
433
+ ticker: "DOGE",
434
+ },
435
+ {
436
+ address: "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
437
+ chain: "THOR",
438
+ chainId: "thorchain-1",
439
+ decimals: 8,
440
+ identifier: "THOR.ETH/AAVE-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
441
+ logoURI:
442
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.aave-0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9.png",
443
+ ticker: "AAVE",
444
+ },
445
+ {
446
+ address: "0x6b175474e89094c44da98b954eedeac495271d0f",
447
+ chain: "THOR",
448
+ chainId: "thorchain-1",
449
+ decimals: 8,
450
+ identifier: "THOR.ETH/DAI-0x6b175474e89094c44da98b954eedeac495271d0f",
451
+ logoURI:
452
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.dai-0x6b175474e89094c44da98b954eedeac495271d0f.png",
453
+ ticker: "DAI",
454
+ },
455
+ {
456
+ address: "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
457
+ chain: "THOR",
458
+ chainId: "thorchain-1",
459
+ decimals: 8,
460
+ identifier: "THOR.ETH/DPI-0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b",
461
+ logoURI:
462
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.dpi-0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b.png",
463
+ ticker: "DPI",
464
+ },
465
+ {
466
+ chain: "THOR",
467
+ chainId: "thorchain-1",
468
+ decimals: 8,
469
+ identifier: "THOR.ETH/ETH",
470
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/eth.eth.png",
471
+ ticker: "ETH",
472
+ },
473
+ {
474
+ address: "0x826180541412d574cf1336d22c0c0a287822678a",
475
+ chain: "THOR",
476
+ chainId: "thorchain-1",
477
+ decimals: 8,
478
+ identifier: "THOR.ETH/FLIP-0x826180541412d574cf1336d22c0c0a287822678a",
479
+ logoURI:
480
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.flip-0x826180541412d574cf1336d22c0c0a287822678a.png",
481
+ ticker: "FLIP",
482
+ },
483
+ {
484
+ address: "0xc770eefad204b5180df6a14ee197d99d808ee52d",
485
+ chain: "THOR",
486
+ chainId: "thorchain-1",
487
+ decimals: 8,
488
+ identifier: "THOR.ETH/FOX-0xc770eefad204b5180df6a14ee197d99d808ee52d",
489
+ logoURI:
490
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.fox-0xc770eefad204b5180df6a14ee197d99d808ee52d.png",
491
+ ticker: "FOX",
492
+ },
493
+ {
494
+ address: "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
495
+ chain: "THOR",
496
+ chainId: "thorchain-1",
497
+ decimals: 8,
498
+ identifier: "THOR.ETH/GUSD-0x056fd409e1d7a124bd7017459dfea2f387b6d5cd",
499
+ logoURI:
500
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.gusd-0x056fd409e1d7a124bd7017459dfea2f387b6d5cd.png",
501
+ ticker: "GUSD",
502
+ },
503
+ {
504
+ address: "0x514910771af9ca656af840dff83e8264ecf986ca",
505
+ chain: "THOR",
506
+ chainId: "thorchain-1",
507
+ decimals: 8,
508
+ identifier: "THOR.ETH/LINK-0x514910771af9ca656af840dff83e8264ecf986ca",
509
+ logoURI:
510
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.link-0x514910771af9ca656af840dff83e8264ecf986ca.png",
511
+ ticker: "LINK",
512
+ },
513
+ {
514
+ address: "0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
515
+ chain: "THOR",
516
+ chainId: "thorchain-1",
517
+ decimals: 8,
518
+ identifier: "THOR.ETH/LUSD-0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
519
+ logoURI:
520
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.lusd-0x5f98805a4e8be255a32880fdec7f6728c6568ba0.png",
521
+ ticker: "LUSD",
522
+ },
523
+ {
524
+ address: "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac",
525
+ chain: "THOR",
526
+ chainId: "thorchain-1",
527
+ decimals: 8,
528
+ identifier: "THOR.ETH/RAZE-0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac",
529
+ logoURI:
530
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.raze-0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac.png",
531
+ ticker: "RAZE",
532
+ },
533
+ {
534
+ address: "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
535
+ chain: "THOR",
536
+ chainId: "thorchain-1",
537
+ decimals: 8,
538
+ identifier: "THOR.ETH/SNX-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f",
539
+ logoURI:
540
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.snx-0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f.png",
541
+ ticker: "SNX",
542
+ },
543
+ {
544
+ address: "0x108a850856db3f85d0269a2693d896b394c80325",
545
+ chain: "THOR",
546
+ chainId: "thorchain-1",
547
+ decimals: 8,
548
+ identifier: "THOR.ETH/TGT-0x108a850856db3f85d0269a2693d896b394c80325",
549
+ logoURI:
550
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.tgt-0x108a850856db3f85d0269a2693d896b394c80325.png",
551
+ ticker: "TGT",
552
+ },
553
+ {
554
+ address: "0xa5f2211b9b8170f694421f2046281775e8468044",
555
+ chain: "THOR",
556
+ chainId: "thorchain-1",
557
+ decimals: 8,
558
+ identifier: "THOR.ETH/THOR-0xa5f2211b9b8170f694421f2046281775e8468044",
559
+ logoURI:
560
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.thor-0xa5f2211b9b8170f694421f2046281775e8468044.png",
561
+ ticker: "THOR",
562
+ },
563
+ {
564
+ address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
565
+ chain: "THOR",
566
+ chainId: "thorchain-1",
567
+ decimals: 8,
568
+ identifier: "THOR.ETH/USDC-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
569
+ logoURI:
570
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdc-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png",
571
+ ticker: "USDC",
572
+ },
573
+ {
574
+ address: "0x8e870d67f660d95d5be530380d0ec0bd388289e1",
575
+ chain: "THOR",
576
+ chainId: "thorchain-1",
577
+ decimals: 8,
578
+ identifier: "THOR.ETH/USDP-0x8e870d67f660d95d5be530380d0ec0bd388289e1",
579
+ logoURI:
580
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdp-0x8e870d67f660d95d5be530380d0ec0bd388289e1.png",
581
+ ticker: "USDP",
582
+ },
583
+ {
584
+ address: "0xdac17f958d2ee523a2206206994597c13d831ec7",
585
+ chain: "THOR",
586
+ chainId: "thorchain-1",
587
+ decimals: 8,
588
+ identifier: "THOR.ETH/USDT-0xdac17f958d2ee523a2206206994597c13d831ec7",
589
+ logoURI:
590
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.usdt-0xdac17f958d2ee523a2206206994597c13d831ec7.png",
591
+ ticker: "USDT",
592
+ },
593
+ {
594
+ address: "0x815c23eca83261b6ec689b60cc4a58b54bc24d8d",
595
+ chain: "THOR",
596
+ chainId: "thorchain-1",
597
+ decimals: 8,
598
+ identifier: "THOR.ETH/VTHOR-0x815c23eca83261b6ec689b60cc4a58b54bc24d8d",
599
+ logoURI:
600
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.vthor-0x815c23eca83261b6ec689b60cc4a58b54bc24d8d.png",
601
+ ticker: "VTHOR",
602
+ },
603
+ {
604
+ address: "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
605
+ chain: "THOR",
606
+ chainId: "thorchain-1",
607
+ decimals: 8,
608
+ identifier: "THOR.ETH/WBTC-0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
609
+ logoURI:
610
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.wbtc-0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png",
611
+ ticker: "WBTC",
612
+ },
613
+ {
614
+ address: "0x72b886d09c117654ab7da13a14d603001de0b777",
615
+ chain: "THOR",
616
+ chainId: "thorchain-1",
617
+ decimals: 8,
618
+ identifier: "THOR.ETH/XDEFI-0x72b886d09c117654ab7da13a14d603001de0b777",
619
+ logoURI:
620
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.xdefi-0x72b886d09c117654ab7da13a14d603001de0b777.png",
621
+ ticker: "XDEFI",
622
+ },
623
+ {
624
+ address: "0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c",
625
+ chain: "THOR",
626
+ chainId: "thorchain-1",
627
+ decimals: 8,
628
+ identifier: "THOR.ETH/XRUNE-0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c",
629
+ logoURI:
630
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.xrune-0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c.png",
631
+ ticker: "XRUNE",
632
+ },
633
+ {
634
+ address: "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
635
+ chain: "THOR",
636
+ chainId: "thorchain-1",
637
+ decimals: 8,
638
+ identifier: "THOR.ETH/YFI-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e",
639
+ logoURI:
640
+ "https://storage.googleapis.com/token-list-swapkit/images/eth.yfi-0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png",
641
+ ticker: "YFI",
642
+ },
643
+ {
644
+ chain: "THOR",
645
+ chainId: "thorchain-1",
646
+ decimals: 8,
647
+ identifier: "THOR.GAIA/ATOM",
648
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/gaia.atom.png",
649
+ ticker: "ATOM",
650
+ },
651
+ {
652
+ chain: "THOR",
653
+ chainId: "thorchain-1",
654
+ decimals: 8,
655
+ identifier: "THOR.LTC/LTC",
656
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/ltc.ltc.png",
657
+ ticker: "LTC",
658
+ },
659
+ {
660
+ chain: "THOR",
661
+ chainId: "thorchain-1",
662
+ decimals: 8,
663
+ identifier: "THOR.RUNE",
664
+ logoURI: "https://storage.googleapis.com/token-list-swapkit/images/thor.rune.png",
665
+ shortCode: "r",
666
+ ticker: "RUNE",
667
+ },
668
+ ],
669
+ } as const;