@octaflowlabs/onchain-sdk 1.4.2 → 1.5.1
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/README.md +17 -1
- package/dist/cjs/constants/BASIC_TOKENS_REGISTRY.d.ts +1 -1
- package/dist/cjs/constants/BASIC_TOKENS_REGISTRY.js +935 -38
- package/dist/cjs/constants/NETWORKS_REGISTRY.js +156 -1
- package/dist/cjs/constants/STABLECOINS_REGISTRY.d.ts +13 -0
- package/dist/cjs/constants/STABLECOINS_REGISTRY.js +101 -0
- package/dist/cjs/index.d.ts +4 -1
- package/dist/cjs/index.js +10 -1
- package/dist/cjs/utils/activityDedupe.d.ts +7 -0
- package/dist/cjs/utils/activityDedupe.js +11 -0
- package/dist/cjs/utils/normalizeAddress.d.ts +1 -0
- package/dist/cjs/utils/normalizeAddress.js +12 -1
- package/dist/cjs/webhooks/alchemyAddressActivity.d.ts +39 -0
- package/dist/cjs/webhooks/alchemyAddressActivity.js +75 -0
- package/dist/constants/BASIC_TOKENS_REGISTRY.d.ts +1 -1
- package/dist/constants/BASIC_TOKENS_REGISTRY.js +935 -38
- package/dist/constants/NETWORKS_REGISTRY.js +156 -1
- package/dist/constants/STABLECOINS_REGISTRY.d.ts +13 -0
- package/dist/constants/STABLECOINS_REGISTRY.js +95 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/dist/utils/activityDedupe.d.ts +7 -0
- package/dist/utils/activityDedupe.js +7 -0
- package/dist/utils/normalizeAddress.d.ts +1 -0
- package/dist/utils/normalizeAddress.js +10 -0
- package/dist/webhooks/alchemyAddressActivity.d.ts +39 -0
- package/dist/webhooks/alchemyAddressActivity.js +72 -0
- package/package.json +5 -2
|
@@ -74,6 +74,92 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
74
74
|
isNative: false,
|
|
75
75
|
},
|
|
76
76
|
],
|
|
77
|
+
10: [
|
|
78
|
+
{
|
|
79
|
+
id: 'op',
|
|
80
|
+
address: '0x4200000000000000000000000000000000000042',
|
|
81
|
+
chainId: 10,
|
|
82
|
+
symbol: 'OP',
|
|
83
|
+
name: 'Optimism',
|
|
84
|
+
decimals: 18,
|
|
85
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
86
|
+
amount: '38.80',
|
|
87
|
+
usdValue: '150,000 USD',
|
|
88
|
+
isNative: true,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
id: 'weth',
|
|
92
|
+
address: '0x4200000000000000000000000000000000000006',
|
|
93
|
+
chainId: 10,
|
|
94
|
+
symbol: 'WETH',
|
|
95
|
+
name: 'Wrapped Ether',
|
|
96
|
+
decimals: 18,
|
|
97
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
98
|
+
amount: '38.80',
|
|
99
|
+
usdValue: '150,000 USD',
|
|
100
|
+
isNative: true,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
id: 'usdc',
|
|
104
|
+
address: '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85',
|
|
105
|
+
chainId: 10,
|
|
106
|
+
symbol: 'USDC',
|
|
107
|
+
name: 'USD Coin',
|
|
108
|
+
decimals: 6,
|
|
109
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
110
|
+
amount: '150,000',
|
|
111
|
+
usdValue: '150,000 USD',
|
|
112
|
+
isNative: false,
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
id: 'usdt',
|
|
116
|
+
address: '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58',
|
|
117
|
+
chainId: 10,
|
|
118
|
+
symbol: 'USDT',
|
|
119
|
+
name: 'Tether USD',
|
|
120
|
+
decimals: 6,
|
|
121
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
122
|
+
amount: '75,000',
|
|
123
|
+
usdValue: '75,000 USD',
|
|
124
|
+
isNative: false,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
id: 'dai',
|
|
128
|
+
address: '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1',
|
|
129
|
+
chainId: 10,
|
|
130
|
+
symbol: 'DAI',
|
|
131
|
+
name: 'Dai Stablecoin',
|
|
132
|
+
decimals: 18,
|
|
133
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
134
|
+
amount: '25,000',
|
|
135
|
+
usdValue: '25,000 USD',
|
|
136
|
+
isNative: false,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
id: 'wbtc',
|
|
140
|
+
address: '0x68f180fcCe6836688e9084f035309E29Bf0A2095',
|
|
141
|
+
chainId: 10,
|
|
142
|
+
symbol: 'WBTC',
|
|
143
|
+
name: 'Wrapped BTC',
|
|
144
|
+
decimals: 8,
|
|
145
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
146
|
+
amount: '1.5',
|
|
147
|
+
usdValue: '100,000 USD',
|
|
148
|
+
isNative: false,
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
id: 'uni',
|
|
152
|
+
address: '0x6fd9d7AD17242c41f7131d257212c54A0e816691',
|
|
153
|
+
chainId: 10,
|
|
154
|
+
symbol: 'UNI',
|
|
155
|
+
name: 'Uniswap',
|
|
156
|
+
decimals: 18,
|
|
157
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
158
|
+
amount: '5,000',
|
|
159
|
+
usdValue: '50,000 USD',
|
|
160
|
+
isNative: false,
|
|
161
|
+
},
|
|
162
|
+
],
|
|
77
163
|
56: [
|
|
78
164
|
{
|
|
79
165
|
id: 'bnb',
|
|
@@ -172,37 +258,123 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
172
258
|
isNative: false,
|
|
173
259
|
},
|
|
174
260
|
],
|
|
175
|
-
|
|
261
|
+
100: [
|
|
176
262
|
{
|
|
177
|
-
id: '
|
|
263
|
+
id: 'xdai',
|
|
178
264
|
address: null,
|
|
179
|
-
chainId:
|
|
180
|
-
symbol: '
|
|
181
|
-
name: '
|
|
265
|
+
chainId: 100,
|
|
266
|
+
symbol: 'xDAI',
|
|
267
|
+
name: 'xDAI',
|
|
182
268
|
decimals: 18,
|
|
183
|
-
iconUrl: 'https://assets.coingecko.com/coins/images/
|
|
269
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12645/small/xDAI.png',
|
|
184
270
|
amount: '38.80',
|
|
185
271
|
usdValue: '150,000 USD',
|
|
186
272
|
isNative: true,
|
|
187
273
|
},
|
|
188
274
|
{
|
|
189
275
|
id: 'weth',
|
|
190
|
-
address: '
|
|
191
|
-
chainId:
|
|
276
|
+
address: '0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1',
|
|
277
|
+
chainId: 100,
|
|
192
278
|
symbol: 'WETH',
|
|
193
|
-
name: 'Wrapped Ether',
|
|
279
|
+
name: 'Wrapped Ether on xDai',
|
|
194
280
|
decimals: 18,
|
|
195
281
|
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
196
282
|
amount: '38.80',
|
|
197
283
|
usdValue: '150,000 USD',
|
|
284
|
+
isNative: true,
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
id: 'usdc',
|
|
288
|
+
address: '0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83',
|
|
289
|
+
chainId: 100,
|
|
290
|
+
symbol: 'USDC',
|
|
291
|
+
name: ' USD//C on xDai',
|
|
292
|
+
decimals: 6,
|
|
293
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
294
|
+
amount: '150,000',
|
|
295
|
+
usdValue: '150,000 USD',
|
|
296
|
+
isNative: false,
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
id: 'usdt',
|
|
300
|
+
address: '0x4ECaBa5870353805a9F068101A40E0f32ed605C6',
|
|
301
|
+
chainId: 100,
|
|
302
|
+
symbol: 'USDT',
|
|
303
|
+
name: 'Tether USD on xDai',
|
|
304
|
+
decimals: 6,
|
|
305
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
306
|
+
amount: '75,000',
|
|
307
|
+
usdValue: '75,000 USD',
|
|
198
308
|
isNative: false,
|
|
199
309
|
},
|
|
310
|
+
// {
|
|
311
|
+
// id: 'dai',
|
|
312
|
+
// address: '0x20CAb320A855b39F724131C69424240519573f81',
|
|
313
|
+
// chainId: 100,
|
|
314
|
+
// symbol: 'DAI',
|
|
315
|
+
// name: 'Dai Stablecoin on xDai',
|
|
316
|
+
// decimals: 18,
|
|
317
|
+
// iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
318
|
+
// amount: '25,000',
|
|
319
|
+
// usdValue: '25,000 USD',
|
|
320
|
+
// isNative: false,
|
|
321
|
+
// },
|
|
322
|
+
{
|
|
323
|
+
id: 'wbtc',
|
|
324
|
+
address: '0x8e5bBbb09Ed1ebdE8674Cda39A0c169401db4252',
|
|
325
|
+
chainId: 100,
|
|
326
|
+
symbol: 'WBTC',
|
|
327
|
+
name: 'Wrapped BTC on xDai',
|
|
328
|
+
decimals: 8,
|
|
329
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
330
|
+
amount: '1.5',
|
|
331
|
+
usdValue: '100,000 USD',
|
|
332
|
+
isNative: false,
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
id: 'uni',
|
|
336
|
+
address: '0x4537e328Bf7e4eFA29D05CAeA260D7fE26af9D74',
|
|
337
|
+
chainId: 100,
|
|
338
|
+
symbol: 'UNI',
|
|
339
|
+
name: 'Uniswap on xDai',
|
|
340
|
+
decimals: 18,
|
|
341
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
342
|
+
amount: '5,000',
|
|
343
|
+
usdValue: '50,000 USD',
|
|
344
|
+
isNative: false,
|
|
345
|
+
},
|
|
346
|
+
],
|
|
347
|
+
130: [
|
|
348
|
+
{
|
|
349
|
+
id: 'eth',
|
|
350
|
+
address: null,
|
|
351
|
+
chainId: 130,
|
|
352
|
+
symbol: 'ETH',
|
|
353
|
+
name: 'Ethereum',
|
|
354
|
+
decimals: 18,
|
|
355
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
356
|
+
amount: '38.80',
|
|
357
|
+
usdValue: '150,000 USD',
|
|
358
|
+
isNative: true,
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
id: 'weth',
|
|
362
|
+
address: '0x4200000000000000000000000000000000000006',
|
|
363
|
+
chainId: 130,
|
|
364
|
+
symbol: 'WETH',
|
|
365
|
+
name: 'Wrapped Ether',
|
|
366
|
+
decimals: 18,
|
|
367
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
368
|
+
amount: '38.80',
|
|
369
|
+
usdValue: '150,000 USD',
|
|
370
|
+
isNative: true,
|
|
371
|
+
},
|
|
200
372
|
{
|
|
201
373
|
id: 'usdc',
|
|
202
|
-
address: '
|
|
203
|
-
chainId:
|
|
374
|
+
address: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
|
|
375
|
+
chainId: 130,
|
|
204
376
|
symbol: 'USDC',
|
|
205
|
-
name: '
|
|
377
|
+
name: 'USDC',
|
|
206
378
|
decimals: 6,
|
|
207
379
|
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
208
380
|
amount: '150,000',
|
|
@@ -211,8 +383,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
211
383
|
},
|
|
212
384
|
{
|
|
213
385
|
id: 'usdt',
|
|
214
|
-
address: '
|
|
215
|
-
chainId:
|
|
386
|
+
address: '0x588CE4F028D8e7B53B687865d6A67b3A54C75518',
|
|
387
|
+
chainId: 130,
|
|
216
388
|
symbol: 'USDT',
|
|
217
389
|
name: 'Tether USD',
|
|
218
390
|
decimals: 6,
|
|
@@ -223,8 +395,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
223
395
|
},
|
|
224
396
|
{
|
|
225
397
|
id: 'dai',
|
|
226
|
-
address: '
|
|
227
|
-
chainId:
|
|
398
|
+
address: '0x20CAb320A855b39F724131C69424240519573f81',
|
|
399
|
+
chainId: 130,
|
|
228
400
|
symbol: 'DAI',
|
|
229
401
|
name: 'Dai Stablecoin',
|
|
230
402
|
decimals: 18,
|
|
@@ -235,8 +407,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
235
407
|
},
|
|
236
408
|
{
|
|
237
409
|
id: 'wbtc',
|
|
238
|
-
address: '
|
|
239
|
-
chainId:
|
|
410
|
+
address: '0x0555E30da8f98308EdB960aa94C0Db47230d2B9c',
|
|
411
|
+
chainId: 130,
|
|
240
412
|
symbol: 'WBTC',
|
|
241
413
|
name: 'Wrapped BTC',
|
|
242
414
|
decimals: 8,
|
|
@@ -247,8 +419,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
247
419
|
},
|
|
248
420
|
{
|
|
249
421
|
id: 'uni',
|
|
250
|
-
address: '
|
|
251
|
-
chainId:
|
|
422
|
+
address: '0x8f187aA05619a017077f5308904739877ce9eA21',
|
|
423
|
+
chainId: 130,
|
|
252
424
|
symbol: 'UNI',
|
|
253
425
|
name: 'Uniswap',
|
|
254
426
|
decimals: 18,
|
|
@@ -258,23 +430,35 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
258
430
|
isNative: false,
|
|
259
431
|
},
|
|
260
432
|
],
|
|
261
|
-
|
|
433
|
+
137: [
|
|
262
434
|
{
|
|
263
|
-
id: '
|
|
435
|
+
id: 'pol',
|
|
264
436
|
address: null,
|
|
265
|
-
chainId:
|
|
266
|
-
symbol: '
|
|
267
|
-
name: '
|
|
437
|
+
chainId: 137,
|
|
438
|
+
symbol: 'POL',
|
|
439
|
+
name: 'Polygon',
|
|
268
440
|
decimals: 18,
|
|
269
|
-
iconUrl: 'https://assets.coingecko.com/coins/images/
|
|
441
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/4713/small/polygon.png',
|
|
270
442
|
amount: '38.80',
|
|
271
443
|
usdValue: '150,000 USD',
|
|
272
444
|
isNative: true,
|
|
273
445
|
},
|
|
446
|
+
{
|
|
447
|
+
id: 'weth',
|
|
448
|
+
address: '0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619',
|
|
449
|
+
chainId: 137,
|
|
450
|
+
symbol: 'WETH',
|
|
451
|
+
name: 'Wrapped Ether',
|
|
452
|
+
decimals: 18,
|
|
453
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
454
|
+
amount: '38.80',
|
|
455
|
+
usdValue: '150,000 USD',
|
|
456
|
+
isNative: false,
|
|
457
|
+
},
|
|
274
458
|
{
|
|
275
459
|
id: 'usdc',
|
|
276
|
-
address: '
|
|
277
|
-
chainId:
|
|
460
|
+
address: '0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359',
|
|
461
|
+
chainId: 137,
|
|
278
462
|
symbol: 'USDC',
|
|
279
463
|
name: 'USD Coin',
|
|
280
464
|
decimals: 6,
|
|
@@ -285,10 +469,10 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
285
469
|
},
|
|
286
470
|
{
|
|
287
471
|
id: 'usdt',
|
|
288
|
-
address: '
|
|
289
|
-
chainId:
|
|
290
|
-
symbol: '
|
|
291
|
-
name: 'USD
|
|
472
|
+
address: '0xc2132D05D31c914a87C6611C10748AEb04B58e8F',
|
|
473
|
+
chainId: 137,
|
|
474
|
+
symbol: 'USDT',
|
|
475
|
+
name: 'Tether USD',
|
|
292
476
|
decimals: 6,
|
|
293
477
|
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
294
478
|
amount: '75,000',
|
|
@@ -297,8 +481,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
297
481
|
},
|
|
298
482
|
{
|
|
299
483
|
id: 'dai',
|
|
300
|
-
address: '
|
|
301
|
-
chainId:
|
|
484
|
+
address: '0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063',
|
|
485
|
+
chainId: 137,
|
|
302
486
|
symbol: 'DAI',
|
|
303
487
|
name: 'Dai Stablecoin',
|
|
304
488
|
decimals: 18,
|
|
@@ -309,8 +493,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
309
493
|
},
|
|
310
494
|
{
|
|
311
495
|
id: 'wbtc',
|
|
312
|
-
address: '
|
|
313
|
-
chainId:
|
|
496
|
+
address: '0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6',
|
|
497
|
+
chainId: 137,
|
|
314
498
|
symbol: 'WBTC',
|
|
315
499
|
name: 'Wrapped BTC',
|
|
316
500
|
decimals: 8,
|
|
@@ -321,8 +505,8 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
321
505
|
},
|
|
322
506
|
{
|
|
323
507
|
id: 'uni',
|
|
324
|
-
address: '
|
|
325
|
-
chainId:
|
|
508
|
+
address: '0xb33EaAd8d922B1083446DC23f610c2567fB5180f',
|
|
509
|
+
chainId: 137,
|
|
326
510
|
symbol: 'UNI',
|
|
327
511
|
name: 'Uniswap',
|
|
328
512
|
decimals: 18,
|
|
@@ -332,6 +516,719 @@ export const BASIC_TOKENS_BY_CHAIN = {
|
|
|
332
516
|
isNative: false,
|
|
333
517
|
},
|
|
334
518
|
],
|
|
519
|
+
999: [
|
|
520
|
+
{
|
|
521
|
+
id: 'hype',
|
|
522
|
+
address: null,
|
|
523
|
+
chainId: 999,
|
|
524
|
+
symbol: 'HYPE',
|
|
525
|
+
name: 'Hyperliquid',
|
|
526
|
+
decimals: 18,
|
|
527
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/52510/large/hyperliquid.png',
|
|
528
|
+
amount: '38.80',
|
|
529
|
+
usdValue: '150,000 USD',
|
|
530
|
+
isNative: true,
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
id: 'whype',
|
|
534
|
+
address: '0x5555555555555555555555555555555555555555',
|
|
535
|
+
chainId: 999,
|
|
536
|
+
symbol: 'WHYPE',
|
|
537
|
+
name: 'Wrapped HYPE',
|
|
538
|
+
decimals: 18,
|
|
539
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/52510/large/hyperliquid.png',
|
|
540
|
+
amount: '38.80',
|
|
541
|
+
usdValue: '150,000 USD',
|
|
542
|
+
isNative: false,
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
id: 'usdt0',
|
|
546
|
+
address: '0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
|
|
547
|
+
chainId: 999,
|
|
548
|
+
symbol: 'USD₮0',
|
|
549
|
+
name: 'USD₮0',
|
|
550
|
+
decimals: 6,
|
|
551
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
552
|
+
amount: '75,000',
|
|
553
|
+
usdValue: '75,000 USD',
|
|
554
|
+
isNative: false,
|
|
555
|
+
},
|
|
556
|
+
// No canonical WETH/USDC/DAI/WBTC/UNI deployment on HyperEVM in this mock set
|
|
557
|
+
],
|
|
558
|
+
5000: [
|
|
559
|
+
{
|
|
560
|
+
id: 'mnt',
|
|
561
|
+
address: null,
|
|
562
|
+
chainId: 5000,
|
|
563
|
+
symbol: 'MNT',
|
|
564
|
+
name: 'Mantle Native',
|
|
565
|
+
decimals: 18,
|
|
566
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/4713/small/mantle.png',
|
|
567
|
+
amount: '38.80',
|
|
568
|
+
usdValue: '150,000 USD',
|
|
569
|
+
isNative: true,
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
id: 'weth',
|
|
573
|
+
address: '0xdEAddEaDdeadDEadDEADDEAddEADDEAddead1111',
|
|
574
|
+
chainId: 5000,
|
|
575
|
+
symbol: 'WETH',
|
|
576
|
+
name: 'Ether',
|
|
577
|
+
decimals: 18,
|
|
578
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
579
|
+
amount: '38.80',
|
|
580
|
+
usdValue: '150,000 USD',
|
|
581
|
+
isNative: false,
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
id: 'usdc',
|
|
585
|
+
address: '0x09Bc4E0D864854c6aFB6eB9A9cdF58aC190D0dF9',
|
|
586
|
+
chainId: 5000,
|
|
587
|
+
symbol: 'USDC',
|
|
588
|
+
name: 'USD Coin',
|
|
589
|
+
decimals: 6,
|
|
590
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
591
|
+
amount: '150,000',
|
|
592
|
+
usdValue: '150,000 USD',
|
|
593
|
+
isNative: false,
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
id: 'usdt',
|
|
597
|
+
address: '0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE',
|
|
598
|
+
chainId: 5000,
|
|
599
|
+
symbol: 'USDT',
|
|
600
|
+
name: 'Tether USD',
|
|
601
|
+
decimals: 6,
|
|
602
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
603
|
+
amount: '75,000',
|
|
604
|
+
usdValue: '75,000 USD',
|
|
605
|
+
isNative: false,
|
|
606
|
+
},
|
|
607
|
+
// {
|
|
608
|
+
// id: 'dai',
|
|
609
|
+
// address: '0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063',
|
|
610
|
+
// chainId: 5000,
|
|
611
|
+
// symbol: 'DAI',
|
|
612
|
+
// name: 'Dai Stablecoin',
|
|
613
|
+
// decimals: 18,
|
|
614
|
+
// iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
615
|
+
// amount: '25,000',
|
|
616
|
+
// usdValue: '25,000 USD',
|
|
617
|
+
// isNative: false,
|
|
618
|
+
// },
|
|
619
|
+
// {
|
|
620
|
+
// id: 'wbtc',
|
|
621
|
+
// address: '0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6',
|
|
622
|
+
// chainId: 5000,
|
|
623
|
+
// symbol: 'WBTC',
|
|
624
|
+
// name: 'Wrapped BTC',
|
|
625
|
+
// decimals: 8,
|
|
626
|
+
// iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
627
|
+
// amount: '1.5',
|
|
628
|
+
// usdValue: '100,000 USD',
|
|
629
|
+
// isNative: false,
|
|
630
|
+
// },
|
|
631
|
+
// {
|
|
632
|
+
// id: 'uni',
|
|
633
|
+
// address: '0xb33EaAd8d922B1083446DC23f610c2567fB5180f',
|
|
634
|
+
// chainId: 5000,
|
|
635
|
+
// symbol: 'UNI',
|
|
636
|
+
// name: 'Uniswap',
|
|
637
|
+
// decimals: 18,
|
|
638
|
+
// iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
639
|
+
// amount: '5,000',
|
|
640
|
+
// usdValue: '50,000 USD',
|
|
641
|
+
// isNative: false,
|
|
642
|
+
// },
|
|
643
|
+
],
|
|
644
|
+
8453: [
|
|
645
|
+
{
|
|
646
|
+
id: 'eth',
|
|
647
|
+
address: null,
|
|
648
|
+
chainId: 8453,
|
|
649
|
+
symbol: 'OP',
|
|
650
|
+
name: 'Optimism',
|
|
651
|
+
decimals: 18,
|
|
652
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
653
|
+
amount: '38.80',
|
|
654
|
+
usdValue: '150,000 USD',
|
|
655
|
+
isNative: true,
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
id: 'weth',
|
|
659
|
+
address: '0x4200000000000000000000000000000000000006',
|
|
660
|
+
chainId: 8453,
|
|
661
|
+
symbol: 'WETH',
|
|
662
|
+
name: 'Wrapped Ether',
|
|
663
|
+
decimals: 18,
|
|
664
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
665
|
+
amount: '38.80',
|
|
666
|
+
usdValue: '150,000 USD',
|
|
667
|
+
isNative: true,
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
id: 'usdc',
|
|
671
|
+
address: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
|
|
672
|
+
chainId: 8453,
|
|
673
|
+
symbol: 'USDC',
|
|
674
|
+
name: 'USD Coin',
|
|
675
|
+
decimals: 6,
|
|
676
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
677
|
+
amount: '150,000',
|
|
678
|
+
usdValue: '150,000 USD',
|
|
679
|
+
isNative: false,
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
id: 'usdt',
|
|
683
|
+
address: '0x94b008aA00579c1307B0EF2c499aD98a8ce58e58',
|
|
684
|
+
chainId: 8453,
|
|
685
|
+
symbol: 'USDT',
|
|
686
|
+
name: 'Tether USD',
|
|
687
|
+
decimals: 6,
|
|
688
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
689
|
+
amount: '75,000',
|
|
690
|
+
usdValue: '75,000 USD',
|
|
691
|
+
isNative: false,
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
id: 'dai',
|
|
695
|
+
address: '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1',
|
|
696
|
+
chainId: 10,
|
|
697
|
+
symbol: 'DAI',
|
|
698
|
+
name: 'Dai Stablecoin',
|
|
699
|
+
decimals: 18,
|
|
700
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
701
|
+
amount: '25,000',
|
|
702
|
+
usdValue: '25,000 USD',
|
|
703
|
+
isNative: false,
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
id: 'wbtc',
|
|
707
|
+
address: '0x68f180fcCe6836688e9084f035309E29Bf0A2095',
|
|
708
|
+
chainId: 10,
|
|
709
|
+
symbol: 'WBTC',
|
|
710
|
+
name: 'Wrapped BTC',
|
|
711
|
+
decimals: 8,
|
|
712
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
713
|
+
amount: '1.5',
|
|
714
|
+
usdValue: '100,000 USD',
|
|
715
|
+
isNative: false,
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
id: 'uni',
|
|
719
|
+
address: '0x6fd9d7AD17242c41f7131d257212c54A0e816691',
|
|
720
|
+
chainId: 10,
|
|
721
|
+
symbol: 'UNI',
|
|
722
|
+
name: 'Uniswap',
|
|
723
|
+
decimals: 18,
|
|
724
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
725
|
+
amount: '5,000',
|
|
726
|
+
usdValue: '50,000 USD',
|
|
727
|
+
isNative: false,
|
|
728
|
+
},
|
|
729
|
+
],
|
|
730
|
+
9745: [
|
|
731
|
+
{
|
|
732
|
+
id: 'xpl',
|
|
733
|
+
address: null,
|
|
734
|
+
chainId: 9745,
|
|
735
|
+
symbol: 'XPL',
|
|
736
|
+
name: 'Plasma',
|
|
737
|
+
decimals: 18,
|
|
738
|
+
iconUrl: '',
|
|
739
|
+
amount: '38.80',
|
|
740
|
+
usdValue: '150,000 USD',
|
|
741
|
+
isNative: true,
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
id: 'usdt0',
|
|
745
|
+
address: '0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
|
|
746
|
+
chainId: 9745,
|
|
747
|
+
symbol: 'USD₮0',
|
|
748
|
+
name: 'USD₮0',
|
|
749
|
+
decimals: 6,
|
|
750
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
751
|
+
amount: '75,000',
|
|
752
|
+
usdValue: '75,000 USD',
|
|
753
|
+
isNative: false,
|
|
754
|
+
},
|
|
755
|
+
// No canonical WETH/USDC/DAI/WBTC/UNI deployment on Plasma in this mock set
|
|
756
|
+
],
|
|
757
|
+
42220: [
|
|
758
|
+
{
|
|
759
|
+
id: 'celo',
|
|
760
|
+
address: null,
|
|
761
|
+
chainId: 42220,
|
|
762
|
+
symbol: 'CELO',
|
|
763
|
+
name: 'Celo',
|
|
764
|
+
decimals: 18,
|
|
765
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/11090/large/InjXBNx9_400x400.jpg',
|
|
766
|
+
amount: '38.80',
|
|
767
|
+
usdValue: '150,000 USD',
|
|
768
|
+
isNative: true,
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
id: 'weth',
|
|
772
|
+
address: '0xD221812de1BD094f35587EE8E174B07B6167D9Af',
|
|
773
|
+
chainId: 42220,
|
|
774
|
+
symbol: 'WETH',
|
|
775
|
+
name: 'Wrapped Ether',
|
|
776
|
+
decimals: 18,
|
|
777
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
778
|
+
amount: '38.80',
|
|
779
|
+
usdValue: '150,000 USD',
|
|
780
|
+
isNative: true,
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
id: 'usdc',
|
|
784
|
+
address: '0xcebA9300f2b948710d2653dD7B07f33A8B32118C',
|
|
785
|
+
chainId: 42220,
|
|
786
|
+
symbol: 'USDC',
|
|
787
|
+
name: 'USD Coin',
|
|
788
|
+
decimals: 6,
|
|
789
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
790
|
+
amount: '150,000',
|
|
791
|
+
usdValue: '150,000 USD',
|
|
792
|
+
isNative: false,
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
id: 'usdt',
|
|
796
|
+
address: '0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e',
|
|
797
|
+
chainId: 42220,
|
|
798
|
+
symbol: 'USD₮',
|
|
799
|
+
name: 'Tether USD',
|
|
800
|
+
decimals: 6,
|
|
801
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
802
|
+
amount: '75,000',
|
|
803
|
+
usdValue: '75,000 USD',
|
|
804
|
+
isNative: false,
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
id: 'dai',
|
|
808
|
+
address: '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1',
|
|
809
|
+
chainId: 42220,
|
|
810
|
+
symbol: 'DAI',
|
|
811
|
+
name: 'Dai Stablecoin',
|
|
812
|
+
decimals: 18,
|
|
813
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
814
|
+
amount: '25,000',
|
|
815
|
+
usdValue: '25,000 USD',
|
|
816
|
+
isNative: false,
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: 'wbtc',
|
|
820
|
+
address: '0xD629eb00dEced2a080B7EC630eF6aC117e614f1b',
|
|
821
|
+
chainId: 42220,
|
|
822
|
+
symbol: 'WBTC',
|
|
823
|
+
name: 'Wrapped BTC',
|
|
824
|
+
decimals: 18,
|
|
825
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
826
|
+
amount: '1.5',
|
|
827
|
+
usdValue: '100,000 USD',
|
|
828
|
+
isNative: false,
|
|
829
|
+
},
|
|
830
|
+
// {
|
|
831
|
+
// id: 'uni',
|
|
832
|
+
// address: '0x6fd9d7AD17242c41f7131d257212c54A0e816691',
|
|
833
|
+
// chainId: 42220,
|
|
834
|
+
// symbol: 'UNI',
|
|
835
|
+
// name: 'Uniswap',
|
|
836
|
+
// decimals: 18,
|
|
837
|
+
// iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
838
|
+
// amount: '5,000',
|
|
839
|
+
// usdValue: '50,000 USD',
|
|
840
|
+
// isNative: false,
|
|
841
|
+
// },
|
|
842
|
+
],
|
|
843
|
+
42161: [
|
|
844
|
+
{
|
|
845
|
+
id: 'eth',
|
|
846
|
+
address: null,
|
|
847
|
+
chainId: 42161,
|
|
848
|
+
symbol: 'ETH',
|
|
849
|
+
name: 'Ether',
|
|
850
|
+
decimals: 18,
|
|
851
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
852
|
+
amount: '38.80',
|
|
853
|
+
usdValue: '150,000 USD',
|
|
854
|
+
isNative: true,
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
id: 'weth',
|
|
858
|
+
address: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
859
|
+
chainId: 42161,
|
|
860
|
+
symbol: 'WETH',
|
|
861
|
+
name: 'Wrapped Ether',
|
|
862
|
+
decimals: 18,
|
|
863
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
864
|
+
amount: '38.80',
|
|
865
|
+
usdValue: '150,000 USD',
|
|
866
|
+
isNative: true,
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
id: 'usdc',
|
|
870
|
+
address: '0xaf88d065e77c8cC2239327C5EDb3A432268e5831',
|
|
871
|
+
chainId: 42161,
|
|
872
|
+
symbol: 'USDC',
|
|
873
|
+
name: 'USD Coin',
|
|
874
|
+
decimals: 6,
|
|
875
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
876
|
+
amount: '150,000',
|
|
877
|
+
usdValue: '150,000 USD',
|
|
878
|
+
isNative: false,
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
id: 'usdt',
|
|
882
|
+
address: '0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9',
|
|
883
|
+
chainId: 42161,
|
|
884
|
+
symbol: 'USD₮0',
|
|
885
|
+
name: 'USD₮0',
|
|
886
|
+
decimals: 6,
|
|
887
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
888
|
+
amount: '75,000',
|
|
889
|
+
usdValue: '75,000 USD',
|
|
890
|
+
isNative: false,
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
id: 'dai',
|
|
894
|
+
address: '0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1',
|
|
895
|
+
chainId: 42161,
|
|
896
|
+
symbol: 'DAI',
|
|
897
|
+
name: 'Dai Stablecoin',
|
|
898
|
+
decimals: 18,
|
|
899
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
900
|
+
amount: '25,000',
|
|
901
|
+
usdValue: '25,000 USD',
|
|
902
|
+
isNative: false,
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
id: 'wbtc',
|
|
906
|
+
address: '0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f',
|
|
907
|
+
chainId: 42161,
|
|
908
|
+
symbol: 'WBTC',
|
|
909
|
+
name: 'Wrapped BTC',
|
|
910
|
+
decimals: 8,
|
|
911
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
912
|
+
amount: '1.5',
|
|
913
|
+
usdValue: '100,000 USD',
|
|
914
|
+
isNative: false,
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
id: 'uni',
|
|
918
|
+
address: '0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0',
|
|
919
|
+
chainId: 42161,
|
|
920
|
+
symbol: 'UNI',
|
|
921
|
+
name: 'Uniswap',
|
|
922
|
+
decimals: 18,
|
|
923
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
924
|
+
amount: '5,000',
|
|
925
|
+
usdValue: '50,000 USD',
|
|
926
|
+
isNative: false,
|
|
927
|
+
},
|
|
928
|
+
],
|
|
929
|
+
43114: [
|
|
930
|
+
{
|
|
931
|
+
id: 'avax',
|
|
932
|
+
address: null,
|
|
933
|
+
chainId: 43114,
|
|
934
|
+
symbol: 'AVAX',
|
|
935
|
+
name: 'Avalanche',
|
|
936
|
+
decimals: 18,
|
|
937
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/avalanche-avax.png',
|
|
938
|
+
amount: '38.80',
|
|
939
|
+
usdValue: '150,000 USD',
|
|
940
|
+
isNative: true,
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
id: 'weth',
|
|
944
|
+
address: '0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB',
|
|
945
|
+
chainId: 43114,
|
|
946
|
+
symbol: 'WETH',
|
|
947
|
+
name: 'Wrapped Ether',
|
|
948
|
+
decimals: 18,
|
|
949
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
950
|
+
amount: '38.80',
|
|
951
|
+
usdValue: '150,000 USD',
|
|
952
|
+
isNative: true,
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
id: 'usdc',
|
|
956
|
+
address: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E',
|
|
957
|
+
chainId: 43114,
|
|
958
|
+
symbol: 'USDC',
|
|
959
|
+
name: 'USD Coin',
|
|
960
|
+
decimals: 6,
|
|
961
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
962
|
+
amount: '150,000',
|
|
963
|
+
usdValue: '150,000 USD',
|
|
964
|
+
isNative: false,
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
id: 'usdt',
|
|
968
|
+
address: '0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7',
|
|
969
|
+
chainId: 43114,
|
|
970
|
+
symbol: 'USDt',
|
|
971
|
+
name: 'TetherToken',
|
|
972
|
+
decimals: 6,
|
|
973
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
974
|
+
amount: '75,000',
|
|
975
|
+
usdValue: '75,000 USD',
|
|
976
|
+
isNative: false,
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
id: 'dai',
|
|
980
|
+
address: '0xd586E7F844cEa2F87f50152665BCbc2C279D8d70',
|
|
981
|
+
chainId: 43114,
|
|
982
|
+
symbol: 'DAI.e',
|
|
983
|
+
name: 'Dai Stablecoin',
|
|
984
|
+
decimals: 18,
|
|
985
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
986
|
+
amount: '25,000',
|
|
987
|
+
usdValue: '25,000 USD',
|
|
988
|
+
isNative: false,
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
id: 'wbtc',
|
|
992
|
+
address: '0x50b7545627a5162F82A992c33b87aDc75187B218',
|
|
993
|
+
chainId: 43114,
|
|
994
|
+
symbol: 'WBTC.e',
|
|
995
|
+
name: 'Wrapped BTC',
|
|
996
|
+
decimals: 8,
|
|
997
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
998
|
+
amount: '1.5',
|
|
999
|
+
usdValue: '100,000 USD',
|
|
1000
|
+
isNative: false,
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
id: 'uni',
|
|
1004
|
+
address: '0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580',
|
|
1005
|
+
chainId: 43114,
|
|
1006
|
+
symbol: 'UNI.e',
|
|
1007
|
+
name: 'Uniswap',
|
|
1008
|
+
decimals: 18,
|
|
1009
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/12504/small/uniswap-uni.png',
|
|
1010
|
+
amount: '5,000',
|
|
1011
|
+
usdValue: '50,000 USD',
|
|
1012
|
+
isNative: false,
|
|
1013
|
+
},
|
|
1014
|
+
],
|
|
1015
|
+
59144: [
|
|
1016
|
+
{
|
|
1017
|
+
id: 'eth',
|
|
1018
|
+
address: null,
|
|
1019
|
+
chainId: 59144,
|
|
1020
|
+
symbol: 'ETH',
|
|
1021
|
+
name: 'Ether',
|
|
1022
|
+
decimals: 18,
|
|
1023
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1024
|
+
amount: '38.80',
|
|
1025
|
+
usdValue: '150,000 USD',
|
|
1026
|
+
isNative: true,
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
id: 'weth',
|
|
1030
|
+
address: '0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f',
|
|
1031
|
+
chainId: 59144,
|
|
1032
|
+
symbol: 'WETH',
|
|
1033
|
+
name: 'Wrapped Ether',
|
|
1034
|
+
decimals: 18,
|
|
1035
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1036
|
+
amount: '38.80',
|
|
1037
|
+
usdValue: '150,000 USD',
|
|
1038
|
+
isNative: false,
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
id: 'usdc',
|
|
1042
|
+
address: '0x176211869cA2b568f2A7D4EE941E073a821EE1ff',
|
|
1043
|
+
chainId: 59144,
|
|
1044
|
+
symbol: 'USDC',
|
|
1045
|
+
name: 'USD Coin',
|
|
1046
|
+
decimals: 6,
|
|
1047
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
1048
|
+
amount: '150,000',
|
|
1049
|
+
usdValue: '150,000 USD',
|
|
1050
|
+
isNative: false,
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
id: 'usdt',
|
|
1054
|
+
address: '0xA219439258ca9da29E9Cc4cE5596924745e12B93',
|
|
1055
|
+
chainId: 59144,
|
|
1056
|
+
symbol: 'USDT',
|
|
1057
|
+
name: 'Tether USD',
|
|
1058
|
+
decimals: 6,
|
|
1059
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
1060
|
+
amount: '75,000',
|
|
1061
|
+
usdValue: '75,000 USD',
|
|
1062
|
+
isNative: false,
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
id: 'dai',
|
|
1066
|
+
address: '0x4AF15ec2A0BD43Db75dd04E62FAA3B8EF36b00d5',
|
|
1067
|
+
chainId: 59144,
|
|
1068
|
+
symbol: 'DAI',
|
|
1069
|
+
name: 'Dai Stablecoin',
|
|
1070
|
+
decimals: 18,
|
|
1071
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
1072
|
+
amount: '25,000',
|
|
1073
|
+
usdValue: '25,000 USD',
|
|
1074
|
+
isNative: false,
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
id: 'wbtc',
|
|
1078
|
+
address: '0x3aAB2285ddcDdaD8edf438C1bAB47e1a9D05a9b4',
|
|
1079
|
+
chainId: 59144,
|
|
1080
|
+
symbol: 'WBTC',
|
|
1081
|
+
name: 'Wrapped BTC',
|
|
1082
|
+
decimals: 8,
|
|
1083
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
1084
|
+
amount: '1.5',
|
|
1085
|
+
usdValue: '100,000 USD',
|
|
1086
|
+
isNative: false,
|
|
1087
|
+
},
|
|
1088
|
+
// UNI has no canonical Linea deployment in this mock set
|
|
1089
|
+
],
|
|
1090
|
+
80094: [
|
|
1091
|
+
{
|
|
1092
|
+
id: 'bera',
|
|
1093
|
+
address: null,
|
|
1094
|
+
chainId: 80094,
|
|
1095
|
+
symbol: 'BERA',
|
|
1096
|
+
name: 'Berachain',
|
|
1097
|
+
decimals: 18,
|
|
1098
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/36417/large/bera.png',
|
|
1099
|
+
amount: '38.80',
|
|
1100
|
+
usdValue: '150,000 USD',
|
|
1101
|
+
isNative: true,
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
id: 'weth',
|
|
1105
|
+
address: '0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590',
|
|
1106
|
+
chainId: 80094,
|
|
1107
|
+
symbol: 'WETH',
|
|
1108
|
+
name: 'Wrapped Ether',
|
|
1109
|
+
decimals: 18,
|
|
1110
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1111
|
+
amount: '38.80',
|
|
1112
|
+
usdValue: '150,000 USD',
|
|
1113
|
+
isNative: false,
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
id: 'usdc',
|
|
1117
|
+
address: '0x549943e04f40284185054145c6E4e9568C1D3241',
|
|
1118
|
+
chainId: 80094,
|
|
1119
|
+
symbol: 'USDC.e',
|
|
1120
|
+
name: 'Bridged USDC (Stargate)',
|
|
1121
|
+
decimals: 6,
|
|
1122
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
1123
|
+
amount: '150,000',
|
|
1124
|
+
usdValue: '150,000 USD',
|
|
1125
|
+
isNative: false,
|
|
1126
|
+
},
|
|
1127
|
+
// USDT/DAI/WBTC/UNI omitted — no confirmed canonical address in this mock set
|
|
1128
|
+
],
|
|
1129
|
+
81457: [
|
|
1130
|
+
{
|
|
1131
|
+
id: 'eth',
|
|
1132
|
+
address: null,
|
|
1133
|
+
chainId: 81457,
|
|
1134
|
+
symbol: 'ETH',
|
|
1135
|
+
name: 'Ether',
|
|
1136
|
+
decimals: 18,
|
|
1137
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1138
|
+
amount: '38.80',
|
|
1139
|
+
usdValue: '150,000 USD',
|
|
1140
|
+
isNative: true,
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
id: 'weth',
|
|
1144
|
+
address: '0x4300000000000000000000000000000000000004',
|
|
1145
|
+
chainId: 81457,
|
|
1146
|
+
symbol: 'WETH',
|
|
1147
|
+
name: 'Wrapped Ether',
|
|
1148
|
+
decimals: 18,
|
|
1149
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1150
|
+
amount: '38.80',
|
|
1151
|
+
usdValue: '150,000 USD',
|
|
1152
|
+
isNative: false,
|
|
1153
|
+
},
|
|
1154
|
+
// Blast's canonical stable is USDB (0x4300000000000000000000000000000000000003);
|
|
1155
|
+
// USDC/USDT/DAI/WBTC/UNI omitted in this mock set
|
|
1156
|
+
],
|
|
1157
|
+
534352: [
|
|
1158
|
+
{
|
|
1159
|
+
id: 'eth',
|
|
1160
|
+
address: null,
|
|
1161
|
+
chainId: 534352,
|
|
1162
|
+
symbol: 'ETH',
|
|
1163
|
+
name: 'Ether',
|
|
1164
|
+
decimals: 18,
|
|
1165
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1166
|
+
amount: '38.80',
|
|
1167
|
+
usdValue: '150,000 USD',
|
|
1168
|
+
isNative: true,
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
id: 'weth',
|
|
1172
|
+
address: '0x5300000000000000000000000000000000000004',
|
|
1173
|
+
chainId: 534352,
|
|
1174
|
+
symbol: 'WETH',
|
|
1175
|
+
name: 'Wrapped Ether',
|
|
1176
|
+
decimals: 18,
|
|
1177
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/279/small/ethereum.png',
|
|
1178
|
+
amount: '38.80',
|
|
1179
|
+
usdValue: '150,000 USD',
|
|
1180
|
+
isNative: false,
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
id: 'usdc',
|
|
1184
|
+
address: '0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4',
|
|
1185
|
+
chainId: 534352,
|
|
1186
|
+
symbol: 'USDC',
|
|
1187
|
+
name: 'USD Coin',
|
|
1188
|
+
decimals: 6,
|
|
1189
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png',
|
|
1190
|
+
amount: '150,000',
|
|
1191
|
+
usdValue: '150,000 USD',
|
|
1192
|
+
isNative: false,
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
id: 'usdt',
|
|
1196
|
+
address: '0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df',
|
|
1197
|
+
chainId: 534352,
|
|
1198
|
+
symbol: 'USDT',
|
|
1199
|
+
name: 'Tether USD',
|
|
1200
|
+
decimals: 6,
|
|
1201
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/325/small/Tether.png',
|
|
1202
|
+
amount: '75,000',
|
|
1203
|
+
usdValue: '75,000 USD',
|
|
1204
|
+
isNative: false,
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
id: 'dai',
|
|
1208
|
+
address: '0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97',
|
|
1209
|
+
chainId: 534352,
|
|
1210
|
+
symbol: 'DAI',
|
|
1211
|
+
name: 'Dai Stablecoin',
|
|
1212
|
+
decimals: 18,
|
|
1213
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/9956/small/Badge_Dai.png',
|
|
1214
|
+
amount: '25,000',
|
|
1215
|
+
usdValue: '25,000 USD',
|
|
1216
|
+
isNative: false,
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
id: 'wbtc',
|
|
1220
|
+
address: '0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1',
|
|
1221
|
+
chainId: 534352,
|
|
1222
|
+
symbol: 'WBTC',
|
|
1223
|
+
name: 'Wrapped BTC',
|
|
1224
|
+
decimals: 8,
|
|
1225
|
+
iconUrl: 'https://assets.coingecko.com/coins/images/7598/small/wrapped_bitcoin_wbtc.png',
|
|
1226
|
+
amount: '1.5',
|
|
1227
|
+
usdValue: '100,000 USD',
|
|
1228
|
+
isNative: false,
|
|
1229
|
+
},
|
|
1230
|
+
// UNI has no canonical Scroll deployment in this mock set
|
|
1231
|
+
],
|
|
335
1232
|
11155111: [
|
|
336
1233
|
{
|
|
337
1234
|
id: 'eth',
|