uni-exec-engine 0.2.0__py3-none-any.whl

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 (80) hide show
  1. uni_exec_engine-0.2.0.dist-info/METADATA +576 -0
  2. uni_exec_engine-0.2.0.dist-info/RECORD +80 -0
  3. uni_exec_engine-0.2.0.dist-info/WHEEL +5 -0
  4. uni_exec_engine-0.2.0.dist-info/licenses/LICENSE +21 -0
  5. uni_exec_engine-0.2.0.dist-info/top_level.txt +1 -0
  6. uniswap_autopilot/__init__.py +3 -0
  7. uniswap_autopilot/analytics/__init__.py +0 -0
  8. uniswap_autopilot/analytics/il_calculator.py +525 -0
  9. uniswap_autopilot/analytics/portfolio.py +234 -0
  10. uniswap_autopilot/analytics/position.py +433 -0
  11. uniswap_autopilot/analytics/range_suggest.py +270 -0
  12. uniswap_autopilot/audit.py +194 -0
  13. uniswap_autopilot/common/__init__.py +0 -0
  14. uniswap_autopilot/common/approval_cleanup.py +255 -0
  15. uniswap_autopilot/common/check_balance.py +64 -0
  16. uniswap_autopilot/common/common.py +804 -0
  17. uniswap_autopilot/common/deep_link.py +132 -0
  18. uniswap_autopilot/common/gas.py +141 -0
  19. uniswap_autopilot/data/auto_trade_policy.example.json +29 -0
  20. uniswap_autopilot/data/chains.json +135 -0
  21. uniswap_autopilot/data/common-token-addresses.json +777 -0
  22. uniswap_autopilot/execute/__init__.py +0 -0
  23. uniswap_autopilot/execute/_internal/__init__.py +5 -0
  24. uniswap_autopilot/execute/_internal/constants.py +15 -0
  25. uniswap_autopilot/execute/_internal/preflight.py +150 -0
  26. uniswap_autopilot/execute/_internal/pure_signer.py +182 -0
  27. uniswap_autopilot/execute/_internal/rpc.py +462 -0
  28. uniswap_autopilot/execute/_internal/signer.py +298 -0
  29. uniswap_autopilot/execute/_internal/submit.py +73 -0
  30. uniswap_autopilot/execute/_internal/tx.py +370 -0
  31. uniswap_autopilot/execute/broadcast.py +380 -0
  32. uniswap_autopilot/execute/detect.py +52 -0
  33. uniswap_autopilot/execute/telegram_confirm.py +272 -0
  34. uniswap_autopilot/lp/compare_pools.py +338 -0
  35. uniswap_autopilot/lp/v2/__init__.py +0 -0
  36. uniswap_autopilot/lp/v2/approve.py +100 -0
  37. uniswap_autopilot/lp/v2/build_tx.py +226 -0
  38. uniswap_autopilot/lp/v2/flow.py +204 -0
  39. uniswap_autopilot/lp/v2/pair.py +135 -0
  40. uniswap_autopilot/lp/v2/positions.py +177 -0
  41. uniswap_autopilot/lp/v3/__init__.py +0 -0
  42. uniswap_autopilot/lp/v3/approve.py +109 -0
  43. uniswap_autopilot/lp/v3/auto_rebalance.py +282 -0
  44. uniswap_autopilot/lp/v3/build_tx.py +465 -0
  45. uniswap_autopilot/lp/v3/compound.py +258 -0
  46. uniswap_autopilot/lp/v3/flow.py +358 -0
  47. uniswap_autopilot/lp/v3/pool.py +175 -0
  48. uniswap_autopilot/lp/v3/position.py +112 -0
  49. uniswap_autopilot/lp/v3/tick.py +75 -0
  50. uniswap_autopilot/lp/v4/__init__.py +0 -0
  51. uniswap_autopilot/lp/v4/approve.py +105 -0
  52. uniswap_autopilot/lp/v4/build_tx.py +669 -0
  53. uniswap_autopilot/lp/v4/flow.py +368 -0
  54. uniswap_autopilot/lp/v4/pool.py +174 -0
  55. uniswap_autopilot/lp/v4/position.py +185 -0
  56. uniswap_autopilot/policy.py +371 -0
  57. uniswap_autopilot/price_feed.py +100 -0
  58. uniswap_autopilot/py.typed +0 -0
  59. uniswap_autopilot/search/__init__.py +0 -0
  60. uniswap_autopilot/search/risk.py +200 -0
  61. uniswap_autopilot/search/search.py +580 -0
  62. uniswap_autopilot/state_machine.py +315 -0
  63. uniswap_autopilot/swap/__init__.py +1 -0
  64. uniswap_autopilot/swap/deep_link.py +69 -0
  65. uniswap_autopilot/swap/extensions/__init__.py +2 -0
  66. uniswap_autopilot/swap/extensions/bridge.py +197 -0
  67. uniswap_autopilot/swap/extensions/limit_order.py +272 -0
  68. uniswap_autopilot/swap/extensions/slippage.py +123 -0
  69. uniswap_autopilot/swap/flow.py +693 -0
  70. uniswap_autopilot/swap/flow_core/__init__.py +2 -0
  71. uniswap_autopilot/swap/flow_core/artifacts.py +11 -0
  72. uniswap_autopilot/swap/flow_core/broadcast.py +50 -0
  73. uniswap_autopilot/swap/flow_core/diagnostics.py +216 -0
  74. uniswap_autopilot/swap/flow_core/paper.py +113 -0
  75. uniswap_autopilot/swap/flow_core/policy.py +142 -0
  76. uniswap_autopilot/swap/links/__init__.py +2 -0
  77. uniswap_autopilot/swap/links/deep_link.py +69 -0
  78. uniswap_autopilot/swap/trading_api/permit.py +41 -0
  79. uniswap_autopilot/swap/trading_api/quote.py +282 -0
  80. uniswap_autopilot/swap/trading_api/swap.py +248 -0
@@ -0,0 +1,777 @@
1
+ {
2
+ "ethereum": {
3
+ "USDC": {
4
+ "symbol": "USDC",
5
+ "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
6
+ "decimals": 6,
7
+ "category": "stablecoin",
8
+ "isStable": true,
9
+ "priceHint": "stable_usd"
10
+ },
11
+ "USDT": {
12
+ "symbol": "USDT",
13
+ "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
14
+ "decimals": 6,
15
+ "category": "stablecoin",
16
+ "isStable": true,
17
+ "priceHint": "stable_usd"
18
+ },
19
+ "WETH": {
20
+ "symbol": "WETH",
21
+ "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
22
+ "decimals": 18,
23
+ "category": "wrapped-native",
24
+ "priceHint": "native"
25
+ },
26
+ "WBTC": {
27
+ "symbol": "WBTC",
28
+ "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
29
+ "decimals": 8,
30
+ "category": "wrapped-btc",
31
+ "priceHint": "btc"
32
+ },
33
+ "DAI": {
34
+ "symbol": "DAI",
35
+ "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
36
+ "decimals": 18,
37
+ "category": "stablecoin",
38
+ "isStable": true,
39
+ "priceHint": "stable_usd"
40
+ },
41
+ "UNI": {
42
+ "symbol": "UNI",
43
+ "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984",
44
+ "decimals": 18,
45
+ "category": "governance"
46
+ },
47
+ "LINK": {
48
+ "symbol": "LINK",
49
+ "address": "0x514910771AF9Ca656af840dff83E8264EcF986CA",
50
+ "decimals": 18,
51
+ "category": "oracle"
52
+ },
53
+ "MKR": {
54
+ "symbol": "MKR",
55
+ "address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2",
56
+ "decimals": 18,
57
+ "category": "governance"
58
+ },
59
+ "COMP": {
60
+ "symbol": "COMP",
61
+ "address": "0xc00e94Cb662C3520282E6f5717214004A7f26888",
62
+ "decimals": 18,
63
+ "category": "governance"
64
+ },
65
+ "AAVE": {
66
+ "symbol": "AAVE",
67
+ "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9",
68
+ "decimals": 18,
69
+ "category": "governance"
70
+ },
71
+ "CRV": {
72
+ "symbol": "CRV",
73
+ "address": "0xD533a949740bb3306d119CC777fa900bA034cd52",
74
+ "decimals": 18,
75
+ "category": "governance"
76
+ },
77
+ "ENS": {
78
+ "symbol": "ENS",
79
+ "address": "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72",
80
+ "decimals": 18,
81
+ "category": "governance"
82
+ },
83
+ "SNX": {
84
+ "symbol": "SNX",
85
+ "address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F",
86
+ "decimals": 18,
87
+ "category": "governance"
88
+ },
89
+ "GRT": {
90
+ "symbol": "GRT",
91
+ "address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7",
92
+ "decimals": 18,
93
+ "category": "indexing"
94
+ },
95
+ "BAL": {
96
+ "symbol": "BAL",
97
+ "address": "0xba100000625a3754423978a60c9317c58a424e3D",
98
+ "decimals": 18,
99
+ "category": "governance"
100
+ }
101
+ },
102
+ "base": {
103
+ "USDC": {
104
+ "symbol": "USDC",
105
+ "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
106
+ "decimals": 6,
107
+ "category": "stablecoin",
108
+ "isStable": true,
109
+ "priceHint": "stable_usd"
110
+ },
111
+ "WETH": {
112
+ "symbol": "WETH",
113
+ "address": "0x4200000000000000000000000000000000000006",
114
+ "decimals": 18,
115
+ "category": "wrapped-native",
116
+ "priceHint": "native"
117
+ },
118
+ "DAI": {
119
+ "symbol": "DAI",
120
+ "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb",
121
+ "decimals": 18,
122
+ "category": "stablecoin",
123
+ "isStable": true,
124
+ "priceHint": "stable_usd"
125
+ },
126
+ "UNI": {
127
+ "symbol": "UNI",
128
+ "address": "0xc3de830ea07524a0761646a6a4e4be0e114a3c83",
129
+ "decimals": 18,
130
+ "category": "governance"
131
+ },
132
+ "CBETH": {
133
+ "symbol": "cbETH",
134
+ "address": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22",
135
+ "decimals": 18,
136
+ "category": "liquid-staking"
137
+ },
138
+ "CBBTC": {
139
+ "symbol": "cbBTC",
140
+ "address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
141
+ "decimals": 8,
142
+ "category": "wrapped-btc",
143
+ "priceHint": "btc"
144
+ },
145
+ "AERO": {
146
+ "symbol": "AERO",
147
+ "address": "0x940181a94A35A4569E4529A3CDfB74e38FD98631",
148
+ "decimals": 18,
149
+ "category": "governance"
150
+ },
151
+ "EURC": {
152
+ "symbol": "EURC",
153
+ "address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
154
+ "decimals": 6,
155
+ "category": "stablecoin",
156
+ "isStable": true,
157
+ "priceHint": "eur"
158
+ },
159
+ "COMP": {
160
+ "symbol": "COMP",
161
+ "address": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0",
162
+ "decimals": 18,
163
+ "category": "governance"
164
+ },
165
+ "ZRX": {
166
+ "symbol": "ZRX",
167
+ "address": "0x3bB4445D30AC020a84c1b5A8A2C6248ebC9779D0",
168
+ "decimals": 18,
169
+ "category": "exchange"
170
+ },
171
+ "ZRO": {
172
+ "symbol": "ZRO",
173
+ "address": "0x6985884C4392D348587B19cb9eAAf157F13271cd",
174
+ "decimals": 18,
175
+ "category": "governance"
176
+ },
177
+ "WELL": {
178
+ "symbol": "WELL",
179
+ "address": "0xA88594D404727625A9437C3f886C7643872296AE",
180
+ "decimals": 18,
181
+ "category": "governance"
182
+ },
183
+ "DEGEN": {
184
+ "symbol": "DEGEN",
185
+ "address": "0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed",
186
+ "decimals": 18,
187
+ "category": "meme"
188
+ }
189
+ },
190
+ "arbitrum": {
191
+ "USDC": {
192
+ "symbol": "USDC",
193
+ "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
194
+ "decimals": 6,
195
+ "category": "stablecoin",
196
+ "isStable": true,
197
+ "priceHint": "stable_usd"
198
+ },
199
+ "USDT": {
200
+ "symbol": "USDT",
201
+ "address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
202
+ "decimals": 6,
203
+ "category": "stablecoin",
204
+ "isStable": true,
205
+ "priceHint": "stable_usd"
206
+ },
207
+ "WETH": {
208
+ "symbol": "WETH",
209
+ "address": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
210
+ "decimals": 18,
211
+ "category": "wrapped-native",
212
+ "priceHint": "native"
213
+ },
214
+ "WBTC": {
215
+ "symbol": "WBTC",
216
+ "address": "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f",
217
+ "decimals": 8,
218
+ "category": "wrapped-btc",
219
+ "priceHint": "btc"
220
+ },
221
+ "ARB": {
222
+ "symbol": "ARB",
223
+ "address": "0x912CE59144191C1204E64559FE8253a0e49E6548",
224
+ "decimals": 18,
225
+ "category": "governance"
226
+ },
227
+ "USDC.E": {
228
+ "symbol": "USDC.e",
229
+ "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8",
230
+ "decimals": 6,
231
+ "category": "stablecoin",
232
+ "isStable": true,
233
+ "priceHint": "stable_usd"
234
+ },
235
+ "CBBTC": {
236
+ "symbol": "cbBTC",
237
+ "address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
238
+ "decimals": 8,
239
+ "category": "wrapped-btc",
240
+ "priceHint": "btc"
241
+ },
242
+ "GMX": {
243
+ "symbol": "GMX",
244
+ "address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a",
245
+ "decimals": 18,
246
+ "category": "governance"
247
+ },
248
+ "MAGIC": {
249
+ "symbol": "MAGIC",
250
+ "address": "0x539bdE0d7Dbd336b79148AA742883198BBF60342",
251
+ "decimals": 18,
252
+ "category": "gaming"
253
+ },
254
+ "ZRO": {
255
+ "symbol": "ZRO",
256
+ "address": "0x6985884C4392D348587B19cb9eAAf157F13271cd",
257
+ "decimals": 18,
258
+ "category": "governance"
259
+ },
260
+ "RSR": {
261
+ "symbol": "RSR",
262
+ "address": "0xCa5Ca9083702c56b481D1eec86F1776FDbd2e594",
263
+ "decimals": 18,
264
+ "category": "governance"
265
+ }
266
+ },
267
+ "optimism": {
268
+ "USDC": {
269
+ "symbol": "USDC",
270
+ "address": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
271
+ "decimals": 6,
272
+ "category": "stablecoin",
273
+ "isStable": true,
274
+ "priceHint": "stable_usd"
275
+ },
276
+ "USDT": {
277
+ "symbol": "USDT",
278
+ "address": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58",
279
+ "decimals": 6,
280
+ "category": "stablecoin",
281
+ "isStable": true,
282
+ "priceHint": "stable_usd"
283
+ },
284
+ "WETH": {
285
+ "symbol": "WETH",
286
+ "address": "0x4200000000000000000000000000000000000006",
287
+ "decimals": 18,
288
+ "category": "wrapped-native",
289
+ "priceHint": "native"
290
+ },
291
+ "DAI": {
292
+ "symbol": "DAI",
293
+ "address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1",
294
+ "decimals": 18,
295
+ "category": "stablecoin",
296
+ "isStable": true,
297
+ "priceHint": "stable_usd"
298
+ },
299
+ "OP": {
300
+ "symbol": "OP",
301
+ "address": "0x4200000000000000000000000000000000000042",
302
+ "decimals": 18,
303
+ "category": "governance"
304
+ },
305
+ "USDC.E": {
306
+ "symbol": "USDC.e",
307
+ "address": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607",
308
+ "decimals": 6,
309
+ "category": "stablecoin",
310
+ "isStable": true,
311
+ "priceHint": "stable_usd"
312
+ },
313
+ "VELO": {
314
+ "symbol": "VELO",
315
+ "address": "0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db",
316
+ "decimals": 18,
317
+ "category": "governance"
318
+ },
319
+ "ZRO": {
320
+ "symbol": "ZRO",
321
+ "address": "0x6985884C4392D348587B19cb9eAAf157F13271cd",
322
+ "decimals": 18,
323
+ "category": "governance"
324
+ },
325
+ "WLD": {
326
+ "symbol": "WLD",
327
+ "address": "0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1",
328
+ "decimals": 18,
329
+ "category": "governance"
330
+ }
331
+ },
332
+ "polygon": {
333
+ "USDC": {
334
+ "symbol": "USDC",
335
+ "address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
336
+ "decimals": 6,
337
+ "category": "stablecoin",
338
+ "isStable": true,
339
+ "priceHint": "stable_usd"
340
+ },
341
+ "USDT": {
342
+ "symbol": "USDT",
343
+ "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
344
+ "decimals": 6,
345
+ "category": "stablecoin",
346
+ "isStable": true,
347
+ "priceHint": "stable_usd"
348
+ },
349
+ "WETH": {
350
+ "symbol": "WETH",
351
+ "address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
352
+ "decimals": 18,
353
+ "category": "wrapped-eth"
354
+ },
355
+ "WMATIC": {
356
+ "symbol": "WMATIC",
357
+ "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
358
+ "decimals": 18,
359
+ "category": "wrapped-native",
360
+ "priceHint": "native"
361
+ },
362
+ "WBTC": {
363
+ "symbol": "WBTC",
364
+ "address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6",
365
+ "decimals": 8,
366
+ "category": "wrapped-btc",
367
+ "priceHint": "btc"
368
+ },
369
+ "DAI": {
370
+ "symbol": "DAI",
371
+ "address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063",
372
+ "decimals": 18,
373
+ "category": "stablecoin",
374
+ "isStable": true,
375
+ "priceHint": "stable_usd"
376
+ },
377
+ "UNI": {
378
+ "symbol": "UNI",
379
+ "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f",
380
+ "decimals": 18,
381
+ "category": "governance"
382
+ },
383
+ "LINK": {
384
+ "symbol": "LINK",
385
+ "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39",
386
+ "decimals": 18,
387
+ "category": "oracle"
388
+ },
389
+ "AAVE": {
390
+ "symbol": "AAVE",
391
+ "address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B",
392
+ "decimals": 18,
393
+ "category": "governance"
394
+ },
395
+ "CRV": {
396
+ "symbol": "CRV",
397
+ "address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF",
398
+ "decimals": 18,
399
+ "category": "governance"
400
+ },
401
+ "SNX": {
402
+ "symbol": "SNX",
403
+ "address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a",
404
+ "decimals": 18,
405
+ "category": "governance"
406
+ },
407
+ "MKR": {
408
+ "symbol": "MKR",
409
+ "address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d",
410
+ "decimals": 18,
411
+ "category": "governance"
412
+ },
413
+ "COMP": {
414
+ "symbol": "COMP",
415
+ "address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c",
416
+ "decimals": 18,
417
+ "category": "governance"
418
+ },
419
+ "GRT": {
420
+ "symbol": "GRT",
421
+ "address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531",
422
+ "decimals": 18,
423
+ "category": "indexing"
424
+ },
425
+ "BAL": {
426
+ "symbol": "BAL",
427
+ "address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3",
428
+ "decimals": 18,
429
+ "category": "governance"
430
+ }
431
+ },
432
+ "unichain": {
433
+ "USDC": {
434
+ "symbol": "USDC",
435
+ "address": "0x078D782b760474a361dDA0AF3839290b0EF57AD6",
436
+ "decimals": 6,
437
+ "category": "stablecoin",
438
+ "isStable": true,
439
+ "priceHint": "stable_usd"
440
+ },
441
+ "WETH": {
442
+ "symbol": "WETH",
443
+ "address": "0x4200000000000000000000000000000000000006",
444
+ "decimals": 18,
445
+ "category": "wrapped-native",
446
+ "priceHint": "native"
447
+ },
448
+ "SOL": {
449
+ "symbol": "SOL",
450
+ "address": "0xbdE8A5331E8Ac4831cf8ea9e42e229219EafaB97",
451
+ "decimals": 9,
452
+ "category": "bridged-largecap"
453
+ },
454
+ "JUP": {
455
+ "symbol": "JUP",
456
+ "address": "0xbe51A5e8FA434F09663e8fB4CCe79d0B2381Afad",
457
+ "decimals": 6,
458
+ "category": "governance"
459
+ },
460
+ "BONK": {
461
+ "symbol": "BONK",
462
+ "address": "0xBbE97f3522101e5B6976cBf77376047097BA837F",
463
+ "decimals": 5,
464
+ "category": "meme"
465
+ },
466
+ "WIF": {
467
+ "symbol": "WIF",
468
+ "address": "0x97Fadb3D000b953360FD011e173F12cDDB5d70Fa",
469
+ "decimals": 6,
470
+ "category": "meme"
471
+ },
472
+ "XRP": {
473
+ "symbol": "XRP",
474
+ "address": "0x2615a94df961278DcbC41Fb0a54fEc5f10a693aE",
475
+ "decimals": 18,
476
+ "category": "bridged-largecap"
477
+ },
478
+ "DOGE": {
479
+ "symbol": "DOGE",
480
+ "address": "0x12E96C2BFEA6E835CF8Dd38a5834fa61Cf723736",
481
+ "decimals": 18,
482
+ "category": "meme"
483
+ },
484
+ "TAO": {
485
+ "symbol": "TAO",
486
+ "address": "0xFdCa15bd55F350a36E63C47661914d80411d2C22",
487
+ "decimals": 18,
488
+ "category": "bridged-largecap"
489
+ }
490
+ },
491
+ "bsc": {
492
+ "WBNB": {
493
+ "symbol": "WBNB",
494
+ "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
495
+ "decimals": 18,
496
+ "category": "wrapped-native",
497
+ "priceHint": "native"
498
+ },
499
+ "USDT": {
500
+ "symbol": "USDT",
501
+ "address": "0x55d398326f99059fF775485246999027B3197955",
502
+ "decimals": 18,
503
+ "category": "stablecoin",
504
+ "isStable": true,
505
+ "priceHint": "stable_usd"
506
+ },
507
+ "USDC": {
508
+ "symbol": "USDC",
509
+ "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d",
510
+ "decimals": 18,
511
+ "category": "stablecoin",
512
+ "isStable": true,
513
+ "priceHint": "stable_usd"
514
+ },
515
+ "ETH": {
516
+ "symbol": "ETH",
517
+ "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8",
518
+ "decimals": 18,
519
+ "category": "bridged-largecap",
520
+ "priceHint": "native"
521
+ },
522
+ "BTCB": {
523
+ "symbol": "BTCB",
524
+ "address": "0x7130d2A12B9BCbFAe4f2634d864A27E735619014",
525
+ "decimals": 18,
526
+ "category": "wrapped-btc",
527
+ "priceHint": "btc"
528
+ },
529
+ "CAKE": {
530
+ "symbol": "CAKE",
531
+ "address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82",
532
+ "decimals": 18,
533
+ "category": "governance"
534
+ }
535
+ },
536
+ "avalanche": {
537
+ "WAVAX": {
538
+ "symbol": "WAVAX",
539
+ "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7",
540
+ "decimals": 18,
541
+ "category": "wrapped-native",
542
+ "priceHint": "native"
543
+ },
544
+ "USDC": {
545
+ "symbol": "USDC",
546
+ "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E",
547
+ "decimals": 6,
548
+ "category": "stablecoin",
549
+ "isStable": true,
550
+ "priceHint": "stable_usd"
551
+ },
552
+ "USDT": {
553
+ "symbol": "USDT",
554
+ "address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
555
+ "decimals": 6,
556
+ "category": "stablecoin",
557
+ "isStable": true,
558
+ "priceHint": "stable_usd"
559
+ },
560
+ "WETH": {
561
+ "symbol": "WETH",
562
+ "address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB",
563
+ "decimals": 18,
564
+ "category": "bridged-largecap",
565
+ "priceHint": "native"
566
+ },
567
+ "BTCB": {
568
+ "symbol": "BTC.b",
569
+ "address": "0x152b9d0FdC40C096757F570A51E494bd4b943E50",
570
+ "decimals": 8,
571
+ "category": "wrapped-btc",
572
+ "priceHint": "btc"
573
+ },
574
+ "JOE": {
575
+ "symbol": "JOE",
576
+ "address": "0x6e84a6216eA6dACC71eE8a6b0150509c26FB10E9",
577
+ "decimals": 18,
578
+ "category": "governance"
579
+ }
580
+ },
581
+ "blast": {
582
+ "WETH": {
583
+ "symbol": "WETH",
584
+ "address": "0x4300000000000000000000000000000000000004",
585
+ "decimals": 18,
586
+ "category": "wrapped-native",
587
+ "priceHint": "native"
588
+ },
589
+ "USDB": {
590
+ "symbol": "USDB",
591
+ "address": "0x4300000000000000000000000000000000000003",
592
+ "decimals": 18,
593
+ "category": "stablecoin",
594
+ "isStable": true,
595
+ "priceHint": "stable_usd"
596
+ },
597
+ "BLAST": {
598
+ "symbol": "BLAST",
599
+ "address": "0xb1a5700fA2358173fE465E6EA4Ff52E36e88E2ad",
600
+ "decimals": 18,
601
+ "category": "governance"
602
+ },
603
+ "USDC": {
604
+ "symbol": "USDC",
605
+ "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
606
+ "decimals": 6,
607
+ "category": "stablecoin",
608
+ "isStable": true,
609
+ "priceHint": "stable_usd"
610
+ }
611
+ },
612
+ "celo": {
613
+ "CELO": {
614
+ "symbol": "CELO",
615
+ "address": "0x471EcE3750Da237f93B8E339C536989b8978a438",
616
+ "decimals": 18,
617
+ "category": "wrapped-native",
618
+ "priceHint": "native"
619
+ },
620
+ "USDC": {
621
+ "symbol": "USDC",
622
+ "address": "0xcebA9300f2b948710d2653DD7b07f33A8B32118C",
623
+ "decimals": 6,
624
+ "category": "stablecoin",
625
+ "isStable": true,
626
+ "priceHint": "stable_usd"
627
+ },
628
+ "USDT": {
629
+ "symbol": "USDT",
630
+ "address": "0x48065fbBE25f71C9282ddf5E1cD6D6a887483d5e",
631
+ "decimals": 6,
632
+ "category": "stablecoin",
633
+ "isStable": true,
634
+ "priceHint": "stable_usd"
635
+ }
636
+ },
637
+ "monad": {
638
+ "WMON": {
639
+ "symbol": "WMON",
640
+ "address": "0x3bD359c1119Da7DA1d913D1c4D2b7C461115433a",
641
+ "decimals": 18,
642
+ "category": "wrapped-native",
643
+ "priceHint": "native"
644
+ },
645
+ "USDC": {
646
+ "symbol": "USDC",
647
+ "address": "0x754704bc059f8c67012fEd69Bc8A327a5aAFB603",
648
+ "decimals": 6,
649
+ "category": "stablecoin",
650
+ "isStable": true,
651
+ "priceHint": "stable_usd"
652
+ }
653
+ },
654
+ "x_layer": {
655
+ "WOKB": {
656
+ "symbol": "WOKB",
657
+ "address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
658
+ "decimals": 18,
659
+ "category": "wrapped-native",
660
+ "priceHint": "native"
661
+ }
662
+ },
663
+ "zksync": {
664
+ "WETH": {
665
+ "symbol": "WETH",
666
+ "address": "0x5AEa5775959fBC2557Cc8789bC1bf90a239D9a91",
667
+ "decimals": 18,
668
+ "category": "wrapped-native",
669
+ "priceHint": "native"
670
+ },
671
+ "USDC": {
672
+ "symbol": "USDC",
673
+ "address": "0x3355df6D4c9c3035724Fd0E3914dE96a5a83aAF4",
674
+ "decimals": 6,
675
+ "category": "stablecoin",
676
+ "isStable": true,
677
+ "priceHint": "stable_usd"
678
+ },
679
+ "ZK": {
680
+ "symbol": "ZK",
681
+ "address": "0x5A7d6b2f92C77FAD6CCaBd7ee0624e64907eaf3E",
682
+ "decimals": 18,
683
+ "category": "governance"
684
+ }
685
+ },
686
+ "world_chain": {
687
+ "WETH": {
688
+ "symbol": "WETH",
689
+ "address": "0x4200000000000000000000000000000000000006",
690
+ "decimals": 18,
691
+ "category": "wrapped-native",
692
+ "priceHint": "native"
693
+ },
694
+ "WLD": {
695
+ "symbol": "WLD",
696
+ "address": "0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1",
697
+ "decimals": 18,
698
+ "category": "governance"
699
+ },
700
+ "USDC": {
701
+ "symbol": "USDC",
702
+ "address": "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1",
703
+ "decimals": 6,
704
+ "category": "stablecoin",
705
+ "isStable": true,
706
+ "priceHint": "stable_usd"
707
+ }
708
+ },
709
+ "soneium": {
710
+ "WETH": {
711
+ "symbol": "WETH",
712
+ "address": "0x4200000000000000000000000000000000000006",
713
+ "decimals": 18,
714
+ "category": "wrapped-native",
715
+ "priceHint": "native"
716
+ },
717
+ "USDC.E": {
718
+ "symbol": "USDC.e",
719
+ "address": "0xbA9986D2381eDf1Da03B0B9c1f8B00DC4aAcc369",
720
+ "decimals": 6,
721
+ "category": "stablecoin",
722
+ "isStable": true,
723
+ "priceHint": "stable_usd"
724
+ },
725
+ "USDT": {
726
+ "symbol": "USDT",
727
+ "address": "0x3a337a6ADa9D885b6Ad95ec48F9B75F197B5aE35",
728
+ "decimals": 6,
729
+ "category": "stablecoin",
730
+ "isStable": true,
731
+ "priceHint": "stable_usd"
732
+ }
733
+ },
734
+ "tempo": {
735
+ "WAVAX": {
736
+ "symbol": "WAVAX",
737
+ "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7",
738
+ "decimals": 18,
739
+ "category": "wrapped-native",
740
+ "priceHint": "native"
741
+ }
742
+ },
743
+ "linea": {
744
+ "WETH": {
745
+ "symbol": "WETH",
746
+ "address": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f",
747
+ "decimals": 18,
748
+ "category": "wrapped-native",
749
+ "priceHint": "native"
750
+ },
751
+ "USDC": {
752
+ "symbol": "USDC",
753
+ "address": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff",
754
+ "decimals": 6,
755
+ "category": "stablecoin",
756
+ "isStable": true,
757
+ "priceHint": "stable_usd"
758
+ },
759
+ "USDT": {
760
+ "symbol": "USDT",
761
+ "address": "0xA219439258ca9da29E9Cc4eE55342f6678a22263",
762
+ "decimals": 6,
763
+ "category": "stablecoin",
764
+ "isStable": true,
765
+ "priceHint": "stable_usd"
766
+ }
767
+ },
768
+ "zora": {
769
+ "WETH": {
770
+ "symbol": "WETH",
771
+ "address": "0x4200000000000000000000000000000000000006",
772
+ "decimals": 18,
773
+ "category": "wrapped-native",
774
+ "priceHint": "native"
775
+ }
776
+ }
777
+ }