@rango-dev/provider-walletconnect-2 0.0.0-experimental-936229e8-20251208

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 (43) hide show
  1. package/CHANGELOG.md +240 -0
  2. package/dist/chunk-BPSEZJUF.js +2 -0
  3. package/dist/chunk-BPSEZJUF.js.map +7 -0
  4. package/dist/chunk-DXVBX5XQ.js +2 -0
  5. package/dist/chunk-DXVBX5XQ.js.map +7 -0
  6. package/dist/chunk-RPL2NMJC.js +2 -0
  7. package/dist/chunk-RPL2NMJC.js.map +7 -0
  8. package/dist/constants.d.ts +55 -0
  9. package/dist/cosmos-I3Z34UI3.js +2 -0
  10. package/dist/cosmos-I3Z34UI3.js.map +7 -0
  11. package/dist/dist-6GI3ECE5.js +139 -0
  12. package/dist/dist-6GI3ECE5.js.map +7 -0
  13. package/dist/evm-MYSQOTV5.js +2 -0
  14. package/dist/evm-MYSQOTV5.js.map +7 -0
  15. package/dist/helpers.d.ts +31 -0
  16. package/dist/index.d.ts +21 -0
  17. package/dist/index.js +2 -0
  18. package/dist/index.js.map +7 -0
  19. package/dist/provider-walletconnect-2.build.json +1 -0
  20. package/dist/session.d.ts +63 -0
  21. package/dist/signer.d.ts +3 -0
  22. package/dist/signers/cosmos.d.ts +14 -0
  23. package/dist/signers/evm.d.ts +15 -0
  24. package/dist/signers/helper.d.ts +2 -0
  25. package/dist/signers/mock.d.ts +2 -0
  26. package/dist/signers/solana.d.ts +14 -0
  27. package/dist/solana-35I33VLX.js +2 -0
  28. package/dist/solana-35I33VLX.js.map +7 -0
  29. package/dist/types.d.ts +24 -0
  30. package/package.json +52 -0
  31. package/readme.md +8 -0
  32. package/src/constants.ts +91 -0
  33. package/src/helpers.ts +242 -0
  34. package/src/index.ts +233 -0
  35. package/src/session.ts +374 -0
  36. package/src/signer.ts +45 -0
  37. package/src/signers/cosmos.ts +248 -0
  38. package/src/signers/evm.ts +163 -0
  39. package/src/signers/helper.ts +77 -0
  40. package/src/signers/mock.ts +3798 -0
  41. package/src/signers/solana.ts +160 -0
  42. package/src/types.ts +30 -0
  43. package/src/wc-types.d.ts +31 -0
@@ -0,0 +1,3798 @@
1
+ import type { BlockchainMeta } from 'rango-types';
2
+
3
+ export const supportedChains: BlockchainMeta[] = [
4
+ {
5
+ name: 'BSC',
6
+ defaultDecimals: 18,
7
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
8
+ feeAssets: [
9
+ {
10
+ blockchain: 'BSC',
11
+ symbol: 'BNB',
12
+ address: null,
13
+ },
14
+ ],
15
+ logo: 'https://api.rango.exchange/blockchains/binance.svg',
16
+ displayName: 'BSC',
17
+ shortName: 'BSC',
18
+ sort: 1,
19
+ color: '#F3BA2F',
20
+ enabled: true,
21
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
22
+ //@ts-ignore
23
+ type: 'EVM',
24
+ chainId: '0x38',
25
+ info: {
26
+ infoType: 'EvmMetaInfo',
27
+ chainName: 'Binance Smart Chain Mainnet',
28
+ nativeCurrency: {
29
+ name: 'BNB',
30
+ symbol: 'BNB',
31
+ decimals: 18,
32
+ },
33
+ rpcUrls: ['https://bsc-dataseed1.ninicoin.io'],
34
+ blockExplorerUrls: ['https://bscscan.com'],
35
+ addressUrl: 'https://bscscan.com/address/{wallet}',
36
+ transactionUrl: 'https://bscscan.com/tx/{txHash}',
37
+ enableGasV2: true,
38
+ },
39
+ },
40
+ {
41
+ name: 'POLYGON',
42
+ defaultDecimals: 18,
43
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
44
+ feeAssets: [
45
+ {
46
+ blockchain: 'POLYGON',
47
+ symbol: 'MATIC',
48
+ address: null,
49
+ },
50
+ ],
51
+ logo: 'https://api.rango.exchange/blockchains/polygon.svg',
52
+ displayName: 'Polygon',
53
+ shortName: 'Polygon',
54
+ sort: 2,
55
+ color: '#8247E5',
56
+ enabled: true,
57
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
58
+ //@ts-ignore
59
+ type: 'EVM',
60
+ chainId: '0x89',
61
+ info: {
62
+ infoType: 'EvmMetaInfo',
63
+ chainName: 'Polygon Mainnet',
64
+ nativeCurrency: {
65
+ name: 'MATIC',
66
+ symbol: 'MATIC',
67
+ decimals: 18,
68
+ },
69
+ rpcUrls: ['https://polygon-rpc.com'],
70
+ blockExplorerUrls: ['https://polygonscan.com'],
71
+ addressUrl: 'https://polygonscan.com/address/{wallet}',
72
+ transactionUrl: 'https://polygonscan.com/tx/{txHash}',
73
+ enableGasV2: true,
74
+ },
75
+ },
76
+ {
77
+ name: 'ETH',
78
+ defaultDecimals: 18,
79
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
80
+ feeAssets: [
81
+ {
82
+ blockchain: 'ETH',
83
+ symbol: 'ETH',
84
+ address: null,
85
+ },
86
+ ],
87
+ logo: 'https://api.rango.exchange/blockchains/ethereum.svg',
88
+ displayName: 'Ethereum',
89
+ shortName: 'ETH',
90
+ sort: 3,
91
+ color: '#ecf0f1',
92
+ enabled: true,
93
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
94
+ //@ts-ignore
95
+ type: 'EVM',
96
+ chainId: '0x1',
97
+ info: {
98
+ infoType: 'EvmMetaInfo',
99
+ chainName: 'Ethereum Mainnet',
100
+ nativeCurrency: {
101
+ name: 'ETH',
102
+ symbol: 'ETH',
103
+ decimals: 18,
104
+ },
105
+ rpcUrls: ['https://rpc.ankr.com/eth'],
106
+ blockExplorerUrls: ['https://etherscan.io'],
107
+ addressUrl: 'https://etherscan.io/address/{wallet}',
108
+ transactionUrl: 'https://etherscan.io/tx/{txHash}',
109
+ enableGasV2: true,
110
+ },
111
+ },
112
+ {
113
+ name: 'OSMOSIS',
114
+ defaultDecimals: 6,
115
+ addressPatterns: ['^(osmo1)[0-9a-z]{38}$'],
116
+ feeAssets: [
117
+ {
118
+ blockchain: 'OSMOSIS',
119
+ symbol: 'OSMO',
120
+ address: null,
121
+ },
122
+ ],
123
+ logo: 'https://api.rango.exchange/blockchains/osmosis.svg',
124
+ displayName: 'Osmosis',
125
+ shortName: 'Osmosis',
126
+ sort: 4,
127
+ color: '#7901B4',
128
+ enabled: true,
129
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
130
+ //@ts-ignore
131
+ type: 'COSMOS',
132
+ chainId: 'osmosis-1',
133
+ info: {
134
+ infoType: 'CosmosMetaInfo',
135
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
136
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
137
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
138
+ experimental: false,
139
+ rpc: 'https://rpc-osmosis.keplr.app',
140
+ rest: 'https://lcd-osmosis.keplr.app',
141
+ cosmostationLcdUrl: 'https://lcd-osmosis.cosmostation.io',
142
+ cosmostationApiUrl: 'https://api-osmosis.cosmostation.io',
143
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
144
+ mintScanName: 'osmosis',
145
+ chainName: 'Osmosis',
146
+ stakeCurrency: {
147
+ coinDenom: 'OSMO',
148
+ coinMinimalDenom: 'uosmo',
149
+ coinDecimals: 6,
150
+ coinGeckoId: 'pool:uosmo',
151
+ coinImageUrl: '/tokens/blockchain/osmosis.svg',
152
+ },
153
+ bip44: {
154
+ coinType: 118,
155
+ },
156
+ bech32Config: {
157
+ bech32PrefixAccAddr: 'osmo',
158
+ bech32PrefixAccPub: 'osmopub',
159
+ bech32PrefixValAddr: 'osmovaloper',
160
+ bech32PrefixValPub: 'osmovaloperpub',
161
+ bech32PrefixConsAddr: 'osmovalcons',
162
+ bech32PrefixConsPub: 'osmovalconspub',
163
+ },
164
+ currencies: [
165
+ {
166
+ coinDenom: 'OSMO',
167
+ coinMinimalDenom: 'uosmo',
168
+ coinDecimals: 6,
169
+ coinGeckoId: 'pool:uosmo',
170
+ coinImageUrl: '/tokens/blockchain/osmosis.svg',
171
+ },
172
+ {
173
+ coinDenom: 'ION',
174
+ coinMinimalDenom: 'uion',
175
+ coinDecimals: 6,
176
+ coinGeckoId: 'pool:uion',
177
+ coinImageUrl: '/tokens/blockchain/ion.png',
178
+ },
179
+ ],
180
+ feeCurrencies: [
181
+ {
182
+ coinDenom: 'OSMO',
183
+ coinMinimalDenom: 'uosmo',
184
+ coinDecimals: 6,
185
+ coinGeckoId: 'pool:uosmo',
186
+ coinImageUrl: '/tokens/blockchain/osmosis.svg',
187
+ },
188
+ ],
189
+ features: ['stargate', 'ibc-transfer'],
190
+ explorerUrlToTx: 'https://www.mintscan.io/osmosis/txs/{txHash}',
191
+ gasPriceStep: {
192
+ low: 0,
193
+ average: 0.025,
194
+ high: 0.04,
195
+ },
196
+ },
197
+ },
198
+ {
199
+ name: 'JUNO',
200
+ defaultDecimals: 6,
201
+ addressPatterns: ['^(juno1)[0-9a-z]{38}$'],
202
+ feeAssets: [
203
+ {
204
+ blockchain: 'JUNO',
205
+ symbol: 'JUNO',
206
+ address: null,
207
+ },
208
+ ],
209
+ logo: 'https://api.rango.exchange/blockchains/juno.svg',
210
+ displayName: 'Juno',
211
+ shortName: 'Juno',
212
+ sort: 5,
213
+ color: '#f0827d',
214
+ enabled: true,
215
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
216
+ //@ts-ignore
217
+ type: 'COSMOS',
218
+ chainId: 'juno-1',
219
+ info: {
220
+ infoType: 'CosmosMetaInfo',
221
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
222
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
223
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
224
+ experimental: false,
225
+ rpc: 'https://rpc-juno.itastakers.com:443/',
226
+ rest: 'https://lcd-juno.keplr.app',
227
+ cosmostationLcdUrl: 'https://lcd-juno.cosmostation.io',
228
+ cosmostationApiUrl: 'https://api-juno.cosmostation.io',
229
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
230
+ mintScanName: 'juno',
231
+ chainName: 'Juno',
232
+ stakeCurrency: {
233
+ coinDenom: 'JUNO',
234
+ coinMinimalDenom: 'ujuno',
235
+ coinDecimals: 6,
236
+ coinGeckoId: 'juno-network',
237
+ coinImageUrl: '/tokens/blockchain/JUNO.png',
238
+ },
239
+ bip44: {
240
+ coinType: 118,
241
+ },
242
+ bech32Config: {
243
+ bech32PrefixAccAddr: 'juno',
244
+ bech32PrefixAccPub: 'junopub',
245
+ bech32PrefixValAddr: 'junovaloper',
246
+ bech32PrefixValPub: 'junovaloperpub',
247
+ bech32PrefixConsAddr: 'junovalcons',
248
+ bech32PrefixConsPub: 'junovalconspub',
249
+ },
250
+ currencies: [
251
+ {
252
+ coinDenom: 'JUNO',
253
+ coinMinimalDenom: 'ujuno',
254
+ coinDecimals: 6,
255
+ coinGeckoId: 'juno-network',
256
+ coinImageUrl: '/tokens/blockchain/JUNO.png',
257
+ },
258
+ ],
259
+ feeCurrencies: [
260
+ {
261
+ coinDenom: 'JUNO',
262
+ coinMinimalDenom: 'ujuno',
263
+ coinDecimals: 6,
264
+ coinGeckoId: 'juno-network',
265
+ coinImageUrl: '/tokens/blockchain/JUNO.png',
266
+ },
267
+ ],
268
+ features: ['stargate', 'ibc-transfer'],
269
+ explorerUrlToTx: 'https://www.mintscan.io/juno/txs/{txHash}',
270
+ gasPriceStep: {
271
+ low: 0.001,
272
+ average: 0.0025,
273
+ high: 0.004,
274
+ },
275
+ },
276
+ },
277
+ {
278
+ name: 'AVAX_CCHAIN',
279
+ defaultDecimals: 18,
280
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
281
+ feeAssets: [
282
+ {
283
+ blockchain: 'AVAX_CCHAIN',
284
+ symbol: 'AVAX',
285
+ address: null,
286
+ },
287
+ ],
288
+ logo: 'https://api.rango.exchange/blockchains/avax_cchain.svg',
289
+ displayName: 'Avalanche',
290
+ shortName: 'Avax',
291
+ sort: 6,
292
+ color: '#e84142',
293
+ enabled: true,
294
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
295
+ //@ts-ignore
296
+ type: 'EVM',
297
+ chainId: '0xa86a',
298
+ info: {
299
+ infoType: 'EvmMetaInfo',
300
+ chainName: 'Avalanche C-Chain',
301
+ nativeCurrency: {
302
+ name: 'AVAX',
303
+ symbol: 'AVAX',
304
+ decimals: 18,
305
+ },
306
+ rpcUrls: ['https://api.avax.network/ext/bc/C/rpc'],
307
+ blockExplorerUrls: ['https://snowtrace.io'],
308
+ addressUrl: 'https://snowtrace.io/address/{wallet}',
309
+ transactionUrl: 'https://snowtrace.io/tx/{txHash}',
310
+ enableGasV2: true,
311
+ },
312
+ },
313
+ {
314
+ name: 'ARBITRUM',
315
+ defaultDecimals: 18,
316
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
317
+ feeAssets: [
318
+ {
319
+ blockchain: 'ARBITRUM',
320
+ symbol: 'ETH',
321
+ address: null,
322
+ },
323
+ ],
324
+ logo: 'https://api.rango.exchange/blockchains/arbitrum.svg',
325
+ displayName: 'Arbitrum',
326
+ shortName: 'Arbitrum',
327
+ sort: 7,
328
+ color: '#28a0f0',
329
+ enabled: true,
330
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
331
+ //@ts-ignore
332
+ type: 'EVM',
333
+ chainId: '0xa4b1',
334
+ info: {
335
+ infoType: 'EvmMetaInfo',
336
+ chainName: 'Arbitrum One',
337
+ nativeCurrency: {
338
+ name: 'ETH',
339
+ symbol: 'ETH',
340
+ decimals: 18,
341
+ },
342
+ rpcUrls: ['https://arb1.arbitrum.io/rpc'],
343
+ blockExplorerUrls: ['https://arbiscan.io'],
344
+ addressUrl: 'https://arbiscan.io/address/{wallet}',
345
+ transactionUrl: 'https://arbiscan.io/tx/{txHash}',
346
+ enableGasV2: true,
347
+ },
348
+ },
349
+ {
350
+ name: 'COSMOS',
351
+ defaultDecimals: 6,
352
+ addressPatterns: ['^(cosmos1)[0-9a-z]{38}$'],
353
+ feeAssets: [
354
+ {
355
+ blockchain: 'COSMOS',
356
+ symbol: 'ATOM',
357
+ address: null,
358
+ },
359
+ ],
360
+ logo: 'https://api.rango.exchange/blockchains/cosmos.svg',
361
+ displayName: 'Cosmos',
362
+ shortName: 'Cosmos',
363
+ sort: 8,
364
+ color: '#2E3148',
365
+ enabled: true,
366
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
367
+ //@ts-ignore
368
+ type: 'COSMOS',
369
+ chainId: 'cosmoshub-4',
370
+ info: {
371
+ infoType: 'CosmosMetaInfo',
372
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
373
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
374
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
375
+ experimental: false,
376
+ rpc: 'https://cosmos-rpc.polkachu.com',
377
+ rest: 'https://lcd-cosmoshub.keplr.app',
378
+ cosmostationLcdUrl: 'https://lcd-cosmos.cosmostation.io',
379
+ cosmostationApiUrl: 'https://api-cosmos.cosmostation.io',
380
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
381
+ mintScanName: 'cosmos',
382
+ chainName: 'Cosmos',
383
+ stakeCurrency: {
384
+ coinDenom: 'ATOM',
385
+ coinMinimalDenom: 'uatom',
386
+ coinDecimals: 6,
387
+ coinGeckoId: 'cosmos',
388
+ coinImageUrl: '/tokens/blockchain/cosmos.svg',
389
+ },
390
+ bip44: {
391
+ coinType: 118,
392
+ },
393
+ bech32Config: {
394
+ bech32PrefixAccAddr: 'cosmos',
395
+ bech32PrefixAccPub: 'cosmospub',
396
+ bech32PrefixValAddr: 'cosmosvaloper',
397
+ bech32PrefixValPub: 'cosmosvaloperpub',
398
+ bech32PrefixConsAddr: 'cosmosvalcons',
399
+ bech32PrefixConsPub: 'cosmosvalconspub',
400
+ },
401
+ currencies: [
402
+ {
403
+ coinDenom: 'ATOM',
404
+ coinMinimalDenom: 'uatom',
405
+ coinDecimals: 6,
406
+ coinGeckoId: 'cosmos',
407
+ coinImageUrl: '/tokens/blockchain/cosmos.svg',
408
+ },
409
+ ],
410
+ feeCurrencies: [
411
+ {
412
+ coinDenom: 'ATOM',
413
+ coinMinimalDenom: 'uatom',
414
+ coinDecimals: 6,
415
+ coinGeckoId: 'cosmos',
416
+ coinImageUrl: '/tokens/blockchain/cosmos.svg',
417
+ },
418
+ ],
419
+ features: ['stargate', 'ibc-transfer'],
420
+ explorerUrlToTx: 'https://www.mintscan.io/cosmos/txs/{txHash}',
421
+ gasPriceStep: {
422
+ low: 0.01,
423
+ average: 0.025,
424
+ high: 0.04,
425
+ },
426
+ },
427
+ },
428
+ {
429
+ name: 'TERRA_CLASSIC',
430
+ defaultDecimals: 6,
431
+ addressPatterns: ['^(terra1)[0-9a-z]{38}$'],
432
+ feeAssets: [
433
+ {
434
+ blockchain: 'TERRA_CLASSIC',
435
+ symbol: 'LUNC',
436
+ address: null,
437
+ },
438
+ {
439
+ blockchain: 'TERRA_CLASSIC',
440
+ symbol: 'UST',
441
+ address: null,
442
+ },
443
+ {
444
+ blockchain: 'TERRA_CLASSIC',
445
+ symbol: 'EUT',
446
+ address: null,
447
+ },
448
+ {
449
+ blockchain: 'TERRA_CLASSIC',
450
+ symbol: 'KRT',
451
+ address: null,
452
+ },
453
+ ],
454
+ logo: 'https://api.rango.exchange/blockchains/terraclassic.svg',
455
+ displayName: 'Terra',
456
+ shortName: 'Terra',
457
+ sort: 8,
458
+ color: '#5493F7',
459
+ enabled: false,
460
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
461
+ //@ts-ignore
462
+ type: 'COSMOS',
463
+ chainId: 'columbus-5',
464
+ info: {
465
+ infoType: 'CosmosMetaInfo',
466
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
467
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
468
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
469
+ experimental: true,
470
+ rpc: 'https://rpc-columbus.keplr.app',
471
+ rest: 'https://lcd-columbus.keplr.app',
472
+ cosmostationLcdUrl: null,
473
+ cosmostationApiUrl: 'https://terra-classic-lcd.publicnode.com',
474
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
475
+ mintScanName: null,
476
+ chainName: 'Terra',
477
+ stakeCurrency: {
478
+ coinDenom: 'LUNC',
479
+ coinMinimalDenom: 'uluna',
480
+ coinDecimals: 6,
481
+ coinGeckoId: 'terra-luna',
482
+ coinImageUrl: '/tokens/blockchain/LUNA.png',
483
+ },
484
+ bip44: {
485
+ coinType: 330,
486
+ },
487
+ bech32Config: {
488
+ bech32PrefixAccAddr: 'terra',
489
+ bech32PrefixAccPub: 'terrapub',
490
+ bech32PrefixValAddr: 'terravaloper',
491
+ bech32PrefixValPub: 'terravaloperpub',
492
+ bech32PrefixConsAddr: 'terravalcons',
493
+ bech32PrefixConsPub: 'terravalconspub',
494
+ },
495
+ currencies: [
496
+ {
497
+ coinDenom: 'LUNC',
498
+ coinMinimalDenom: 'uluna',
499
+ coinDecimals: 6,
500
+ coinGeckoId: 'terra-luna',
501
+ coinImageUrl: '/tokens/blockchain/LUNA.png',
502
+ },
503
+ {
504
+ coinDenom: 'UST',
505
+ coinMinimalDenom: 'uusd',
506
+ coinDecimals: 6,
507
+ coinGeckoId: 'terrausd',
508
+ coinImageUrl: '/tokens/blockchain/UST.png',
509
+ },
510
+ ],
511
+ feeCurrencies: [
512
+ {
513
+ coinDenom: 'LUNC',
514
+ coinMinimalDenom: 'uluna',
515
+ coinDecimals: 6,
516
+ coinGeckoId: 'terra-luna',
517
+ coinImageUrl: '/tokens/blockchain/LUNA.png',
518
+ },
519
+ {
520
+ coinDenom: 'UST',
521
+ coinMinimalDenom: 'uusd',
522
+ coinDecimals: 6,
523
+ coinGeckoId: 'terrausd',
524
+ coinImageUrl: '/tokens/blockchain/UST.png',
525
+ },
526
+ ],
527
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
528
+ explorerUrlToTx: 'https://finder.terra.money/columbus-5/tx/{txHash}',
529
+ gasPriceStep: {
530
+ low: 0.0075,
531
+ average: 0.0075,
532
+ high: 0.0075,
533
+ },
534
+ },
535
+ },
536
+ {
537
+ name: 'FANTOM',
538
+ defaultDecimals: 18,
539
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
540
+ feeAssets: [
541
+ {
542
+ blockchain: 'FANTOM',
543
+ symbol: 'FTM',
544
+ address: null,
545
+ },
546
+ ],
547
+ logo: 'https://api.rango.exchange/blockchains/fantom.png',
548
+ displayName: 'Fantom',
549
+ shortName: 'Fantom',
550
+ sort: 9,
551
+ color: '#337afe',
552
+ enabled: true,
553
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
554
+ //@ts-ignore
555
+ type: 'EVM',
556
+ chainId: '0xfa',
557
+ info: {
558
+ infoType: 'EvmMetaInfo',
559
+ chainName: 'Fantom Opera',
560
+ nativeCurrency: {
561
+ name: 'FTM',
562
+ symbol: 'FTM',
563
+ decimals: 18,
564
+ },
565
+ rpcUrls: ['https://rpc.ftm.tools'],
566
+ blockExplorerUrls: ['https://ftmscan.com'],
567
+ addressUrl: 'https://ftmscan.com/address/{wallet}',
568
+ transactionUrl: 'https://ftmscan.com/tx/{txHash}',
569
+ enableGasV2: true,
570
+ },
571
+ },
572
+ {
573
+ name: 'OPTIMISM',
574
+ defaultDecimals: 18,
575
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
576
+ feeAssets: [
577
+ {
578
+ blockchain: 'OPTIMISM',
579
+ symbol: 'ETH',
580
+ address: null,
581
+ },
582
+ ],
583
+ logo: 'https://api.rango.exchange/blockchains/optimism.svg',
584
+ displayName: 'Optimism',
585
+ shortName: 'Optimism',
586
+ sort: 10,
587
+ color: '#FF0420',
588
+ enabled: true,
589
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
590
+ //@ts-ignore
591
+ type: 'EVM',
592
+ chainId: '0xa',
593
+ info: {
594
+ infoType: 'EvmMetaInfo',
595
+ chainName: 'Optimism',
596
+ nativeCurrency: {
597
+ name: 'ETH',
598
+ symbol: 'ETH',
599
+ decimals: 18,
600
+ },
601
+ rpcUrls: ['https://mainnet.optimism.io'],
602
+ blockExplorerUrls: ['https://optimistic.etherscan.io'],
603
+ addressUrl: 'https://optimistic.etherscan.io/address/{wallet}',
604
+ transactionUrl: 'https://optimistic.etherscan.io/tx/{txHash}',
605
+ enableGasV2: true,
606
+ },
607
+ },
608
+ {
609
+ name: 'OKC',
610
+ defaultDecimals: 18,
611
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
612
+ feeAssets: [
613
+ {
614
+ blockchain: 'OKC',
615
+ symbol: 'OKT',
616
+ address: null,
617
+ },
618
+ ],
619
+ logo: 'https://api.rango.exchange/blockchains/okx.png',
620
+ displayName: 'OKX Chain (OKC)',
621
+ shortName: 'Okx',
622
+ sort: 11,
623
+ color: '#29a0f0',
624
+ enabled: true,
625
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
626
+ //@ts-ignore
627
+ type: 'EVM',
628
+ chainId: '0x42',
629
+ info: {
630
+ infoType: 'EvmMetaInfo',
631
+ chainName: 'OKX Chain',
632
+ nativeCurrency: {
633
+ name: 'OKT',
634
+ symbol: 'OKT',
635
+ decimals: 18,
636
+ },
637
+ rpcUrls: ['https://exchainrpc.okex.org'],
638
+ blockExplorerUrls: ['https://www.oklink.com/en/okc'],
639
+ addressUrl: 'https://www.oklink.com/en/okc/address/{wallet}',
640
+ transactionUrl: 'https://www.oklink.com/en/okc/tx/{txHash}',
641
+ enableGasV2: true,
642
+ },
643
+ },
644
+ {
645
+ name: 'STARKNET',
646
+ defaultDecimals: 18,
647
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{32,64}$'],
648
+ feeAssets: [
649
+ {
650
+ blockchain: 'STARKNET',
651
+ symbol: 'ETH',
652
+ address:
653
+ '0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7',
654
+ },
655
+ ],
656
+ logo: 'https://api.rango.exchange/blockchains/starknet.svg',
657
+ displayName: 'StarkNet',
658
+ shortName: 'StarkNet',
659
+ sort: 11,
660
+ color: '#708DD2',
661
+ enabled: true,
662
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
663
+ //@ts-ignore
664
+ type: 'STARKNET',
665
+ chainId: '0x534e5f4d41494e',
666
+ info: {
667
+ infoType: 'StarkNetMetaInfo',
668
+ chainName: 'StarkNet Mainnet',
669
+ nativeCurrency: {
670
+ name: 'ETH',
671
+ symbol: 'ETH',
672
+ decimals: 18,
673
+ },
674
+ blockExplorerUrls: ['https://starkscan.co'],
675
+ addressUrl: 'https://starkscan.co/contract/{wallet}',
676
+ transactionUrl: 'https://starkscan.co/tx/{txHash}',
677
+ },
678
+ },
679
+ {
680
+ name: 'SOLANA',
681
+ defaultDecimals: 9,
682
+ addressPatterns: ['^[1-9A-HJ-NP-Za-km-z]{32,44}$'],
683
+ feeAssets: [
684
+ {
685
+ blockchain: 'SOLANA',
686
+ symbol: 'SOL',
687
+ address: null,
688
+ },
689
+ ],
690
+ logo: 'https://api.rango.exchange/blockchains/solana.svg',
691
+ displayName: 'Solana',
692
+ shortName: 'Solana',
693
+ sort: 11,
694
+ color: '#708DD2',
695
+ enabled: true,
696
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
697
+ //@ts-ignore
698
+ type: 'SOLANA',
699
+ chainId: 'mainnet-beta',
700
+ info: null,
701
+ },
702
+ {
703
+ name: 'CRONOS',
704
+ defaultDecimals: 18,
705
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
706
+ feeAssets: [
707
+ {
708
+ blockchain: 'CRONOS',
709
+ symbol: 'CRO',
710
+ address: null,
711
+ },
712
+ ],
713
+ logo: 'https://api.rango.exchange/blockchains/cronos.svg',
714
+ displayName: 'Cronos',
715
+ shortName: 'Cronos',
716
+ sort: 12,
717
+ color: '#1a90ff',
718
+ enabled: true,
719
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
720
+ //@ts-ignore
721
+ type: 'EVM',
722
+ chainId: '0x19',
723
+ info: {
724
+ infoType: 'EvmMetaInfo',
725
+ chainName: 'Cronos Mainnet Beta',
726
+ nativeCurrency: {
727
+ name: 'CRO',
728
+ symbol: 'CRO',
729
+ decimals: 18,
730
+ },
731
+ rpcUrls: ['https://evm.cronos.org'],
732
+ blockExplorerUrls: ['https://cronoscan.com'],
733
+ addressUrl: 'https://cronoscan.com/address/{wallet}',
734
+ transactionUrl: 'https://cronoscan.com/tx/{txHash}',
735
+ enableGasV2: true,
736
+ },
737
+ },
738
+ {
739
+ name: 'MOONRIVER',
740
+ defaultDecimals: 18,
741
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
742
+ feeAssets: [
743
+ {
744
+ blockchain: 'MOONRIVER',
745
+ symbol: 'MOVR',
746
+ address: null,
747
+ },
748
+ ],
749
+ logo: 'https://api.rango.exchange/blockchains/moonriver.svg',
750
+ displayName: 'MoonRiver',
751
+ shortName: 'MoonRiver',
752
+ sort: 13,
753
+ color: '#F3B404',
754
+ enabled: true,
755
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
756
+ //@ts-ignore
757
+ type: 'EVM',
758
+ chainId: '0x505',
759
+ info: {
760
+ infoType: 'EvmMetaInfo',
761
+ chainName: 'MoonRiver',
762
+ nativeCurrency: {
763
+ name: 'MOVR',
764
+ symbol: 'MOVR',
765
+ decimals: 18,
766
+ },
767
+ rpcUrls: ['https://rpc.moonriver.moonbeam.network'],
768
+ blockExplorerUrls: ['https://moonriver.moonscan.io'],
769
+ addressUrl: 'https://moonriver.moonscan.io/address/{wallet}',
770
+ transactionUrl: 'https://moonriver.moonscan.io/tx/{txHash}',
771
+ enableGasV2: true,
772
+ },
773
+ },
774
+ {
775
+ name: 'ZKSYNC',
776
+ defaultDecimals: 18,
777
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
778
+ feeAssets: [
779
+ {
780
+ blockchain: 'ZKSYNC',
781
+ symbol: 'ETH',
782
+ address: null,
783
+ },
784
+ ],
785
+ logo: 'https://api.rango.exchange/blockchains/zksync.png',
786
+ displayName: 'zkSync era',
787
+ shortName: 'zkSync',
788
+ sort: 13,
789
+ color: '#2D2925',
790
+ enabled: true,
791
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
792
+ //@ts-ignore
793
+ type: 'EVM',
794
+ chainId: '0x144',
795
+ info: {
796
+ infoType: 'EvmMetaInfo',
797
+ chainName: 'zkSync',
798
+ nativeCurrency: {
799
+ name: 'ETH',
800
+ symbol: 'ETH',
801
+ decimals: 18,
802
+ },
803
+ rpcUrls: ['https://mainnet.era.zksync.io'],
804
+ blockExplorerUrls: ['https://explorer.zksync.io'],
805
+ addressUrl: 'https://explorer.zksync.io/address/{wallet}',
806
+ transactionUrl: 'https://explorer.zksync.io/tx/{txHash}',
807
+ enableGasV2: true,
808
+ },
809
+ },
810
+ {
811
+ name: 'MOONBEAM',
812
+ defaultDecimals: 18,
813
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
814
+ feeAssets: [
815
+ {
816
+ blockchain: 'MOONBEAM',
817
+ symbol: 'GLMR',
818
+ address: null,
819
+ },
820
+ ],
821
+ logo: 'https://api.rango.exchange/blockchains/moonbeam.png',
822
+ displayName: 'MoonBeam',
823
+ shortName: 'MoonBeam',
824
+ sort: 14,
825
+ color: '#B3206B',
826
+ enabled: true,
827
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
828
+ //@ts-ignore
829
+ type: 'EVM',
830
+ chainId: '0x504',
831
+ info: {
832
+ infoType: 'EvmMetaInfo',
833
+ chainName: 'MoonBeam',
834
+ nativeCurrency: {
835
+ name: 'GLMR',
836
+ symbol: 'GLMR',
837
+ decimals: 18,
838
+ },
839
+ rpcUrls: ['https://rpc.api.moonbeam.network'],
840
+ blockExplorerUrls: ['https://moonbeam.moonscan.io'],
841
+ addressUrl: 'https://moonbeam.moonscan.io/address/{wallet}',
842
+ transactionUrl: 'https://moonbeam.moonscan.io/tx/{txHash}',
843
+ enableGasV2: true,
844
+ },
845
+ },
846
+ {
847
+ name: 'POLKADOT',
848
+ defaultDecimals: 10,
849
+ addressPatterns: ['^(1)[0-9a-z-A-Z]{44,50}$'],
850
+ feeAssets: [],
851
+ logo: 'https://api.rango.exchange/blockchains/polkadot.svg',
852
+ displayName: 'Polkadot',
853
+ shortName: 'Polkadot',
854
+ sort: 14,
855
+ color: '#E6007A',
856
+ enabled: false,
857
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
858
+ //@ts-ignore
859
+ type: 'TRANSFER',
860
+ chainId: null,
861
+ info: null,
862
+ },
863
+ {
864
+ name: 'AURORA',
865
+ defaultDecimals: 18,
866
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
867
+ feeAssets: [
868
+ {
869
+ blockchain: 'AURORA',
870
+ symbol: 'ETH',
871
+ address: null,
872
+ },
873
+ ],
874
+ logo: 'https://api.rango.exchange/blockchains/aurora.svg',
875
+ displayName: 'Aurora',
876
+ shortName: 'Aurora',
877
+ sort: 15,
878
+ color: '#78d64b',
879
+ enabled: true,
880
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
881
+ //@ts-ignore
882
+ type: 'EVM',
883
+ chainId: '0x4e454152',
884
+ info: {
885
+ infoType: 'EvmMetaInfo',
886
+ chainName: 'Aurora Mainnet',
887
+ nativeCurrency: {
888
+ name: 'ETH',
889
+ symbol: 'ETH',
890
+ decimals: 18,
891
+ },
892
+ rpcUrls: ['https://mainnet.aurora.dev'],
893
+ blockExplorerUrls: ['https://explorer.mainnet.aurora.dev'],
894
+ addressUrl: 'https://explorer.mainnet.aurora.dev/address/{wallet}',
895
+ transactionUrl: 'https://explorer.mainnet.aurora.dev/tx/{txHash}',
896
+ enableGasV2: true,
897
+ },
898
+ },
899
+ {
900
+ name: 'DOGE',
901
+ defaultDecimals: 8,
902
+ addressPatterns: ['^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$'],
903
+ feeAssets: [
904
+ {
905
+ blockchain: 'DOGE',
906
+ symbol: 'DOGE',
907
+ address: null,
908
+ },
909
+ ],
910
+ logo: 'https://api.rango.exchange/blockchains/doge.svg',
911
+ displayName: 'Doge',
912
+ shortName: 'Doge',
913
+ sort: 15,
914
+ color: '#BA9F33',
915
+ enabled: false,
916
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
917
+ //@ts-ignore
918
+ type: 'TRANSFER',
919
+ chainId: null,
920
+ info: null,
921
+ },
922
+ {
923
+ name: 'HARMONY',
924
+ defaultDecimals: 18,
925
+ addressPatterns: ['^(one1)[0-9a-z]{38}$', '^(0x)[0-9A-Fa-f]{40}$'],
926
+ feeAssets: [
927
+ {
928
+ blockchain: 'HARMONY',
929
+ symbol: 'ONE',
930
+ address: null,
931
+ },
932
+ ],
933
+ logo: 'https://api.rango.exchange/blockchains/harmony.svg',
934
+ displayName: 'Harmony',
935
+ shortName: 'Harmony',
936
+ sort: 15,
937
+ color: '#50AEE9',
938
+ enabled: true,
939
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
940
+ //@ts-ignore
941
+ type: 'EVM',
942
+ chainId: '0x63564c40',
943
+ info: {
944
+ infoType: 'EvmMetaInfo',
945
+ chainName: 'Harmony Mainnet',
946
+ nativeCurrency: {
947
+ name: 'ONE',
948
+ symbol: 'ONE',
949
+ decimals: 18,
950
+ },
951
+ rpcUrls: ['https://rpc.ankr.com/harmony'],
952
+ blockExplorerUrls: ['https://explorer.harmony.one'],
953
+ addressUrl: 'https://explorer.harmony.one/address/{wallet}',
954
+ transactionUrl: 'https://explorer.harmony.one/tx/{txHash}',
955
+ enableGasV2: true,
956
+ },
957
+ },
958
+ {
959
+ name: 'EVMOS',
960
+ defaultDecimals: 18,
961
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
962
+ feeAssets: [
963
+ {
964
+ blockchain: 'EVMOS',
965
+ symbol: 'EVMOS',
966
+ address: null,
967
+ },
968
+ ],
969
+ logo: 'https://api.rango.exchange/blockchains/evmos.png',
970
+ displayName: 'Evmos',
971
+ shortName: 'Evmos',
972
+ sort: 15,
973
+ color: '#2D2925',
974
+ enabled: true,
975
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
976
+ //@ts-ignore
977
+ type: 'EVM',
978
+ chainId: '0x2329',
979
+ info: {
980
+ infoType: 'EvmMetaInfo',
981
+ chainName: 'Evmos',
982
+ nativeCurrency: {
983
+ name: 'EVMOS',
984
+ symbol: 'EVMOS',
985
+ decimals: 18,
986
+ },
987
+ rpcUrls: ['https://eth.bd.evmos.org:8545'],
988
+ blockExplorerUrls: ['https://evm.evmos.org'],
989
+ addressUrl: 'https://evm.evmos.org/address/{wallet}',
990
+ transactionUrl: 'https://evm.evmos.org/tx/{txHash}',
991
+ enableGasV2: true,
992
+ },
993
+ },
994
+ {
995
+ name: 'POLYGONZK',
996
+ defaultDecimals: 18,
997
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
998
+ feeAssets: [
999
+ {
1000
+ blockchain: 'POLYGONZK',
1001
+ symbol: 'ETH',
1002
+ address: null,
1003
+ },
1004
+ ],
1005
+ logo: 'https://api.rango.exchange/blockchains/zkevmpolygon.png',
1006
+ displayName: 'polygon zkEVM',
1007
+ shortName: 'polygon zkEVM',
1008
+ sort: 15,
1009
+ color: '#8247e5',
1010
+ enabled: true,
1011
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1012
+ //@ts-ignore
1013
+ type: 'EVM',
1014
+ chainId: '0x44d',
1015
+ info: {
1016
+ infoType: 'EvmMetaInfo',
1017
+ chainName: 'Polygon zkEVM Mainnet',
1018
+ nativeCurrency: {
1019
+ name: 'ETH',
1020
+ symbol: 'ETH',
1021
+ decimals: 18,
1022
+ },
1023
+ rpcUrls: ['https://zkevm-rpc.com'],
1024
+ blockExplorerUrls: ['https://zkevm.polygonscan.com'],
1025
+ addressUrl: 'https://zkevm.polygonscan.com/address/{wallet}',
1026
+ transactionUrl: 'https://zkevm.polygonscan.com/tx/{txHash}',
1027
+ enableGasV2: true,
1028
+ },
1029
+ },
1030
+ {
1031
+ name: 'HECO',
1032
+ defaultDecimals: 18,
1033
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
1034
+ feeAssets: [
1035
+ {
1036
+ blockchain: 'HECO',
1037
+ symbol: 'HT',
1038
+ address: null,
1039
+ },
1040
+ ],
1041
+ logo: 'https://api.rango.exchange/blockchains/heco.png',
1042
+ displayName: 'Heco',
1043
+ shortName: 'Heco',
1044
+ sort: 15,
1045
+ color: '#4CA852',
1046
+ enabled: true,
1047
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1048
+ //@ts-ignore
1049
+ type: 'EVM',
1050
+ chainId: '0x80',
1051
+ info: {
1052
+ infoType: 'EvmMetaInfo',
1053
+ chainName: 'Huobi ECO Chain Mainnet',
1054
+ nativeCurrency: {
1055
+ name: 'HT',
1056
+ symbol: 'HT',
1057
+ decimals: 18,
1058
+ },
1059
+ rpcUrls: ['https://http-mainnet.hecochain.com'],
1060
+ blockExplorerUrls: ['https://hecoinfo.com'],
1061
+ addressUrl: 'https://hecoinfo.com/address/{wallet}',
1062
+ transactionUrl: 'https://hecoinfo.com/tx/{txHash}',
1063
+ enableGasV2: true,
1064
+ },
1065
+ },
1066
+ {
1067
+ name: 'TRON',
1068
+ defaultDecimals: 18,
1069
+ addressPatterns: ['^T[1-9A-HJ-NP-Za-km-z]{33}$'],
1070
+ feeAssets: [
1071
+ {
1072
+ blockchain: 'TRON',
1073
+ symbol: 'TRX',
1074
+ address: null,
1075
+ },
1076
+ ],
1077
+ logo: 'https://api.rango.exchange/blockchains/tron.svg',
1078
+ displayName: 'Tron',
1079
+ shortName: 'Tron',
1080
+ sort: 16,
1081
+ color: '#FF060A',
1082
+ enabled: true,
1083
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1084
+ //@ts-ignore
1085
+ type: 'TRON',
1086
+ chainId: '0x2b6653dc',
1087
+ info: {
1088
+ infoType: 'EvmMetaInfo',
1089
+ chainName: 'TRON Mainnet',
1090
+ nativeCurrency: {
1091
+ name: 'TRX',
1092
+ symbol: 'TRX',
1093
+ decimals: 6,
1094
+ },
1095
+ rpcUrls: ['https://api.trongrid.io/jsonrpc'],
1096
+ blockExplorerUrls: ['https://tronscan.org/#'],
1097
+ addressUrl: 'https://tronscan.org/#/address/{wallet}',
1098
+ transactionUrl: 'https://tronscan.org/#/tx/{txHash}',
1099
+ enableGasV2: true,
1100
+ },
1101
+ },
1102
+ {
1103
+ name: 'SIF',
1104
+ defaultDecimals: 18,
1105
+ addressPatterns: ['^(sif1)[0-9a-z]{38}$'],
1106
+ feeAssets: [
1107
+ {
1108
+ blockchain: 'SIF',
1109
+ symbol: 'ROWAN',
1110
+ address: null,
1111
+ },
1112
+ ],
1113
+ logo: 'https://api.rango.exchange/blockchains/sif.png',
1114
+ displayName: 'Sifchain',
1115
+ shortName: 'Sifchain',
1116
+ sort: 16,
1117
+ color: '#CAAA3A',
1118
+ enabled: true,
1119
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1120
+ //@ts-ignore
1121
+ type: 'COSMOS',
1122
+ chainId: 'sifchain-1',
1123
+ info: {
1124
+ infoType: 'CosmosMetaInfo',
1125
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1126
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1127
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1128
+ experimental: false,
1129
+ rpc: 'https://rpc.sifchain.finance',
1130
+ rest: 'https://api-sifchain-ia.cosmosia.notional.ventures/',
1131
+ cosmostationLcdUrl: 'https://lcd-sifchain.cosmostation.io',
1132
+ cosmostationApiUrl: 'https://api.mintscan.io/v1/sifchain',
1133
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1134
+ mintScanName: 'sifchain',
1135
+ chainName: 'Sifchain',
1136
+ stakeCurrency: {
1137
+ coinDenom: 'ROWAN',
1138
+ coinMinimalDenom: 'rowan',
1139
+ coinDecimals: 18,
1140
+ coinGeckoId: '',
1141
+ coinImageUrl: '',
1142
+ },
1143
+ bip44: {
1144
+ coinType: 118,
1145
+ },
1146
+ bech32Config: {
1147
+ bech32PrefixAccAddr: 'sif',
1148
+ bech32PrefixAccPub: 'sifpub',
1149
+ bech32PrefixValAddr: 'sifvaloper',
1150
+ bech32PrefixValPub: 'sifvaloperpub',
1151
+ bech32PrefixConsAddr: 'sifvalcons',
1152
+ bech32PrefixConsPub: 'sifvalconspub',
1153
+ },
1154
+ currencies: [
1155
+ {
1156
+ coinDenom: 'ROWAN',
1157
+ coinMinimalDenom: 'rowan',
1158
+ coinDecimals: 18,
1159
+ coinGeckoId: '',
1160
+ coinImageUrl: '',
1161
+ },
1162
+ ],
1163
+ feeCurrencies: [
1164
+ {
1165
+ coinDenom: 'ROWAN',
1166
+ coinMinimalDenom: 'rowan',
1167
+ coinDecimals: 18,
1168
+ coinGeckoId: '',
1169
+ coinImageUrl: '',
1170
+ },
1171
+ ],
1172
+ features: ['stargate', 'ibc-transfer'],
1173
+ explorerUrlToTx: 'https://www.mintscan.io/sifchain/txs/{txHash}',
1174
+ gasPriceStep: {
1175
+ low: 1000000000000,
1176
+ average: 1500000000000,
1177
+ high: 2000000000000,
1178
+ },
1179
+ },
1180
+ },
1181
+ {
1182
+ name: 'MAYA',
1183
+ defaultDecimals: 8,
1184
+ addressPatterns: ['^(maya1)[0-9a-z]{38}$'],
1185
+ feeAssets: [
1186
+ {
1187
+ blockchain: 'MAYA',
1188
+ symbol: 'CACAO',
1189
+ address: null,
1190
+ },
1191
+ ],
1192
+ logo: 'https://api.rango.exchange/blockchains/maya.jpg',
1193
+ displayName: 'MayaChain',
1194
+ shortName: 'MayaChain',
1195
+ sort: 17,
1196
+ color: '#1ae6e6',
1197
+ enabled: true,
1198
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1199
+ //@ts-ignore
1200
+ type: 'TRANSFER',
1201
+ chainId: null,
1202
+ info: null,
1203
+ },
1204
+ {
1205
+ name: 'THOR',
1206
+ defaultDecimals: 8,
1207
+ addressPatterns: ['^(thor1)[0-9a-z]{38}$'],
1208
+ feeAssets: [
1209
+ {
1210
+ blockchain: 'THOR',
1211
+ symbol: 'RUNE',
1212
+ address: null,
1213
+ },
1214
+ ],
1215
+ logo: 'https://api.rango.exchange/blockchains/thorchain.svg',
1216
+ displayName: 'Thorchain',
1217
+ shortName: 'Thorchain',
1218
+ sort: 17,
1219
+ color: '#1AE6CB',
1220
+ enabled: true,
1221
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1222
+ //@ts-ignore
1223
+ type: 'TRANSFER',
1224
+ chainId: null,
1225
+ info: null,
1226
+ },
1227
+ {
1228
+ name: 'BRISE',
1229
+ defaultDecimals: 18,
1230
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
1231
+ feeAssets: [
1232
+ {
1233
+ blockchain: 'BRISE',
1234
+ symbol: 'BRISE',
1235
+ address: null,
1236
+ },
1237
+ ],
1238
+ logo: 'https://api.rango.exchange/blockchains/bitgert.png',
1239
+ displayName: 'Brise',
1240
+ shortName: 'Brise',
1241
+ sort: 18,
1242
+ color: '#0693E3',
1243
+ enabled: true,
1244
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1245
+ //@ts-ignore
1246
+ type: 'EVM',
1247
+ chainId: '0x7f08',
1248
+ info: {
1249
+ infoType: 'EvmMetaInfo',
1250
+ chainName: 'Brise',
1251
+ nativeCurrency: {
1252
+ name: 'BRISE',
1253
+ symbol: 'BRISE',
1254
+ decimals: 18,
1255
+ },
1256
+ rpcUrls: ['https://rpc.icecreamswap.com'],
1257
+ blockExplorerUrls: ['https://brisescan.com/'],
1258
+ addressUrl: 'https://brisescan.com//address/{wallet}',
1259
+ transactionUrl: 'https://brisescan.com//tx/{txHash}',
1260
+ enableGasV2: true,
1261
+ },
1262
+ },
1263
+ {
1264
+ name: 'BNB',
1265
+ defaultDecimals: 8,
1266
+ addressPatterns: ['^(bnb1)[0-9a-z]{38}$'],
1267
+ feeAssets: [
1268
+ {
1269
+ blockchain: 'BNB',
1270
+ symbol: 'BNB',
1271
+ address: null,
1272
+ },
1273
+ ],
1274
+ logo: 'https://api.rango.exchange/blockchains/bnb.svg',
1275
+ displayName: 'Binance Chain',
1276
+ shortName: 'BNB',
1277
+ sort: 18,
1278
+ color: '#F3BA2F',
1279
+ enabled: true,
1280
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1281
+ //@ts-ignore
1282
+ type: 'COSMOS',
1283
+ chainId: null,
1284
+ info: null,
1285
+ },
1286
+ {
1287
+ name: 'STARGAZE',
1288
+ defaultDecimals: 6,
1289
+ addressPatterns: ['^(stars1)[0-9a-z]{38}$'],
1290
+ feeAssets: [
1291
+ {
1292
+ blockchain: 'STARGAZE',
1293
+ symbol: 'STARS',
1294
+ address: null,
1295
+ },
1296
+ ],
1297
+ logo: 'https://api.rango.exchange/blockchains/stargaze.png',
1298
+ displayName: 'Stargaze',
1299
+ shortName: 'Stargaze',
1300
+ sort: 19,
1301
+ color: '#231B60',
1302
+ enabled: true,
1303
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1304
+ //@ts-ignore
1305
+ type: 'COSMOS',
1306
+ chainId: 'stargaze-1',
1307
+ info: {
1308
+ infoType: 'CosmosMetaInfo',
1309
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1310
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1311
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1312
+ experimental: false,
1313
+ rpc: 'https://rpc.stargaze-apis.com',
1314
+ rest: 'https://rest.stargaze-apis.com',
1315
+ cosmostationLcdUrl: 'https://lcd-stargaze.cosmostation.io',
1316
+ cosmostationApiUrl: 'https://api-stargaze.cosmostation.io',
1317
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1318
+ mintScanName: 'stargaze',
1319
+ chainName: 'Stargaze',
1320
+ stakeCurrency: {
1321
+ coinDenom: 'STARS',
1322
+ coinMinimalDenom: 'ustars',
1323
+ coinDecimals: 6,
1324
+ coinGeckoId: 'pool:ustars',
1325
+ coinImageUrl: '/tokens/blockchain/STARS.png',
1326
+ },
1327
+ bip44: {
1328
+ coinType: 118,
1329
+ },
1330
+ bech32Config: {
1331
+ bech32PrefixAccAddr: 'stars',
1332
+ bech32PrefixAccPub: 'starspub',
1333
+ bech32PrefixValAddr: 'starsvaloper',
1334
+ bech32PrefixValPub: 'starsvaloperpub',
1335
+ bech32PrefixConsAddr: 'starsvalcons',
1336
+ bech32PrefixConsPub: 'starsvalconspub',
1337
+ },
1338
+ currencies: [
1339
+ {
1340
+ coinDenom: 'STARS',
1341
+ coinMinimalDenom: 'ustars',
1342
+ coinDecimals: 6,
1343
+ coinGeckoId: 'pool:ustars',
1344
+ coinImageUrl: '/tokens/blockchain/STARS.png',
1345
+ },
1346
+ ],
1347
+ feeCurrencies: [
1348
+ {
1349
+ coinDenom: 'STARS',
1350
+ coinMinimalDenom: 'ustars',
1351
+ coinDecimals: 6,
1352
+ coinGeckoId: 'pool:ustars',
1353
+ coinImageUrl: '/tokens/blockchain/STARS.png',
1354
+ },
1355
+ ],
1356
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
1357
+ explorerUrlToTx: 'https://www.mintscan.io/stargaze/txs/{txHash}',
1358
+ gasPriceStep: {
1359
+ low: 1,
1360
+ average: 1,
1361
+ high: 1,
1362
+ },
1363
+ },
1364
+ },
1365
+ {
1366
+ name: 'BTC',
1367
+ defaultDecimals: 8,
1368
+ addressPatterns: [
1369
+ '^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$',
1370
+ ],
1371
+ feeAssets: [
1372
+ {
1373
+ blockchain: 'BTC',
1374
+ symbol: 'BTC',
1375
+ address: null,
1376
+ },
1377
+ ],
1378
+ logo: 'https://api.rango.exchange/blockchains/btc.svg',
1379
+ displayName: 'Bitcoin',
1380
+ shortName: 'BTC',
1381
+ sort: 20,
1382
+ color: '#F7931A',
1383
+ enabled: true,
1384
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1385
+ //@ts-ignore
1386
+ type: 'TRANSFER',
1387
+ chainId: null,
1388
+ info: null,
1389
+ },
1390
+ {
1391
+ name: 'CRYPTO_ORG',
1392
+ defaultDecimals: 8,
1393
+ addressPatterns: ['^(cro1)[0-9a-z]{38}$'],
1394
+ feeAssets: [
1395
+ {
1396
+ blockchain: 'CRYPTO_ORG',
1397
+ symbol: 'CRO',
1398
+ address: null,
1399
+ },
1400
+ ],
1401
+ logo: 'https://api.rango.exchange/blockchains/crypto_org.png',
1402
+ displayName: 'Crypto.org',
1403
+ shortName: 'Crypto.org',
1404
+ sort: 21,
1405
+ color: '#103F68',
1406
+ enabled: true,
1407
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1408
+ //@ts-ignore
1409
+ type: 'COSMOS',
1410
+ chainId: 'crypto-org-chain-mainnet-1',
1411
+ info: {
1412
+ infoType: 'CosmosMetaInfo',
1413
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1414
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1415
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1416
+ experimental: false,
1417
+ rpc: 'https://rpc-crypto-org.keplr.app',
1418
+ rest: 'https://lcd-crypto-org.keplr.app',
1419
+ cosmostationLcdUrl: 'https://lcd-cryptocom.cosmostation.io',
1420
+ cosmostationApiUrl: 'https://api-cryptocom.cosmostation.io',
1421
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1422
+ mintScanName: 'crypto-org',
1423
+ chainName: 'Crypto.org',
1424
+ stakeCurrency: {
1425
+ coinDenom: 'CRO',
1426
+ coinMinimalDenom: 'basecro',
1427
+ coinDecimals: 8,
1428
+ coinGeckoId: 'crypto-com-chain',
1429
+ coinImageUrl: '/tokens/blockchain/cro.png',
1430
+ },
1431
+ bip44: {
1432
+ coinType: 394,
1433
+ },
1434
+ bech32Config: {
1435
+ bech32PrefixAccAddr: 'cro',
1436
+ bech32PrefixAccPub: 'cropub',
1437
+ bech32PrefixValAddr: 'crovaloper',
1438
+ bech32PrefixValPub: 'crovaloperpub',
1439
+ bech32PrefixConsAddr: 'crovalcons',
1440
+ bech32PrefixConsPub: 'crovalconspub',
1441
+ },
1442
+ currencies: [
1443
+ {
1444
+ coinDenom: 'CRO',
1445
+ coinMinimalDenom: 'basecro',
1446
+ coinDecimals: 8,
1447
+ coinGeckoId: 'crypto-com-chain',
1448
+ coinImageUrl: '/tokens/blockchain/cro.png',
1449
+ },
1450
+ ],
1451
+ feeCurrencies: [
1452
+ {
1453
+ coinDenom: 'CRO',
1454
+ coinMinimalDenom: 'basecro',
1455
+ coinDecimals: 8,
1456
+ coinGeckoId: 'crypto-com-chain',
1457
+ coinImageUrl: '/tokens/blockchain/cro.png',
1458
+ },
1459
+ ],
1460
+ features: ['stargate', 'ibc-transfer'],
1461
+ explorerUrlToTx: 'https://www.mintscan.io/crypto-org/txs/{txHash}',
1462
+ gasPriceStep: {
1463
+ low: 0.025,
1464
+ average: 0.03,
1465
+ high: 0.04,
1466
+ },
1467
+ },
1468
+ },
1469
+ {
1470
+ name: 'CHIHUAHUA',
1471
+ defaultDecimals: 6,
1472
+ addressPatterns: ['^(chihuahua1)[0-9a-z]{38}$'],
1473
+ feeAssets: [
1474
+ {
1475
+ blockchain: 'CHIHUAHUA',
1476
+ symbol: 'HUAHUA',
1477
+ address: null,
1478
+ },
1479
+ ],
1480
+ logo: 'https://api.rango.exchange/blockchains/chihuahua.png',
1481
+ displayName: 'Chihuahua',
1482
+ shortName: 'Chihuahua',
1483
+ sort: 22,
1484
+ color: '#EFC92B',
1485
+ enabled: true,
1486
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1487
+ //@ts-ignore
1488
+ type: 'COSMOS',
1489
+ chainId: 'chihuahua-1',
1490
+ info: {
1491
+ infoType: 'CosmosMetaInfo',
1492
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1493
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1494
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1495
+ experimental: true,
1496
+ rpc: 'https://rpc.chihuahua.wtf/',
1497
+ rest: 'https://api.chihuahua.wtf/',
1498
+ cosmostationLcdUrl: 'https://lcd-chihuahua.cosmostation.io',
1499
+ cosmostationApiUrl: 'https://api-chihuahua.cosmostation.io',
1500
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1501
+ mintScanName: 'chihuahua',
1502
+ chainName: 'Chihuahua',
1503
+ stakeCurrency: {
1504
+ coinDenom: 'HUAHUA',
1505
+ coinMinimalDenom: 'uhuahua',
1506
+ coinDecimals: 6,
1507
+ coinGeckoId: 'pool:uhuahua',
1508
+ coinImageUrl: '/tokens/blockchain/HUAHUA.svg',
1509
+ },
1510
+ bip44: {
1511
+ coinType: 118,
1512
+ },
1513
+ bech32Config: {
1514
+ bech32PrefixAccAddr: 'chihuahua',
1515
+ bech32PrefixAccPub: 'chihuahuapub',
1516
+ bech32PrefixValAddr: 'chihuahuavaloper',
1517
+ bech32PrefixValPub: 'chihuahuavaloperpub',
1518
+ bech32PrefixConsAddr: 'chihuahuavalcons',
1519
+ bech32PrefixConsPub: 'chihuahuavalconspub',
1520
+ },
1521
+ currencies: [
1522
+ {
1523
+ coinDenom: 'HUAHUA',
1524
+ coinMinimalDenom: 'uhuahua',
1525
+ coinDecimals: 6,
1526
+ coinGeckoId: 'pool:uhuahua',
1527
+ coinImageUrl: '/tokens/blockchain/HUAHUA.svg',
1528
+ },
1529
+ ],
1530
+ feeCurrencies: [
1531
+ {
1532
+ coinDenom: 'HUAHUA',
1533
+ coinMinimalDenom: 'uhuahua',
1534
+ coinDecimals: 6,
1535
+ coinGeckoId: 'pool:uhuahua',
1536
+ coinImageUrl: '/tokens/blockchain/HUAHUA.svg',
1537
+ },
1538
+ ],
1539
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
1540
+ explorerUrlToTx: 'https://ping.pub/chihuahua/tx/{txHash}',
1541
+ gasPriceStep: {
1542
+ low: 0.025,
1543
+ average: 0.03,
1544
+ high: 0.035,
1545
+ },
1546
+ },
1547
+ },
1548
+ {
1549
+ name: 'BANDCHAIN',
1550
+ defaultDecimals: 6,
1551
+ addressPatterns: ['^(band1)[0-9a-z]{38}$'],
1552
+ feeAssets: [
1553
+ {
1554
+ blockchain: 'BANDCHAIN',
1555
+ symbol: 'BAND',
1556
+ address: null,
1557
+ },
1558
+ ],
1559
+ logo: 'https://api.rango.exchange/blockchains/bandchain.svg',
1560
+ displayName: 'BandChain',
1561
+ shortName: 'BandChain',
1562
+ sort: 23,
1563
+ color: '#4520E6',
1564
+ enabled: true,
1565
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1566
+ //@ts-ignore
1567
+ type: 'COSMOS',
1568
+ chainId: 'laozi-mainnet',
1569
+ info: {
1570
+ infoType: 'CosmosMetaInfo',
1571
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1572
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1573
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1574
+ experimental: true,
1575
+ rpc: 'https://rpc.laozi3.bandchain.org/',
1576
+ rest: 'https://lcd-band.cosmostation.io',
1577
+ cosmostationLcdUrl: 'https://lcd-band.cosmostation.io',
1578
+ cosmostationApiUrl: 'https://api-band.cosmostation.io',
1579
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1580
+ mintScanName: 'band',
1581
+ chainName: 'BandChain',
1582
+ stakeCurrency: {
1583
+ coinDenom: 'BAND',
1584
+ coinMinimalDenom: 'uband',
1585
+ coinDecimals: 6,
1586
+ coinGeckoId: 'band-protocol',
1587
+ coinImageUrl: '/tokens/blockchain/BAND.svg',
1588
+ },
1589
+ bip44: {
1590
+ coinType: 494,
1591
+ },
1592
+ bech32Config: {
1593
+ bech32PrefixAccAddr: 'band',
1594
+ bech32PrefixAccPub: 'bandpub',
1595
+ bech32PrefixValAddr: 'bandvaloper',
1596
+ bech32PrefixValPub: 'bandvaloperpub',
1597
+ bech32PrefixConsAddr: 'bandvalcons',
1598
+ bech32PrefixConsPub: 'bandvalconspub',
1599
+ },
1600
+ currencies: [
1601
+ {
1602
+ coinDenom: 'BAND',
1603
+ coinMinimalDenom: 'uband',
1604
+ coinDecimals: 6,
1605
+ coinGeckoId: 'band-protocol',
1606
+ coinImageUrl: '/tokens/blockchain/BAND.svg',
1607
+ },
1608
+ ],
1609
+ feeCurrencies: [
1610
+ {
1611
+ coinDenom: 'BAND',
1612
+ coinMinimalDenom: 'uband',
1613
+ coinDecimals: 6,
1614
+ coinGeckoId: 'band-protocol',
1615
+ coinImageUrl: '/tokens/blockchain/BAND.svg',
1616
+ },
1617
+ ],
1618
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
1619
+ explorerUrlToTx: 'https://cosmoscan.io/tx/{txHash}',
1620
+ gasPriceStep: null,
1621
+ },
1622
+ },
1623
+ {
1624
+ name: 'COMDEX',
1625
+ defaultDecimals: 6,
1626
+ addressPatterns: ['^(comdex1)[0-9a-z]{38}$'],
1627
+ feeAssets: [
1628
+ {
1629
+ blockchain: 'COMDEX',
1630
+ symbol: 'CMDX',
1631
+ address: null,
1632
+ },
1633
+ ],
1634
+ logo: 'https://api.rango.exchange/blockchains/comdex.svg',
1635
+ displayName: 'Comdex',
1636
+ shortName: 'Comdex',
1637
+ sort: 23,
1638
+ color: '#FE4350',
1639
+ enabled: true,
1640
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1641
+ //@ts-ignore
1642
+ type: 'COSMOS',
1643
+ chainId: 'comdex-1',
1644
+ info: {
1645
+ infoType: 'CosmosMetaInfo',
1646
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1647
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1648
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1649
+ experimental: true,
1650
+ rpc: 'https://rpc.comdex.one',
1651
+ rest: 'https://rest.comdex.one',
1652
+ cosmostationLcdUrl: 'https://lcd-comdex.cosmostation.io',
1653
+ cosmostationApiUrl: 'https://api-comdex.cosmostation.io',
1654
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1655
+ mintScanName: 'comdex',
1656
+ chainName: 'Comdex',
1657
+ stakeCurrency: {
1658
+ coinDenom: 'CMDX',
1659
+ coinMinimalDenom: 'ucmdx',
1660
+ coinDecimals: 6,
1661
+ coinGeckoId: 'comdex',
1662
+ coinImageUrl: '/tokens/blockchain/CMDX.png',
1663
+ },
1664
+ bip44: {
1665
+ coinType: 118,
1666
+ },
1667
+ bech32Config: {
1668
+ bech32PrefixAccAddr: 'comdex',
1669
+ bech32PrefixAccPub: 'comdexpub',
1670
+ bech32PrefixValAddr: 'comdexvaloper',
1671
+ bech32PrefixValPub: 'comdexvaloperpub',
1672
+ bech32PrefixConsAddr: 'comdexvalcons',
1673
+ bech32PrefixConsPub: 'comdexvalconspub',
1674
+ },
1675
+ currencies: [
1676
+ {
1677
+ coinDenom: 'CMDX',
1678
+ coinMinimalDenom: 'ucmdx',
1679
+ coinDecimals: 6,
1680
+ coinGeckoId: 'comdex',
1681
+ coinImageUrl: '/tokens/blockchain/CMDX.png',
1682
+ },
1683
+ ],
1684
+ feeCurrencies: [
1685
+ {
1686
+ coinDenom: 'CMDX',
1687
+ coinMinimalDenom: 'ucmdx',
1688
+ coinDecimals: 6,
1689
+ coinGeckoId: 'comdex',
1690
+ coinImageUrl: '/tokens/blockchain/CMDX.png',
1691
+ },
1692
+ ],
1693
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
1694
+ explorerUrlToTx: 'https://www.mintscan.io/comdex/txs/{txHash}',
1695
+ gasPriceStep: null,
1696
+ },
1697
+ },
1698
+ {
1699
+ name: 'REGEN',
1700
+ defaultDecimals: 6,
1701
+ addressPatterns: ['^(regen1)[0-9a-z]{38}$'],
1702
+ feeAssets: [
1703
+ {
1704
+ blockchain: 'REGEN',
1705
+ symbol: 'REGEN',
1706
+ address: null,
1707
+ },
1708
+ ],
1709
+ logo: 'https://api.rango.exchange/blockchains/regen.png',
1710
+ displayName: 'Regen Network',
1711
+ shortName: 'Regen Network',
1712
+ sort: 24,
1713
+ color: '#4FB573',
1714
+ enabled: true,
1715
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1716
+ //@ts-ignore
1717
+ type: 'COSMOS',
1718
+ chainId: 'regen-1',
1719
+ info: {
1720
+ infoType: 'CosmosMetaInfo',
1721
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1722
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1723
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1724
+ experimental: false,
1725
+ rpc: 'https://rpc-regen.keplr.app',
1726
+ rest: 'https://lcd-regen.keplr.app',
1727
+ cosmostationLcdUrl: 'https://lcd-regen.keplr.app',
1728
+ cosmostationApiUrl: 'https://api-regen.cosmostation.io/',
1729
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1730
+ mintScanName: 'regen',
1731
+ chainName: 'Regen Network',
1732
+ stakeCurrency: {
1733
+ coinDenom: 'REGEN',
1734
+ coinMinimalDenom: 'uregen',
1735
+ coinDecimals: 6,
1736
+ coinGeckoId: 'pool:uregen',
1737
+ coinImageUrl: '/tokens/blockchain/regen.png',
1738
+ },
1739
+ bip44: {
1740
+ coinType: 118,
1741
+ },
1742
+ bech32Config: {
1743
+ bech32PrefixAccAddr: 'regen',
1744
+ bech32PrefixAccPub: 'regenpub',
1745
+ bech32PrefixValAddr: 'regenvaloper',
1746
+ bech32PrefixValPub: 'regenvaloperpub',
1747
+ bech32PrefixConsAddr: 'regenvalcons',
1748
+ bech32PrefixConsPub: 'regenvalconspub',
1749
+ },
1750
+ currencies: [
1751
+ {
1752
+ coinDenom: 'REGEN',
1753
+ coinMinimalDenom: 'uregen',
1754
+ coinDecimals: 6,
1755
+ coinGeckoId: 'pool:uregen',
1756
+ coinImageUrl: '/tokens/blockchain/regen.png',
1757
+ },
1758
+ ],
1759
+ feeCurrencies: [
1760
+ {
1761
+ coinDenom: 'REGEN',
1762
+ coinMinimalDenom: 'uregen',
1763
+ coinDecimals: 6,
1764
+ coinGeckoId: 'pool:uregen',
1765
+ coinImageUrl: '/tokens/blockchain/regen.png',
1766
+ },
1767
+ ],
1768
+ features: ['stargate', 'ibc-transfer'],
1769
+ explorerUrlToTx: 'https://regen.aneka.io/txs/{txHash}',
1770
+ gasPriceStep: {
1771
+ low: 0.015,
1772
+ average: 0.025,
1773
+ high: 0.04,
1774
+ },
1775
+ },
1776
+ },
1777
+ {
1778
+ name: 'IRIS',
1779
+ defaultDecimals: 6,
1780
+ addressPatterns: ['^(iaa1)[0-9a-z]{38}$'],
1781
+ feeAssets: [
1782
+ {
1783
+ blockchain: 'IRIS',
1784
+ symbol: 'IRIS',
1785
+ address: null,
1786
+ },
1787
+ ],
1788
+ logo: 'https://api.rango.exchange/blockchains/iris.png',
1789
+ displayName: 'IRISnet',
1790
+ shortName: 'IRISnet',
1791
+ sort: 25,
1792
+ color: '#8A4A8E',
1793
+ enabled: true,
1794
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1795
+ //@ts-ignore
1796
+ type: 'COSMOS',
1797
+ chainId: 'irishub-1',
1798
+ info: {
1799
+ infoType: 'CosmosMetaInfo',
1800
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1801
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1802
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1803
+ experimental: false,
1804
+ rpc: 'https://rpc-iris.keplr.app',
1805
+ rest: 'https://lcd-iris.keplr.app',
1806
+ cosmostationLcdUrl: 'https://lcd-iris.cosmostation.io',
1807
+ cosmostationApiUrl: 'https://api-iris.cosmostation.io',
1808
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
1809
+ mintScanName: 'iris',
1810
+ chainName: 'IRISnet',
1811
+ stakeCurrency: {
1812
+ coinDenom: 'IRIS',
1813
+ coinMinimalDenom: 'uiris',
1814
+ coinDecimals: 6,
1815
+ coinGeckoId: 'iris-network',
1816
+ coinImageUrl: '/tokens/blockchain/iris.svg',
1817
+ },
1818
+ bip44: {
1819
+ coinType: 118,
1820
+ },
1821
+ bech32Config: {
1822
+ bech32PrefixAccAddr: 'iaa',
1823
+ bech32PrefixAccPub: 'iaapub',
1824
+ bech32PrefixValAddr: 'iaavaloper',
1825
+ bech32PrefixValPub: 'iaavaloperpub',
1826
+ bech32PrefixConsAddr: 'iaavalcons',
1827
+ bech32PrefixConsPub: 'iaavalconspub',
1828
+ },
1829
+ currencies: [
1830
+ {
1831
+ coinDenom: 'IRIS',
1832
+ coinMinimalDenom: 'uiris',
1833
+ coinDecimals: 6,
1834
+ coinGeckoId: 'iris-network',
1835
+ coinImageUrl: '/tokens/blockchain/iris.svg',
1836
+ },
1837
+ ],
1838
+ feeCurrencies: [
1839
+ {
1840
+ coinDenom: 'IRIS',
1841
+ coinMinimalDenom: 'uiris',
1842
+ coinDecimals: 6,
1843
+ coinGeckoId: 'iris-network',
1844
+ coinImageUrl: '/tokens/blockchain/iris.svg',
1845
+ },
1846
+ ],
1847
+ features: ['stargate', 'ibc-transfer'],
1848
+ explorerUrlToTx: 'https://www.mintscan.io/iris/txs/{txHash}',
1849
+ gasPriceStep: {
1850
+ low: 0.2,
1851
+ average: 0.3,
1852
+ high: 0.4,
1853
+ },
1854
+ },
1855
+ },
1856
+ {
1857
+ name: 'EMONEY',
1858
+ defaultDecimals: 6,
1859
+ addressPatterns: ['^(emoney1)[0-9a-z]{38}$'],
1860
+ feeAssets: [
1861
+ {
1862
+ blockchain: 'EMONEY',
1863
+ symbol: 'NGM',
1864
+ address: null,
1865
+ },
1866
+ ],
1867
+ logo: 'https://api.rango.exchange/blockchains/emoney.svg',
1868
+ displayName: 'e-Money',
1869
+ shortName: 'e-Money',
1870
+ sort: 25,
1871
+ color: '#DFF5EF',
1872
+ enabled: true,
1873
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1874
+ //@ts-ignore
1875
+ type: 'COSMOS',
1876
+ chainId: 'emoney-3',
1877
+ info: {
1878
+ infoType: 'CosmosMetaInfo',
1879
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
1880
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
1881
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
1882
+ experimental: true,
1883
+ rpc: 'https://rpc-emoney.keplr.app',
1884
+ rest: 'https://lcd-emoney.keplr.app',
1885
+ cosmostationLcdUrl: 'https://lcd-emoney.cosmostation.io',
1886
+ cosmostationApiUrl: 'https://api-emoney.cosmostation.io',
1887
+ cosmostationDenomTracePath:
1888
+ '/ibc/applications/transfer/v1beta1/denom_traces/',
1889
+ mintScanName: 'emoney',
1890
+ chainName: 'e-Money',
1891
+ stakeCurrency: {
1892
+ coinDenom: 'NGM',
1893
+ coinMinimalDenom: 'ungm',
1894
+ coinDecimals: 6,
1895
+ coinGeckoId: 'e-money',
1896
+ coinImageUrl: '/tokens/blockchain/NGM.png',
1897
+ },
1898
+ bip44: {
1899
+ coinType: 118,
1900
+ },
1901
+ bech32Config: {
1902
+ bech32PrefixAccAddr: 'emoney',
1903
+ bech32PrefixAccPub: 'emoneypub',
1904
+ bech32PrefixValAddr: 'emoneyvaloper',
1905
+ bech32PrefixValPub: 'emoneyvaloperpub',
1906
+ bech32PrefixConsAddr: 'emoneyvalcons',
1907
+ bech32PrefixConsPub: 'emoneyvalconspub',
1908
+ },
1909
+ currencies: [
1910
+ {
1911
+ coinDenom: 'NGM',
1912
+ coinMinimalDenom: 'ungm',
1913
+ coinDecimals: 6,
1914
+ coinGeckoId: 'e-money',
1915
+ coinImageUrl: '/tokens/blockchain/NGM.png',
1916
+ },
1917
+ {
1918
+ coinDenom: 'EEUR',
1919
+ coinMinimalDenom: 'eeur',
1920
+ coinDecimals: 6,
1921
+ coinGeckoId: 'e-money-eur',
1922
+ coinImageUrl: '/tokens/blockchain/EEUR.png',
1923
+ },
1924
+ ],
1925
+ feeCurrencies: [
1926
+ {
1927
+ coinDenom: 'NGM',
1928
+ coinMinimalDenom: 'ungm',
1929
+ coinDecimals: 6,
1930
+ coinGeckoId: 'e-money',
1931
+ coinImageUrl: '/tokens/blockchain/NGM.png',
1932
+ },
1933
+ ],
1934
+ features: ['stargate', 'ibc-transfer'],
1935
+ explorerUrlToTx: 'https://emoney.bigdipper.live/transactions/{txHash}',
1936
+ gasPriceStep: {
1937
+ low: 1,
1938
+ average: 1,
1939
+ high: 1,
1940
+ },
1941
+ },
1942
+ },
1943
+ {
1944
+ name: 'GNOSIS',
1945
+ defaultDecimals: 18,
1946
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
1947
+ feeAssets: [
1948
+ {
1949
+ blockchain: 'GNOSIS',
1950
+ symbol: 'XDAI',
1951
+ address: null,
1952
+ },
1953
+ ],
1954
+ logo: 'https://api.rango.exchange/blockchains/gnosis.svg',
1955
+ displayName: 'Gnosis',
1956
+ shortName: 'Gnosis',
1957
+ sort: 26,
1958
+ color: '#3E6957',
1959
+ enabled: true,
1960
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1961
+ //@ts-ignore
1962
+ type: 'EVM',
1963
+ chainId: '0x64',
1964
+ info: {
1965
+ infoType: 'EvmMetaInfo',
1966
+ chainName: 'Gnosis Chain',
1967
+ nativeCurrency: {
1968
+ name: 'XDAI',
1969
+ symbol: 'XDAI',
1970
+ decimals: 18,
1971
+ },
1972
+ rpcUrls: ['https://rpc.gnosischain.com'],
1973
+ blockExplorerUrls: ['https://blockscout.com/xdai/mainnet'],
1974
+ addressUrl: 'https://blockscout.com/xdai/mainnet/address/{wallet}',
1975
+ transactionUrl: 'https://blockscout.com/xdai/mainnet/tx/{txHash}',
1976
+ enableGasV2: true,
1977
+ },
1978
+ },
1979
+ {
1980
+ name: 'LTC',
1981
+ defaultDecimals: 8,
1982
+ addressPatterns: ['^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$'],
1983
+ feeAssets: [
1984
+ {
1985
+ blockchain: 'LTC',
1986
+ symbol: 'LTC',
1987
+ address: null,
1988
+ },
1989
+ ],
1990
+ logo: 'https://api.rango.exchange/blockchains/ltc.svg',
1991
+ displayName: 'LiteCoin',
1992
+ shortName: 'LTC',
1993
+ sort: 27,
1994
+ color: '#345D9D',
1995
+ enabled: true,
1996
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1997
+ //@ts-ignore
1998
+ type: 'TRANSFER',
1999
+ chainId: null,
2000
+ info: null,
2001
+ },
2002
+ {
2003
+ name: 'BCH',
2004
+ defaultDecimals: 8,
2005
+ addressPatterns: ['^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$'],
2006
+ feeAssets: [
2007
+ {
2008
+ blockchain: 'BCH',
2009
+ symbol: 'BCH',
2010
+ address: null,
2011
+ },
2012
+ ],
2013
+ logo: 'https://api.rango.exchange/blockchains/bch.svg',
2014
+ displayName: 'Bitcoin Cash',
2015
+ shortName: 'BCH',
2016
+ sort: 28,
2017
+ color: '#0AC18E',
2018
+ enabled: true,
2019
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2020
+ //@ts-ignore
2021
+ type: 'TRANSFER',
2022
+ chainId: null,
2023
+ info: null,
2024
+ },
2025
+ {
2026
+ name: 'FUSE',
2027
+ defaultDecimals: 18,
2028
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
2029
+ feeAssets: [
2030
+ {
2031
+ blockchain: 'FUSE',
2032
+ symbol: 'FUSE',
2033
+ address: null,
2034
+ },
2035
+ ],
2036
+ logo: 'https://api.rango.exchange/blockchains/fuse.png',
2037
+ displayName: 'Fuse',
2038
+ shortName: 'Fuse',
2039
+ sort: 29,
2040
+ color: '#C5F9AD',
2041
+ enabled: true,
2042
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2043
+ //@ts-ignore
2044
+ type: 'EVM',
2045
+ chainId: '0x7a',
2046
+ info: {
2047
+ infoType: 'EvmMetaInfo',
2048
+ chainName: 'Fuse Mainnet',
2049
+ nativeCurrency: {
2050
+ name: 'FUSE',
2051
+ symbol: 'FUSE',
2052
+ decimals: 18,
2053
+ },
2054
+ rpcUrls: ['https://rpc.fuse.io'],
2055
+ blockExplorerUrls: ['https://explorer.fuse.io'],
2056
+ addressUrl: 'https://explorer.fuse.io/address/{wallet}',
2057
+ transactionUrl: 'https://explorer.fuse.io/tx/{txHash}',
2058
+ enableGasV2: true,
2059
+ },
2060
+ },
2061
+ {
2062
+ name: 'BITSONG',
2063
+ defaultDecimals: 6,
2064
+ addressPatterns: ['^(bitsong1)[0-9a-z]{38}$'],
2065
+ feeAssets: [
2066
+ {
2067
+ blockchain: 'BITSONG',
2068
+ symbol: 'BTSG',
2069
+ address: null,
2070
+ },
2071
+ ],
2072
+ logo: 'https://api.rango.exchange/blockchains/bitsong.svg',
2073
+ displayName: 'BitSong',
2074
+ shortName: 'BitSong',
2075
+ sort: 29,
2076
+ color: '#FF005C',
2077
+ enabled: true,
2078
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2079
+ //@ts-ignore
2080
+ type: 'COSMOS',
2081
+ chainId: 'bitsong-2b',
2082
+ info: {
2083
+ infoType: 'CosmosMetaInfo',
2084
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2085
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2086
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2087
+ experimental: true,
2088
+ rpc: 'https://rpc.explorebitsong.com',
2089
+ rest: 'https://lcd.explorebitsong.com',
2090
+ cosmostationLcdUrl: 'https://lcd-bitsong.cosmostation.io',
2091
+ cosmostationApiUrl: 'https://api-bitsong.cosmostation.io',
2092
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2093
+ mintScanName: 'bitsong',
2094
+ chainName: 'BitSong',
2095
+ stakeCurrency: {
2096
+ coinDenom: 'BTSG',
2097
+ coinMinimalDenom: 'ubtsg',
2098
+ coinDecimals: 6,
2099
+ coinGeckoId: 'pool:ubtsg',
2100
+ coinImageUrl: '/tokens/blockchain/BTSG.png',
2101
+ },
2102
+ bip44: {
2103
+ coinType: 639,
2104
+ },
2105
+ bech32Config: {
2106
+ bech32PrefixAccAddr: 'bitsong',
2107
+ bech32PrefixAccPub: 'bitsongpub',
2108
+ bech32PrefixValAddr: 'bitsongvaloper',
2109
+ bech32PrefixValPub: 'bitsongvaloperpub',
2110
+ bech32PrefixConsAddr: 'bitsongvalcons',
2111
+ bech32PrefixConsPub: 'bitsongvalconspub',
2112
+ },
2113
+ currencies: [
2114
+ {
2115
+ coinDenom: 'BTSG',
2116
+ coinMinimalDenom: 'ubtsg',
2117
+ coinDecimals: 6,
2118
+ coinGeckoId: 'pool:ubtsg',
2119
+ coinImageUrl: '/tokens/blockchain/BTSG.png',
2120
+ },
2121
+ ],
2122
+ feeCurrencies: [
2123
+ {
2124
+ coinDenom: 'BTSG',
2125
+ coinMinimalDenom: 'ubtsg',
2126
+ coinDecimals: 6,
2127
+ coinGeckoId: 'pool:ubtsg',
2128
+ coinImageUrl: '/tokens/blockchain/BTSG.png',
2129
+ },
2130
+ ],
2131
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
2132
+ explorerUrlToTx: 'https://explorebitsong.com/transactions/{txHash}',
2133
+ gasPriceStep: null,
2134
+ },
2135
+ },
2136
+ {
2137
+ name: 'AKASH',
2138
+ defaultDecimals: 6,
2139
+ addressPatterns: ['^(akash1)[0-9a-z]{38}$'],
2140
+ feeAssets: [
2141
+ {
2142
+ blockchain: 'AKASH',
2143
+ symbol: 'AKT',
2144
+ address: null,
2145
+ },
2146
+ ],
2147
+ logo: 'https://api.rango.exchange/blockchains/akash.svg',
2148
+ displayName: 'Akash',
2149
+ shortName: 'Akash',
2150
+ sort: 30,
2151
+ color: '#ED3524',
2152
+ enabled: true,
2153
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2154
+ //@ts-ignore
2155
+ type: 'COSMOS',
2156
+ chainId: 'akashnet-2',
2157
+ info: {
2158
+ infoType: 'CosmosMetaInfo',
2159
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2160
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2161
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2162
+ experimental: false,
2163
+ rpc: 'https://rpc-akash.keplr.app',
2164
+ rest: 'https://lcd-akash.keplr.app',
2165
+ cosmostationLcdUrl: 'https://lcd-akash.cosmostation.io',
2166
+ cosmostationApiUrl: 'https://api-akash.cosmostation.io',
2167
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2168
+ mintScanName: 'akash',
2169
+ chainName: 'Akash',
2170
+ stakeCurrency: {
2171
+ coinDenom: 'AKT',
2172
+ coinMinimalDenom: 'uakt',
2173
+ coinDecimals: 6,
2174
+ coinGeckoId: 'akash-network',
2175
+ coinImageUrl: '/tokens/blockchain/akt.svg',
2176
+ },
2177
+ bip44: {
2178
+ coinType: 118,
2179
+ },
2180
+ bech32Config: {
2181
+ bech32PrefixAccAddr: 'akash',
2182
+ bech32PrefixAccPub: 'akashpub',
2183
+ bech32PrefixValAddr: 'akashvaloper',
2184
+ bech32PrefixValPub: 'akashvaloperpub',
2185
+ bech32PrefixConsAddr: 'akashvalcons',
2186
+ bech32PrefixConsPub: 'akashvalconspub',
2187
+ },
2188
+ currencies: [
2189
+ {
2190
+ coinDenom: 'AKT',
2191
+ coinMinimalDenom: 'uakt',
2192
+ coinDecimals: 6,
2193
+ coinGeckoId: 'akash-network',
2194
+ coinImageUrl: '/tokens/blockchain/akt.svg',
2195
+ },
2196
+ ],
2197
+ feeCurrencies: [
2198
+ {
2199
+ coinDenom: 'AKT',
2200
+ coinMinimalDenom: 'uakt',
2201
+ coinDecimals: 6,
2202
+ coinGeckoId: 'akash-network',
2203
+ coinImageUrl: '/tokens/blockchain/akt.svg',
2204
+ },
2205
+ ],
2206
+ features: ['stargate', 'ibc-transfer'],
2207
+ explorerUrlToTx: 'https://www.mintscan.io/akash/txs/{txHash}',
2208
+ gasPriceStep: {
2209
+ low: 0.001,
2210
+ average: 0.0025,
2211
+ high: 0.004,
2212
+ },
2213
+ },
2214
+ },
2215
+ {
2216
+ name: 'KI',
2217
+ defaultDecimals: 6,
2218
+ addressPatterns: ['^(ki1)[0-9a-z]{38}$'],
2219
+ feeAssets: [
2220
+ {
2221
+ blockchain: 'KI',
2222
+ symbol: 'XKI',
2223
+ address: null,
2224
+ },
2225
+ ],
2226
+ logo: 'https://api.rango.exchange/blockchains/ki.png',
2227
+ displayName: 'Ki',
2228
+ shortName: 'Ki',
2229
+ sort: 30,
2230
+ color: '#0F2B3D',
2231
+ enabled: true,
2232
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2233
+ //@ts-ignore
2234
+ type: 'COSMOS',
2235
+ chainId: 'kichain-2',
2236
+ info: {
2237
+ infoType: 'CosmosMetaInfo',
2238
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2239
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2240
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2241
+ experimental: true,
2242
+ rpc: 'https://rpc-mainnet.blockchain.ki',
2243
+ rest: 'https://api-mainnet.blockchain.ki',
2244
+ cosmostationLcdUrl: 'https://lcd-kichain.cosmostation.io',
2245
+ cosmostationApiUrl: 'https://api-kichain.cosmostation.io',
2246
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2247
+ mintScanName: 'ki-chain',
2248
+ chainName: 'Ki',
2249
+ stakeCurrency: {
2250
+ coinDenom: 'XKI',
2251
+ coinMinimalDenom: 'uxki',
2252
+ coinDecimals: 6,
2253
+ coinGeckoId: 'pool:uxki',
2254
+ coinImageUrl: '/tokens/blockchain/XKI.png',
2255
+ },
2256
+ bip44: {
2257
+ coinType: 118,
2258
+ },
2259
+ bech32Config: {
2260
+ bech32PrefixAccAddr: 'ki',
2261
+ bech32PrefixAccPub: 'kipub',
2262
+ bech32PrefixValAddr: 'kivaloper',
2263
+ bech32PrefixValPub: 'kivaloperpub',
2264
+ bech32PrefixConsAddr: 'kivalcons',
2265
+ bech32PrefixConsPub: 'kivalconspub',
2266
+ },
2267
+ currencies: [
2268
+ {
2269
+ coinDenom: 'XKI',
2270
+ coinMinimalDenom: 'uxki',
2271
+ coinDecimals: 6,
2272
+ coinGeckoId: 'pool:uxki',
2273
+ coinImageUrl: '/tokens/blockchain/XKI.png',
2274
+ },
2275
+ ],
2276
+ feeCurrencies: [
2277
+ {
2278
+ coinDenom: 'XKI',
2279
+ coinMinimalDenom: 'uxki',
2280
+ coinDecimals: 6,
2281
+ coinGeckoId: 'pool:uxki',
2282
+ coinImageUrl: '/tokens/blockchain/XKI.png',
2283
+ },
2284
+ ],
2285
+ features: ['stargate', 'ibc-transfer'],
2286
+ explorerUrlToTx: 'https://www.mintscan.io/ki-chain/txs/{txHash}',
2287
+ gasPriceStep: null,
2288
+ },
2289
+ },
2290
+ {
2291
+ name: 'PERSISTENCE',
2292
+ defaultDecimals: 6,
2293
+ addressPatterns: ['^(persistence1)[0-9a-z]{38}$'],
2294
+ feeAssets: [
2295
+ {
2296
+ blockchain: 'PERSISTENCE',
2297
+ symbol: 'XPRT',
2298
+ address: null,
2299
+ },
2300
+ ],
2301
+ logo: 'https://api.rango.exchange/blockchains/persistence.png',
2302
+ displayName: 'Persistence',
2303
+ shortName: 'Persistence',
2304
+ sort: 31,
2305
+ color: '#383838',
2306
+ enabled: true,
2307
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2308
+ //@ts-ignore
2309
+ type: 'COSMOS',
2310
+ chainId: 'core-1',
2311
+ info: {
2312
+ infoType: 'CosmosMetaInfo',
2313
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2314
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2315
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2316
+ experimental: false,
2317
+ rpc: 'https://rpc-persistence.keplr.app',
2318
+ rest: 'https://lcd-persistence.keplr.app',
2319
+ cosmostationLcdUrl: 'https://lcd-persistence.cosmostation.io',
2320
+ cosmostationApiUrl: 'https://api-persistence.cosmostation.io',
2321
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2322
+ mintScanName: 'persistence',
2323
+ chainName: 'Persistence',
2324
+ stakeCurrency: {
2325
+ coinDenom: 'XPRT',
2326
+ coinMinimalDenom: 'uxprt',
2327
+ coinDecimals: 6,
2328
+ coinGeckoId: 'persistence',
2329
+ coinImageUrl: '/tokens/blockchain/xprt.png',
2330
+ },
2331
+ bip44: {
2332
+ coinType: 750,
2333
+ },
2334
+ bech32Config: {
2335
+ bech32PrefixAccAddr: 'persistence',
2336
+ bech32PrefixAccPub: 'persistencepub',
2337
+ bech32PrefixValAddr: 'persistencevaloper',
2338
+ bech32PrefixValPub: 'persistencevaloperpub',
2339
+ bech32PrefixConsAddr: 'persistencevalcons',
2340
+ bech32PrefixConsPub: 'persistencevalconspub',
2341
+ },
2342
+ currencies: [
2343
+ {
2344
+ coinDenom: 'XPRT',
2345
+ coinMinimalDenom: 'uxprt',
2346
+ coinDecimals: 6,
2347
+ coinGeckoId: 'persistence',
2348
+ coinImageUrl: '/tokens/blockchain/xprt.png',
2349
+ },
2350
+ ],
2351
+ feeCurrencies: [
2352
+ {
2353
+ coinDenom: 'XPRT',
2354
+ coinMinimalDenom: 'uxprt',
2355
+ coinDecimals: 6,
2356
+ coinGeckoId: 'persistence',
2357
+ coinImageUrl: '/tokens/blockchain/xprt.png',
2358
+ },
2359
+ ],
2360
+ features: ['stargate', 'ibc-transfer'],
2361
+ explorerUrlToTx: 'https://www.mintscan.io/persistence/txs/{txHash}',
2362
+ gasPriceStep: {
2363
+ low: 0,
2364
+ average: 0.025,
2365
+ high: 0.04,
2366
+ },
2367
+ },
2368
+ },
2369
+ {
2370
+ name: 'MEDIBLOC',
2371
+ defaultDecimals: 6,
2372
+ addressPatterns: ['^(panacea1)[0-9a-z]{38}$'],
2373
+ feeAssets: [
2374
+ {
2375
+ blockchain: 'MEDIBLOC',
2376
+ symbol: 'MED',
2377
+ address: null,
2378
+ },
2379
+ ],
2380
+ logo: 'https://api.rango.exchange/blockchains/medibloc.png',
2381
+ displayName: 'MediBloc',
2382
+ shortName: 'MediBloc',
2383
+ sort: 31,
2384
+ color: '#4B66DC',
2385
+ enabled: true,
2386
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2387
+ //@ts-ignore
2388
+ type: 'COSMOS',
2389
+ chainId: 'panacea-3',
2390
+ info: {
2391
+ infoType: 'CosmosMetaInfo',
2392
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2393
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2394
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2395
+ experimental: true,
2396
+ rpc: 'https://rpc.gopanacea.org',
2397
+ rest: 'https://api.gopanacea.org',
2398
+ cosmostationLcdUrl: 'https://lcd-medibloc.cosmostation.io',
2399
+ cosmostationApiUrl: 'https://api-medibloc.cosmostation.io',
2400
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2401
+ mintScanName: 'medibloc',
2402
+ chainName: 'MediBloc',
2403
+ stakeCurrency: {
2404
+ coinDenom: 'MED',
2405
+ coinMinimalDenom: 'umed',
2406
+ coinDecimals: 6,
2407
+ coinGeckoId: 'medibloc',
2408
+ coinImageUrl: '/tokens/blockchain/MED.png',
2409
+ },
2410
+ bip44: {
2411
+ coinType: 118,
2412
+ },
2413
+ bech32Config: {
2414
+ bech32PrefixAccAddr: 'panacea',
2415
+ bech32PrefixAccPub: 'panaceapub',
2416
+ bech32PrefixValAddr: 'panaceavaloper',
2417
+ bech32PrefixValPub: 'panaceavaloperpub',
2418
+ bech32PrefixConsAddr: 'panaceavalcons',
2419
+ bech32PrefixConsPub: 'panaceavalconspub',
2420
+ },
2421
+ currencies: [
2422
+ {
2423
+ coinDenom: 'MED',
2424
+ coinMinimalDenom: 'umed',
2425
+ coinDecimals: 6,
2426
+ coinGeckoId: 'medibloc',
2427
+ coinImageUrl: '/tokens/blockchain/MED.png',
2428
+ },
2429
+ ],
2430
+ feeCurrencies: [
2431
+ {
2432
+ coinDenom: 'MED',
2433
+ coinMinimalDenom: 'umed',
2434
+ coinDecimals: 6,
2435
+ coinGeckoId: 'medibloc',
2436
+ coinImageUrl: '/tokens/blockchain/MED.png',
2437
+ },
2438
+ ],
2439
+ features: ['stargate', 'ibc-transfer'],
2440
+ explorerUrlToTx: 'https://www.mintscan.io/medibloc/txs/{txHash}',
2441
+ gasPriceStep: {
2442
+ low: 5,
2443
+ average: 7,
2444
+ high: 9,
2445
+ },
2446
+ },
2447
+ },
2448
+ {
2449
+ name: 'KUJIRA',
2450
+ defaultDecimals: 6,
2451
+ addressPatterns: ['^(kujira1)[0-9a-z]{38}$'],
2452
+ feeAssets: [
2453
+ {
2454
+ blockchain: 'KUJIRA',
2455
+ symbol: 'KUJI',
2456
+ address: null,
2457
+ },
2458
+ ],
2459
+ logo: 'https://api.rango.exchange/blockchains/kuji.svg',
2460
+ displayName: 'Kujira',
2461
+ shortName: 'Kujira',
2462
+ sort: 31,
2463
+ color: '#DF3935',
2464
+ enabled: true,
2465
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2466
+ //@ts-ignore
2467
+ type: 'COSMOS',
2468
+ chainId: 'kaiyo-1',
2469
+ info: {
2470
+ infoType: 'CosmosMetaInfo',
2471
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2472
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2473
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2474
+ experimental: true,
2475
+ rpc: 'https://kujira-rpc.lavenderfive.com',
2476
+ rest: 'https://kujira-api.lavenderfive.com',
2477
+ cosmostationLcdUrl: 'https://lcd-kujira.cosmostation.io',
2478
+ cosmostationApiUrl: 'https://api-kujira.cosmostation.io',
2479
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2480
+ mintScanName: 'kujira',
2481
+ chainName: 'Kujira',
2482
+ stakeCurrency: {
2483
+ coinDenom: 'KUJI',
2484
+ coinMinimalDenom: 'ukuji',
2485
+ coinDecimals: 6,
2486
+ coinGeckoId: 'kujira',
2487
+ coinImageUrl: '/tokens/blockchain/kuji.svg',
2488
+ },
2489
+ bip44: {
2490
+ coinType: 118,
2491
+ },
2492
+ bech32Config: {
2493
+ bech32PrefixAccAddr: 'kujira',
2494
+ bech32PrefixAccPub: 'kujirapub',
2495
+ bech32PrefixValAddr: 'kujiravaloper',
2496
+ bech32PrefixValPub: 'kujiravaloperpub',
2497
+ bech32PrefixConsAddr: 'kujiravalcons',
2498
+ bech32PrefixConsPub: 'kujiravalconspub',
2499
+ },
2500
+ currencies: [
2501
+ {
2502
+ coinDenom: 'KUJI',
2503
+ coinMinimalDenom: 'ukuji',
2504
+ coinDecimals: 6,
2505
+ coinGeckoId: 'kujira',
2506
+ coinImageUrl: '/tokens/blockchain/kuji.png',
2507
+ },
2508
+ ],
2509
+ feeCurrencies: [
2510
+ {
2511
+ coinDenom: 'KUJI',
2512
+ coinMinimalDenom: 'ukuji',
2513
+ coinDecimals: 6,
2514
+ coinGeckoId: 'kujira',
2515
+ coinImageUrl: '/tokens/blockchain/kuji.png',
2516
+ },
2517
+ ],
2518
+ features: ['stargate', 'ibc-transfer'],
2519
+ explorerUrlToTx: 'https://finder.kujira.app/kaiyo-1/tx/{txHash}',
2520
+ gasPriceStep: {
2521
+ low: 0.01,
2522
+ average: 0.025,
2523
+ high: 0.03,
2524
+ },
2525
+ },
2526
+ },
2527
+ {
2528
+ name: 'SENTINEL',
2529
+ defaultDecimals: 6,
2530
+ addressPatterns: ['^(sent1)[0-9a-z]{38}$'],
2531
+ feeAssets: [
2532
+ {
2533
+ blockchain: 'SENTINEL',
2534
+ symbol: 'DVPN',
2535
+ address: null,
2536
+ },
2537
+ ],
2538
+ logo: 'https://api.rango.exchange/blockchains/sentinel.png',
2539
+ displayName: 'Sentinel',
2540
+ shortName: 'Sentinel',
2541
+ sort: 32,
2542
+ color: '#142E51',
2543
+ enabled: true,
2544
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2545
+ //@ts-ignore
2546
+ type: 'COSMOS',
2547
+ chainId: 'sentinelhub-2',
2548
+ info: {
2549
+ infoType: 'CosmosMetaInfo',
2550
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2551
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2552
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2553
+ experimental: false,
2554
+ rpc: 'https://rpc-sentinel.keplr.app',
2555
+ rest: 'https://lcd-sentinel.keplr.app',
2556
+ cosmostationLcdUrl: 'https://lcd-sentinel.cosmostation.io',
2557
+ cosmostationApiUrl: 'https://api-sentinel.cosmostation.io',
2558
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2559
+ mintScanName: 'sentinel',
2560
+ chainName: 'Sentinel',
2561
+ stakeCurrency: {
2562
+ coinDenom: 'DVPN',
2563
+ coinMinimalDenom: 'udvpn',
2564
+ coinDecimals: 6,
2565
+ coinGeckoId: 'sentinel',
2566
+ coinImageUrl: '/tokens/blockchain/dvpn.png',
2567
+ },
2568
+ bip44: {
2569
+ coinType: 118,
2570
+ },
2571
+ bech32Config: {
2572
+ bech32PrefixAccAddr: 'sent',
2573
+ bech32PrefixAccPub: 'sentpub',
2574
+ bech32PrefixValAddr: 'sentvaloper',
2575
+ bech32PrefixValPub: 'sentvaloperpub',
2576
+ bech32PrefixConsAddr: 'sentvalcons',
2577
+ bech32PrefixConsPub: 'sentvalconspub',
2578
+ },
2579
+ currencies: [
2580
+ {
2581
+ coinDenom: 'DVPN',
2582
+ coinMinimalDenom: 'udvpn',
2583
+ coinDecimals: 6,
2584
+ coinGeckoId: 'sentinel',
2585
+ coinImageUrl: '/tokens/blockchain/dvpn.png',
2586
+ },
2587
+ ],
2588
+ feeCurrencies: [
2589
+ {
2590
+ coinDenom: 'DVPN',
2591
+ coinMinimalDenom: 'udvpn',
2592
+ coinDecimals: 6,
2593
+ coinGeckoId: 'sentinel',
2594
+ coinImageUrl: '/tokens/blockchain/dvpn.png',
2595
+ },
2596
+ ],
2597
+ features: ['stargate', 'ibc-transfer'],
2598
+ explorerUrlToTx: 'https://www.mintscan.io/sentinel/txs/{txHash}',
2599
+ gasPriceStep: {
2600
+ low: 0.1,
2601
+ average: 0.25,
2602
+ high: 0.4,
2603
+ },
2604
+ },
2605
+ },
2606
+ {
2607
+ name: 'INJECTIVE',
2608
+ defaultDecimals: 6,
2609
+ addressPatterns: ['^(inj1)[0-9a-z]{38}$'],
2610
+ feeAssets: [
2611
+ {
2612
+ blockchain: 'INJECTIVE',
2613
+ symbol: 'INJ',
2614
+ address: null,
2615
+ },
2616
+ ],
2617
+ logo: 'https://api.rango.exchange/blockchains/injective.svg',
2618
+ displayName: 'Injective',
2619
+ shortName: 'Injective',
2620
+ sort: 33,
2621
+ color: '#29B2F4',
2622
+ enabled: true,
2623
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2624
+ //@ts-ignore
2625
+ type: 'COSMOS',
2626
+ chainId: 'injective-1',
2627
+ info: {
2628
+ infoType: 'CosmosMetaInfo',
2629
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2630
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2631
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2632
+ experimental: true,
2633
+ rpc: 'https://tm.injective.network',
2634
+ rest: 'https://lcd.injective.network',
2635
+ cosmostationLcdUrl: 'https://lcd-inj.cosmostation.io',
2636
+ cosmostationApiUrl: 'https://api-inj.cosmostation.io',
2637
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2638
+ mintScanName: 'injective',
2639
+ chainName: 'Injective',
2640
+ stakeCurrency: {
2641
+ coinDenom: 'INJ',
2642
+ coinMinimalDenom: 'uinj',
2643
+ coinDecimals: 18,
2644
+ coinGeckoId: 'injective',
2645
+ coinImageUrl: '/tokens/INJECTIVE/inj.svg',
2646
+ },
2647
+ bip44: {
2648
+ coinType: 529,
2649
+ },
2650
+ bech32Config: {
2651
+ bech32PrefixAccAddr: 'inj',
2652
+ bech32PrefixAccPub: 'injpub',
2653
+ bech32PrefixValAddr: 'injvaloper',
2654
+ bech32PrefixValPub: 'injvaloperpub',
2655
+ bech32PrefixConsAddr: 'injvalcons',
2656
+ bech32PrefixConsPub: 'injvalconspub',
2657
+ },
2658
+ currencies: [
2659
+ {
2660
+ coinDenom: 'INJ',
2661
+ coinMinimalDenom: 'uinj',
2662
+ coinDecimals: 18,
2663
+ coinGeckoId: 'injective',
2664
+ coinImageUrl: '/tokens/INJECTIVE/inj.svg',
2665
+ },
2666
+ ],
2667
+ feeCurrencies: [
2668
+ {
2669
+ coinDenom: 'INJ',
2670
+ coinMinimalDenom: 'uinj',
2671
+ coinDecimals: 18,
2672
+ coinGeckoId: 'injective',
2673
+ coinImageUrl: '/tokens/INJECTIVE/inj.svg',
2674
+ },
2675
+ ],
2676
+ features: ['stargate', 'ibc-transfer'],
2677
+ explorerUrlToTx: 'https://www.mintscan.io/injective/txs/{txHash}',
2678
+ gasPriceStep: {
2679
+ low: 500000000,
2680
+ average: 500000000,
2681
+ high: 500000000,
2682
+ },
2683
+ },
2684
+ },
2685
+ {
2686
+ name: 'SECRET',
2687
+ defaultDecimals: 6,
2688
+ addressPatterns: ['^(secret1)[0-9a-z]{38}$'],
2689
+ feeAssets: [
2690
+ {
2691
+ blockchain: 'SECRET',
2692
+ symbol: 'SCRT',
2693
+ address: null,
2694
+ },
2695
+ ],
2696
+ logo: 'https://api.rango.exchange/blockchains/secret.svg',
2697
+ displayName: 'Secret',
2698
+ shortName: 'Secret',
2699
+ sort: 34,
2700
+ color: '#1B1B1B',
2701
+ enabled: true,
2702
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2703
+ //@ts-ignore
2704
+ type: 'COSMOS',
2705
+ chainId: 'secret-4',
2706
+ info: {
2707
+ infoType: 'CosmosMetaInfo',
2708
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2709
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2710
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2711
+ experimental: false,
2712
+ rpc: 'https://rpc-secret.keplr.app',
2713
+ rest: 'https://lcd-secret.keplr.app',
2714
+ cosmostationLcdUrl: 'https://lcd-secret.cosmostation.io',
2715
+ cosmostationApiUrl: 'https://api-secret.cosmostation.io',
2716
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2717
+ mintScanName: 'secret',
2718
+ chainName: 'Secret',
2719
+ stakeCurrency: {
2720
+ coinDenom: 'SCRT',
2721
+ coinMinimalDenom: 'uscrt',
2722
+ coinDecimals: 6,
2723
+ coinGeckoId: 'secret',
2724
+ coinImageUrl: 'https://dhj8dql1kzq2v.cloudfront.net/white/secret.png',
2725
+ },
2726
+ bip44: {
2727
+ coinType: 529,
2728
+ },
2729
+ bech32Config: {
2730
+ bech32PrefixAccAddr: 'secret',
2731
+ bech32PrefixAccPub: 'secretpub',
2732
+ bech32PrefixValAddr: 'secretvaloper',
2733
+ bech32PrefixValPub: 'secretvaloperpub',
2734
+ bech32PrefixConsAddr: 'secretvalcons',
2735
+ bech32PrefixConsPub: 'secretvalconspub',
2736
+ },
2737
+ currencies: [
2738
+ {
2739
+ coinDenom: 'SCRT',
2740
+ coinMinimalDenom: 'uscrt',
2741
+ coinDecimals: 6,
2742
+ coinGeckoId: 'secret',
2743
+ coinImageUrl: 'https://dhj8dql1kzq2v.cloudfront.net/white/secret.png',
2744
+ },
2745
+ ],
2746
+ feeCurrencies: [
2747
+ {
2748
+ coinDenom: 'SCRT',
2749
+ coinMinimalDenom: 'uscrt',
2750
+ coinDecimals: 6,
2751
+ coinGeckoId: 'secret',
2752
+ coinImageUrl: 'https://dhj8dql1kzq2v.cloudfront.net/white/secret.png',
2753
+ },
2754
+ ],
2755
+ features: ['secretwasm'],
2756
+ explorerUrlToTx: 'https://www.mintscan.io/injective/txs/{txHash}',
2757
+ gasPriceStep: {
2758
+ low: 0.1,
2759
+ average: 0.25,
2760
+ high: 0.3,
2761
+ },
2762
+ },
2763
+ },
2764
+ {
2765
+ name: 'KONSTELLATION',
2766
+ defaultDecimals: 6,
2767
+ addressPatterns: ['^(darc1)[0-9a-z]{38}$'],
2768
+ feeAssets: [
2769
+ {
2770
+ blockchain: 'KONSTELLATION',
2771
+ symbol: 'DARC',
2772
+ address: null,
2773
+ },
2774
+ ],
2775
+ logo: 'https://api.rango.exchange/blockchains/konstellation.svg',
2776
+ displayName: 'Konstellation',
2777
+ shortName: 'Konstellation',
2778
+ sort: 35,
2779
+ color: '#3D7BC2',
2780
+ enabled: true,
2781
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2782
+ //@ts-ignore
2783
+ type: 'COSMOS',
2784
+ chainId: 'darchub',
2785
+ info: {
2786
+ infoType: 'CosmosMetaInfo',
2787
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2788
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2789
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2790
+ experimental: true,
2791
+ rpc: 'https://node1.konstellation.tech:26657',
2792
+ rest: 'https://node1.konstellation.tech:1318',
2793
+ cosmostationLcdUrl: 'https://api-konstellation.cosmostation.io',
2794
+ cosmostationApiUrl: 'https://api-konstellation.cosmostation.io',
2795
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2796
+ mintScanName: 'konstellation',
2797
+ chainName: 'Konstellation',
2798
+ stakeCurrency: {
2799
+ coinDenom: 'DARC',
2800
+ coinMinimalDenom: 'udarc',
2801
+ coinDecimals: 6,
2802
+ coinGeckoId: 'pool:udarc',
2803
+ coinImageUrl: '/tokens/blockchain/DARC.png',
2804
+ },
2805
+ bip44: {
2806
+ coinType: 118,
2807
+ },
2808
+ bech32Config: {
2809
+ bech32PrefixAccAddr: 'darc',
2810
+ bech32PrefixAccPub: 'darcpub',
2811
+ bech32PrefixValAddr: 'darcvaloper',
2812
+ bech32PrefixValPub: 'darcvaloperpub',
2813
+ bech32PrefixConsAddr: 'darcvalcons',
2814
+ bech32PrefixConsPub: 'darcvalconspub',
2815
+ },
2816
+ currencies: [
2817
+ {
2818
+ coinDenom: 'DARC',
2819
+ coinMinimalDenom: 'udarc',
2820
+ coinDecimals: 6,
2821
+ coinGeckoId: 'pool:udarc',
2822
+ coinImageUrl: '/tokens/blockchain/DARC.png',
2823
+ },
2824
+ ],
2825
+ feeCurrencies: [
2826
+ {
2827
+ coinDenom: 'DARC',
2828
+ coinMinimalDenom: 'udarc',
2829
+ coinDecimals: 6,
2830
+ coinGeckoId: 'pool:udarc',
2831
+ coinImageUrl: '/tokens/blockchain/DARC.png',
2832
+ },
2833
+ ],
2834
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
2835
+ explorerUrlToTx: 'https://www.mintscan.io/konstellation/txs/{txHash}',
2836
+ gasPriceStep: null,
2837
+ },
2838
+ },
2839
+ {
2840
+ name: 'STARNAME',
2841
+ defaultDecimals: 6,
2842
+ addressPatterns: ['^(star1)[0-9a-z]{38}$'],
2843
+ feeAssets: [
2844
+ {
2845
+ blockchain: 'STARNAME',
2846
+ symbol: 'IOV',
2847
+ address: null,
2848
+ },
2849
+ ],
2850
+ logo: 'https://api.rango.exchange/blockchains/starname.png',
2851
+ displayName: 'Starname',
2852
+ shortName: 'Starname',
2853
+ sort: 35,
2854
+ color: '#BC64BB',
2855
+ enabled: true,
2856
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2857
+ //@ts-ignore
2858
+ type: 'COSMOS',
2859
+ chainId: 'iov-mainnet-ibc',
2860
+ info: {
2861
+ infoType: 'CosmosMetaInfo',
2862
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2863
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2864
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2865
+ experimental: false,
2866
+ rpc: 'https://rpc-iov.keplr.app',
2867
+ rest: 'https://lcd-iov.keplr.app',
2868
+ cosmostationLcdUrl: 'https://lcd-iov.cosmostation.io',
2869
+ cosmostationApiUrl: 'https://api-iov.cosmostation.io',
2870
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2871
+ mintScanName: 'starname',
2872
+ chainName: 'Starname',
2873
+ stakeCurrency: {
2874
+ coinDenom: 'IOV',
2875
+ coinMinimalDenom: 'uiov',
2876
+ coinDecimals: 6,
2877
+ coinGeckoId: 'starname',
2878
+ coinImageUrl: '/tokens/blockchain/IOV.png',
2879
+ },
2880
+ bip44: {
2881
+ coinType: 494,
2882
+ },
2883
+ bech32Config: {
2884
+ bech32PrefixAccAddr: 'star',
2885
+ bech32PrefixAccPub: 'starpub',
2886
+ bech32PrefixValAddr: 'starvaloper',
2887
+ bech32PrefixValPub: 'starvaloperpub',
2888
+ bech32PrefixConsAddr: 'starvalcons',
2889
+ bech32PrefixConsPub: 'starvalconspub',
2890
+ },
2891
+ currencies: [
2892
+ {
2893
+ coinDenom: 'IOV',
2894
+ coinMinimalDenom: 'uiov',
2895
+ coinDecimals: 6,
2896
+ coinGeckoId: 'starname',
2897
+ coinImageUrl: '/tokens/blockchain/IOV.png',
2898
+ },
2899
+ ],
2900
+ feeCurrencies: [
2901
+ {
2902
+ coinDenom: 'IOV',
2903
+ coinMinimalDenom: 'uiov',
2904
+ coinDecimals: 6,
2905
+ coinGeckoId: 'starname',
2906
+ coinImageUrl: '/tokens/blockchain/IOV.png',
2907
+ },
2908
+ ],
2909
+ features: ['stargate', 'ibc-transfer'],
2910
+ explorerUrlToTx: 'https://www.mintscan.io/starname/txs/{txHash}',
2911
+ gasPriceStep: {
2912
+ low: 1,
2913
+ average: 2,
2914
+ high: 3,
2915
+ },
2916
+ },
2917
+ },
2918
+ {
2919
+ name: 'BITCANNA',
2920
+ defaultDecimals: 6,
2921
+ addressPatterns: ['^(bcna1)[0-9a-z]{38}$'],
2922
+ feeAssets: [
2923
+ {
2924
+ blockchain: 'BITCANNA',
2925
+ symbol: 'BCNA',
2926
+ address: null,
2927
+ },
2928
+ ],
2929
+ logo: 'https://api.rango.exchange/blockchains/bitcanna.svg',
2930
+ displayName: 'BitCanna',
2931
+ shortName: 'BitCanna',
2932
+ sort: 36,
2933
+ color: '#3CC194',
2934
+ enabled: true,
2935
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
2936
+ //@ts-ignore
2937
+ type: 'COSMOS',
2938
+ chainId: 'bitcanna-1',
2939
+ info: {
2940
+ infoType: 'CosmosMetaInfo',
2941
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
2942
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
2943
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
2944
+ experimental: true,
2945
+ rpc: 'https://rpc.bitcanna.io',
2946
+ rest: 'https://lcd.bitcanna.io',
2947
+ cosmostationLcdUrl: 'https://lcd-bitcanna.cosmostation.io',
2948
+ cosmostationApiUrl: 'https://api-bitcanna.cosmostation.io',
2949
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
2950
+ mintScanName: 'bitcanna',
2951
+ chainName: 'BitCanna',
2952
+ stakeCurrency: {
2953
+ coinDenom: 'BCNA',
2954
+ coinMinimalDenom: 'ubcna',
2955
+ coinDecimals: 6,
2956
+ coinGeckoId: 'bitcanna',
2957
+ coinImageUrl: '/tokens/blockchain/BCNA.png',
2958
+ },
2959
+ bip44: {
2960
+ coinType: 118,
2961
+ },
2962
+ bech32Config: {
2963
+ bech32PrefixAccAddr: 'bcna',
2964
+ bech32PrefixAccPub: 'bcnapub',
2965
+ bech32PrefixValAddr: 'bcnavaloper',
2966
+ bech32PrefixValPub: 'bcnavaloperpub',
2967
+ bech32PrefixConsAddr: 'bcnavalcons',
2968
+ bech32PrefixConsPub: 'bcnavalconspub',
2969
+ },
2970
+ currencies: [
2971
+ {
2972
+ coinDenom: 'BCNA',
2973
+ coinMinimalDenom: 'ubcna',
2974
+ coinDecimals: 6,
2975
+ coinGeckoId: 'bitcanna',
2976
+ coinImageUrl: '/tokens/blockchain/BCNA.png',
2977
+ },
2978
+ ],
2979
+ feeCurrencies: [
2980
+ {
2981
+ coinDenom: 'BCNA',
2982
+ coinMinimalDenom: 'ubcna',
2983
+ coinDecimals: 6,
2984
+ coinGeckoId: 'bitcanna',
2985
+ coinImageUrl: '/tokens/blockchain/BCNA.png',
2986
+ },
2987
+ ],
2988
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
2989
+ explorerUrlToTx: 'https://www.mintscan.io/bitcanna/txs/{txHash}',
2990
+ gasPriceStep: null,
2991
+ },
2992
+ },
2993
+ {
2994
+ name: 'UMEE',
2995
+ defaultDecimals: 6,
2996
+ addressPatterns: ['^(umee1)[0-9a-z]{38}$'],
2997
+ feeAssets: [
2998
+ {
2999
+ blockchain: 'UMEE',
3000
+ symbol: 'UMEE',
3001
+ address: null,
3002
+ },
3003
+ ],
3004
+ logo: 'https://api.rango.exchange/blockchains/umee.svg',
3005
+ displayName: 'Umee',
3006
+ shortName: 'Umee',
3007
+ sort: 36,
3008
+ color: '#D2B6FF',
3009
+ enabled: true,
3010
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3011
+ //@ts-ignore
3012
+ type: 'COSMOS',
3013
+ chainId: 'umee-1',
3014
+ info: {
3015
+ infoType: 'CosmosMetaInfo',
3016
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3017
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3018
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3019
+ experimental: false,
3020
+ rpc: 'https://api.barnacle.mainnet.network.umee.cc',
3021
+ rest: 'https://lcd-umee.cosmostation.io',
3022
+ cosmostationLcdUrl: 'https://lcd-umee.cosmostation.io',
3023
+ cosmostationApiUrl: 'https://api-umee.cosmostation.io',
3024
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3025
+ mintScanName: 'umee',
3026
+ chainName: 'Umee',
3027
+ stakeCurrency: {
3028
+ coinDenom: 'UMEE',
3029
+ coinMinimalDenom: 'uumee',
3030
+ coinDecimals: 6,
3031
+ coinGeckoId: 'pool:uumee',
3032
+ coinImageUrl: '/tokens/blockchain/UMEE.png',
3033
+ },
3034
+ bip44: {
3035
+ coinType: 118,
3036
+ },
3037
+ bech32Config: {
3038
+ bech32PrefixAccAddr: 'umee',
3039
+ bech32PrefixAccPub: 'umeepub',
3040
+ bech32PrefixValAddr: 'umeevaloper',
3041
+ bech32PrefixValPub: 'umeevaloperpub',
3042
+ bech32PrefixConsAddr: 'umeevalcons',
3043
+ bech32PrefixConsPub: 'umeevalconspub',
3044
+ },
3045
+ currencies: [
3046
+ {
3047
+ coinDenom: 'UMEE',
3048
+ coinMinimalDenom: 'uumee',
3049
+ coinDecimals: 6,
3050
+ coinGeckoId: 'pool:uumee',
3051
+ coinImageUrl: '/tokens/blockchain/UMEE.png',
3052
+ },
3053
+ ],
3054
+ feeCurrencies: [
3055
+ {
3056
+ coinDenom: 'UMEE',
3057
+ coinMinimalDenom: 'uumee',
3058
+ coinDecimals: 6,
3059
+ coinGeckoId: 'pool:uumee',
3060
+ coinImageUrl: '/tokens/blockchain/UMEE.png',
3061
+ },
3062
+ ],
3063
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
3064
+ explorerUrlToTx: 'https://www.mintscan.io/umee/txs/{txHash}',
3065
+ gasPriceStep: {
3066
+ low: 0.05,
3067
+ average: 0.06,
3068
+ high: 0.1,
3069
+ },
3070
+ },
3071
+ },
3072
+ {
3073
+ name: 'DESMOS',
3074
+ defaultDecimals: 6,
3075
+ addressPatterns: ['^(desmos1)[0-9a-z]{38}$'],
3076
+ feeAssets: [
3077
+ {
3078
+ blockchain: 'DESMOS',
3079
+ symbol: 'DSM',
3080
+ address: null,
3081
+ },
3082
+ ],
3083
+ logo: 'https://api.rango.exchange/blockchains/desmos.svg',
3084
+ displayName: 'Desmos',
3085
+ shortName: 'Desmos',
3086
+ sort: 37,
3087
+ color: '#DF6952',
3088
+ enabled: true,
3089
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3090
+ //@ts-ignore
3091
+ type: 'COSMOS',
3092
+ chainId: 'desmos-mainnet',
3093
+ info: {
3094
+ infoType: 'CosmosMetaInfo',
3095
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3096
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3097
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3098
+ experimental: true,
3099
+ rpc: 'https://rpc.mainnet.desmos.network',
3100
+ rest: 'https://api.mainnet.desmos.network',
3101
+ cosmostationLcdUrl: 'https://lcd-desmos.cosmostation.io',
3102
+ cosmostationApiUrl: 'https://api-desmos.cosmostation.io',
3103
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3104
+ mintScanName: 'desmos',
3105
+ chainName: 'Desmos',
3106
+ stakeCurrency: {
3107
+ coinDenom: 'DSM',
3108
+ coinMinimalDenom: 'udsm',
3109
+ coinDecimals: 6,
3110
+ coinGeckoId: 'pool:udsm',
3111
+ coinImageUrl: '/tokens/blockchain/DSM.png',
3112
+ },
3113
+ bip44: {
3114
+ coinType: 852,
3115
+ },
3116
+ bech32Config: {
3117
+ bech32PrefixAccAddr: 'desmos',
3118
+ bech32PrefixAccPub: 'desmospub',
3119
+ bech32PrefixValAddr: 'desmosvaloper',
3120
+ bech32PrefixValPub: 'desmosvaloperpub',
3121
+ bech32PrefixConsAddr: 'desmosvalcons',
3122
+ bech32PrefixConsPub: 'desmosvalconspub',
3123
+ },
3124
+ currencies: [
3125
+ {
3126
+ coinDenom: 'DSM',
3127
+ coinMinimalDenom: 'udsm',
3128
+ coinDecimals: 6,
3129
+ coinGeckoId: 'pool:udsm',
3130
+ coinImageUrl: '/tokens/blockchain/DSM.png',
3131
+ },
3132
+ ],
3133
+ feeCurrencies: [
3134
+ {
3135
+ coinDenom: 'DSM',
3136
+ coinMinimalDenom: 'udsm',
3137
+ coinDecimals: 6,
3138
+ coinGeckoId: 'pool:udsm',
3139
+ coinImageUrl: '/tokens/blockchain/DSM.png',
3140
+ },
3141
+ ],
3142
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
3143
+ explorerUrlToTx: 'https://explorer.desmos.network/transactions/{txHash}',
3144
+ gasPriceStep: null,
3145
+ },
3146
+ },
3147
+ {
3148
+ name: 'LUMNETWORK',
3149
+ defaultDecimals: 6,
3150
+ addressPatterns: ['^(lum1)[0-9a-z]{38}$'],
3151
+ feeAssets: [
3152
+ {
3153
+ blockchain: 'LUMNETWORK',
3154
+ symbol: 'LUM',
3155
+ address: null,
3156
+ },
3157
+ ],
3158
+ logo: 'https://api.rango.exchange/blockchains/lumnetwork.png',
3159
+ displayName: 'Lum Network',
3160
+ shortName: 'Lum Network',
3161
+ sort: 38,
3162
+ color: '#1B42B4',
3163
+ enabled: true,
3164
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3165
+ //@ts-ignore
3166
+ type: 'COSMOS',
3167
+ chainId: 'lum-network-1',
3168
+ info: {
3169
+ infoType: 'CosmosMetaInfo',
3170
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3171
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3172
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3173
+ experimental: true,
3174
+ rpc: 'https://node0.mainnet.lum.network/rpc',
3175
+ rest: 'https://node0.mainnet.lum.network/rest',
3176
+ cosmostationLcdUrl: 'https://lcd-lum.cosmostation.io',
3177
+ cosmostationApiUrl: 'https://api-lum.cosmostation.io',
3178
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3179
+ mintScanName: 'lum',
3180
+ chainName: 'Lum Network',
3181
+ stakeCurrency: {
3182
+ coinDenom: 'LUM',
3183
+ coinMinimalDenom: 'ulum',
3184
+ coinDecimals: 6,
3185
+ coinGeckoId: 'pool:ulum',
3186
+ coinImageUrl: '/tokens/blockchain/LUM.png',
3187
+ },
3188
+ bip44: {
3189
+ coinType: 118,
3190
+ },
3191
+ bech32Config: {
3192
+ bech32PrefixAccAddr: 'lum',
3193
+ bech32PrefixAccPub: 'lumpub',
3194
+ bech32PrefixValAddr: 'lumvaloper',
3195
+ bech32PrefixValPub: 'lumvaloperpub',
3196
+ bech32PrefixConsAddr: 'lumvalcons',
3197
+ bech32PrefixConsPub: 'lumvalconspub',
3198
+ },
3199
+ currencies: [
3200
+ {
3201
+ coinDenom: 'LUM',
3202
+ coinMinimalDenom: 'ulum',
3203
+ coinDecimals: 6,
3204
+ coinGeckoId: 'pool:ulum',
3205
+ coinImageUrl: '/tokens/blockchain/LUM.png',
3206
+ },
3207
+ ],
3208
+ feeCurrencies: [
3209
+ {
3210
+ coinDenom: 'LUM',
3211
+ coinMinimalDenom: 'ulum',
3212
+ coinDecimals: 6,
3213
+ coinGeckoId: 'pool:ulum',
3214
+ coinImageUrl: '/tokens/blockchain/LUM.png',
3215
+ },
3216
+ ],
3217
+ features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
3218
+ explorerUrlToTx: 'https://www.mintscan.io/lum/txs/{txHash}',
3219
+ gasPriceStep: null,
3220
+ },
3221
+ },
3222
+ {
3223
+ name: 'BOBA',
3224
+ defaultDecimals: 18,
3225
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3226
+ feeAssets: [
3227
+ {
3228
+ blockchain: 'BOBA',
3229
+ symbol: 'ETH',
3230
+ address: null,
3231
+ },
3232
+ ],
3233
+ logo: 'https://api.rango.exchange/blockchains/boba.png',
3234
+ displayName: 'Boba',
3235
+ shortName: 'Boba',
3236
+ sort: 39,
3237
+ color: '#ccff00',
3238
+ enabled: true,
3239
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3240
+ //@ts-ignore
3241
+ type: 'EVM',
3242
+ chainId: '0x120',
3243
+ info: {
3244
+ infoType: 'EvmMetaInfo',
3245
+ chainName: 'Boba Network',
3246
+ nativeCurrency: {
3247
+ name: 'ETH',
3248
+ symbol: 'ETH',
3249
+ decimals: 18,
3250
+ },
3251
+ rpcUrls: ['https://mainnet.boba.network'],
3252
+ blockExplorerUrls: ['https://bobascan.com/'],
3253
+ addressUrl: 'https://bobascan.com//address/{wallet}',
3254
+ transactionUrl: 'https://bobascan.com//tx/{txHash}',
3255
+ enableGasV2: true,
3256
+ },
3257
+ },
3258
+ {
3259
+ name: 'AXELAR',
3260
+ defaultDecimals: 6,
3261
+ addressPatterns: ['^(axelar1)[0-9a-z]{38}$'],
3262
+ feeAssets: [
3263
+ {
3264
+ blockchain: 'AXELAR',
3265
+ symbol: 'AXL',
3266
+ address: null,
3267
+ },
3268
+ ],
3269
+ logo: 'https://api.rango.exchange/blockchains/axelar.png',
3270
+ displayName: 'Axelar',
3271
+ shortName: 'Axelar',
3272
+ sort: 40,
3273
+ color: '#15181C',
3274
+ enabled: false,
3275
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3276
+ //@ts-ignore
3277
+ type: 'COSMOS',
3278
+ chainId: 'axelar-dojo-1',
3279
+ info: {
3280
+ infoType: 'CosmosMetaInfo',
3281
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3282
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3283
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3284
+ experimental: false,
3285
+ rpc: 'https://mainnet-rpc-router.axelar-dev.workers.dev/chain/axelar',
3286
+ rest: 'https://axelar-lcd.quickapi.com',
3287
+ cosmostationLcdUrl: 'https://axelar-lcd.quickapi.com',
3288
+ cosmostationApiUrl:
3289
+ 'https://mainnet-rpc-router.axelar-dev.workers.dev/chain/axelar',
3290
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3291
+ mintScanName: 'axelar',
3292
+ chainName: 'Axelar',
3293
+ stakeCurrency: {
3294
+ coinDenom: 'AXL',
3295
+ coinMinimalDenom: 'uaxl',
3296
+ coinDecimals: 6,
3297
+ coinGeckoId: 'axelar',
3298
+ coinImageUrl: '/tokens/blockchain/axl.png',
3299
+ },
3300
+ bip44: {
3301
+ coinType: 118,
3302
+ },
3303
+ bech32Config: {
3304
+ bech32PrefixAccAddr: 'axl',
3305
+ bech32PrefixAccPub: 'axlpub',
3306
+ bech32PrefixValAddr: 'axlvaloper',
3307
+ bech32PrefixValPub: 'axlvaloperpub',
3308
+ bech32PrefixConsAddr: 'axlvalcons',
3309
+ bech32PrefixConsPub: 'axlvalconspub',
3310
+ },
3311
+ currencies: [
3312
+ {
3313
+ coinDenom: 'AXL',
3314
+ coinMinimalDenom: 'uaxl',
3315
+ coinDecimals: 6,
3316
+ coinGeckoId: 'axelar',
3317
+ coinImageUrl: '/tokens/blockchain/axl.png',
3318
+ },
3319
+ ],
3320
+ feeCurrencies: [
3321
+ {
3322
+ coinDenom: 'AXL',
3323
+ coinMinimalDenom: 'uaxl',
3324
+ coinDecimals: 6,
3325
+ coinGeckoId: 'axelar',
3326
+ coinImageUrl: '/tokens/blockchain/axl.png',
3327
+ },
3328
+ ],
3329
+ features: ['stargate', 'ibc-transfer'],
3330
+ explorerUrlToTx: 'https://www.mintscan.io/axelar/txs/{txHash}',
3331
+ gasPriceStep: {
3332
+ low: 0.007,
3333
+ average: 0.007,
3334
+ high: 0.01,
3335
+ },
3336
+ },
3337
+ },
3338
+ {
3339
+ name: 'STRIDE',
3340
+ defaultDecimals: 6,
3341
+ addressPatterns: ['^(stride1)[0-9a-z]{38}$'],
3342
+ feeAssets: [
3343
+ {
3344
+ blockchain: 'STRIDE',
3345
+ symbol: 'STRD',
3346
+ address: null,
3347
+ },
3348
+ ],
3349
+ logo: 'https://api.rango.exchange/blockchains/stride.svg',
3350
+ displayName: 'Stride',
3351
+ shortName: 'Stride',
3352
+ sort: 41,
3353
+ color: '#D63178',
3354
+ enabled: true,
3355
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3356
+ //@ts-ignore
3357
+ type: 'COSMOS',
3358
+ chainId: 'stride-1',
3359
+ info: {
3360
+ infoType: 'CosmosMetaInfo',
3361
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3362
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3363
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3364
+ experimental: false,
3365
+ rpc: 'https://rpc-stride.keplr.app',
3366
+ rest: 'https://lcd-stride.keplr.app',
3367
+ cosmostationLcdUrl: 'https://lcd-stride.cosmostation.io',
3368
+ cosmostationApiUrl: 'https://api-stride.cosmostation.io',
3369
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3370
+ mintScanName: 'stride',
3371
+ chainName: 'Stride',
3372
+ stakeCurrency: {
3373
+ coinDenom: 'STRD',
3374
+ coinMinimalDenom: 'ustrd',
3375
+ coinDecimals: 6,
3376
+ coinGeckoId: 'stride',
3377
+ coinImageUrl: '',
3378
+ },
3379
+ bip44: {
3380
+ coinType: 118,
3381
+ },
3382
+ bech32Config: {
3383
+ bech32PrefixAccAddr: 'stride',
3384
+ bech32PrefixAccPub: 'stridepub',
3385
+ bech32PrefixValAddr: 'stridevaloper',
3386
+ bech32PrefixValPub: 'stridevaloperpub',
3387
+ bech32PrefixConsAddr: 'stridevalcons',
3388
+ bech32PrefixConsPub: 'stridevalconspub',
3389
+ },
3390
+ currencies: [
3391
+ {
3392
+ coinDenom: 'STRD',
3393
+ coinMinimalDenom: 'ustrd',
3394
+ coinDecimals: 6,
3395
+ coinGeckoId: 'stride',
3396
+ coinImageUrl: '',
3397
+ },
3398
+ {
3399
+ coinDenom: 'stATOM',
3400
+ coinMinimalDenom: 'stuatom',
3401
+ coinDecimals: 6,
3402
+ coinGeckoId: 'stride-staked-atom',
3403
+ coinImageUrl: '',
3404
+ },
3405
+ {
3406
+ coinDenom: 'stOSMO',
3407
+ coinMinimalDenom: 'stuosmo',
3408
+ coinDecimals: 6,
3409
+ coinGeckoId: 'stride-staked-osmo',
3410
+ coinImageUrl: '',
3411
+ },
3412
+ {
3413
+ coinDenom: 'stJUNO',
3414
+ coinMinimalDenom: 'stujuno',
3415
+ coinDecimals: 6,
3416
+ coinGeckoId: 'stride-staked-juno',
3417
+ coinImageUrl: '',
3418
+ },
3419
+ {
3420
+ coinDenom: 'stSTARS',
3421
+ coinMinimalDenom: 'stustars',
3422
+ coinDecimals: 6,
3423
+ coinGeckoId: '',
3424
+ coinImageUrl: '',
3425
+ },
3426
+ {
3427
+ coinDenom: 'stEVMOS',
3428
+ coinMinimalDenom: 'staevmos',
3429
+ coinDecimals: 18,
3430
+ coinGeckoId: '',
3431
+ coinImageUrl: '',
3432
+ },
3433
+ {
3434
+ coinDenom: 'stLUNA',
3435
+ coinMinimalDenom: 'stuluna',
3436
+ coinDecimals: 6,
3437
+ coinGeckoId: '',
3438
+ coinImageUrl: '',
3439
+ },
3440
+ ],
3441
+ feeCurrencies: [
3442
+ {
3443
+ coinDenom: 'STRD',
3444
+ coinMinimalDenom: 'ustrd',
3445
+ coinDecimals: 6,
3446
+ coinGeckoId: 'stride',
3447
+ coinImageUrl: '',
3448
+ },
3449
+ ],
3450
+ features: ['ibc-transfer'],
3451
+ explorerUrlToTx: 'https://www.mintscan.io/stride/txs/{txHash}',
3452
+ gasPriceStep: {
3453
+ low: 0.001,
3454
+ average: 0.0025,
3455
+ high: 0.04,
3456
+ },
3457
+ },
3458
+ },
3459
+ {
3460
+ name: 'KCC',
3461
+ defaultDecimals: 18,
3462
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3463
+ feeAssets: [
3464
+ {
3465
+ blockchain: 'KCC',
3466
+ symbol: 'KCS',
3467
+ address: null,
3468
+ },
3469
+ ],
3470
+ logo: 'https://api.rango.exchange/blockchains/kcc.png',
3471
+ displayName: 'Kcc',
3472
+ shortName: 'Kcc',
3473
+ sort: 41,
3474
+ color: '#ccff00',
3475
+ enabled: true,
3476
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3477
+ //@ts-ignore
3478
+ type: 'EVM',
3479
+ chainId: '0x141',
3480
+ info: {
3481
+ infoType: 'EvmMetaInfo',
3482
+ chainName: 'Kcc Network',
3483
+ nativeCurrency: {
3484
+ name: 'KCS',
3485
+ symbol: 'KCS',
3486
+ decimals: 18,
3487
+ },
3488
+ rpcUrls: ['https://rpc-mainnet.kcc.network/'],
3489
+ blockExplorerUrls: ['https://explorer.kcc.io/en'],
3490
+ addressUrl: 'https://explorer.kcc.io/en/address/{wallet}',
3491
+ transactionUrl: 'https://explorer.kcc.io/en/tx/{txHash}',
3492
+ enableGasV2: true,
3493
+ },
3494
+ },
3495
+ {
3496
+ name: 'MARS',
3497
+ defaultDecimals: 6,
3498
+ addressPatterns: ['^(mars1)[0-9a-z]{38}$'],
3499
+ feeAssets: [
3500
+ {
3501
+ blockchain: 'MARS',
3502
+ symbol: 'MARS',
3503
+ address: null,
3504
+ },
3505
+ ],
3506
+ logo: 'https://api.rango.exchange/blockchains/mars.svg',
3507
+ displayName: 'Mars',
3508
+ shortName: 'Mars',
3509
+ sort: 42,
3510
+ color: '#CB4B3D',
3511
+ enabled: true,
3512
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3513
+ //@ts-ignore
3514
+ type: 'COSMOS',
3515
+ chainId: 'mars-1',
3516
+ info: {
3517
+ infoType: 'CosmosMetaInfo',
3518
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3519
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3520
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3521
+ experimental: false,
3522
+ rpc: 'https://rpc-mars.keplr.app',
3523
+ rest: 'https://lcd-mars.keplr.app',
3524
+ cosmostationLcdUrl: 'https://lcd-mars-protocol.cosmostation.io',
3525
+ cosmostationApiUrl: 'https://api-mars-protocol.cosmostation.io',
3526
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3527
+ mintScanName: 'mars-protocol',
3528
+ chainName: 'Mars',
3529
+ stakeCurrency: {
3530
+ coinDenom: 'MARS',
3531
+ coinMinimalDenom: 'umars',
3532
+ coinDecimals: 6,
3533
+ coinGeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3',
3534
+ coinImageUrl: '/tokens/blockchain/mars.svg',
3535
+ },
3536
+ bip44: {
3537
+ coinType: 118,
3538
+ },
3539
+ bech32Config: {
3540
+ bech32PrefixAccAddr: 'mars',
3541
+ bech32PrefixAccPub: 'marspub',
3542
+ bech32PrefixValAddr: 'marsvaloper',
3543
+ bech32PrefixValPub: 'marsvaloperpub',
3544
+ bech32PrefixConsAddr: 'marsvalcons',
3545
+ bech32PrefixConsPub: 'marsvalconspub',
3546
+ },
3547
+ currencies: [
3548
+ {
3549
+ coinDenom: 'MARS',
3550
+ coinMinimalDenom: 'umars',
3551
+ coinDecimals: 6,
3552
+ coinGeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3',
3553
+ coinImageUrl: '/tokens/blockchain/mars.svg',
3554
+ },
3555
+ ],
3556
+ feeCurrencies: [
3557
+ {
3558
+ coinDenom: 'MARS',
3559
+ coinMinimalDenom: 'umars',
3560
+ coinDecimals: 6,
3561
+ coinGeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3',
3562
+ coinImageUrl: '/tokens/blockchain/mars.svg',
3563
+ },
3564
+ ],
3565
+ features: ['ibc-transfer'],
3566
+ explorerUrlToTx: 'https://www.mintscan.io/mars-protocol/txs/{txHash}',
3567
+ gasPriceStep: {
3568
+ low: 0.001,
3569
+ average: 0.0025,
3570
+ high: 0.01,
3571
+ },
3572
+ },
3573
+ },
3574
+ {
3575
+ name: 'TERRA',
3576
+ defaultDecimals: 6,
3577
+ addressPatterns: ['^(terra1)[0-9a-z]{38}$'],
3578
+ feeAssets: [
3579
+ {
3580
+ blockchain: 'TERRA',
3581
+ symbol: 'LUNA',
3582
+ address: null,
3583
+ },
3584
+ ],
3585
+ logo: 'https://api.rango.exchange/blockchains/terra.png',
3586
+ displayName: 'Terra 2.0',
3587
+ shortName: 'Terra 2.0',
3588
+ sort: 43,
3589
+ color: '#5493F7',
3590
+ enabled: true,
3591
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3592
+ //@ts-ignore
3593
+ type: 'COSMOS',
3594
+ chainId: 'phoenix-1',
3595
+ info: {
3596
+ infoType: 'CosmosMetaInfo',
3597
+ blockExplorerUrls: ['https://www.mintscan.io/cosmos/'],
3598
+ addressUrl: 'https://www.mintscan.io/cosmos/account/{wallet}',
3599
+ transactionUrl: 'https://www.mintscan.io/cosmos/txs/{txHash}',
3600
+ experimental: false,
3601
+ rpc: 'https://rpc-phoenix.keplr.app',
3602
+ rest: 'https://lcd-phoenix.keplr.app',
3603
+ cosmostationLcdUrl: 'https://phoenix-lcd.terra.dev',
3604
+ cosmostationApiUrl: null,
3605
+ cosmostationDenomTracePath: '/ibc/apps/transfer/v1/denom_traces/',
3606
+ mintScanName: null,
3607
+ chainName: 'Terra 2.0',
3608
+ stakeCurrency: {
3609
+ coinDenom: 'LUNA',
3610
+ coinMinimalDenom: 'uluna',
3611
+ coinDecimals: 6,
3612
+ coinGeckoId: 'terra-luna-2',
3613
+ coinImageUrl: '',
3614
+ },
3615
+ bip44: {
3616
+ coinType: 330,
3617
+ },
3618
+ bech32Config: {
3619
+ bech32PrefixAccAddr: 'terra',
3620
+ bech32PrefixAccPub: 'terrapub',
3621
+ bech32PrefixValAddr: 'terravaloper',
3622
+ bech32PrefixValPub: 'terravaloperpub',
3623
+ bech32PrefixConsAddr: 'terravalcons',
3624
+ bech32PrefixConsPub: 'terravalconspub',
3625
+ },
3626
+ currencies: [
3627
+ {
3628
+ coinDenom: 'LUNA',
3629
+ coinMinimalDenom: 'uluna',
3630
+ coinDecimals: 6,
3631
+ coinGeckoId: 'terra-luna-2',
3632
+ coinImageUrl: '',
3633
+ },
3634
+ ],
3635
+ feeCurrencies: [
3636
+ {
3637
+ coinDenom: 'LUNA',
3638
+ coinMinimalDenom: 'uluna',
3639
+ coinDecimals: 6,
3640
+ coinGeckoId: 'terra-luna-2',
3641
+ coinImageUrl: '',
3642
+ },
3643
+ ],
3644
+ features: ['cosmwasm', 'ibc-transfer'],
3645
+ explorerUrlToTx: 'https://finder.terra.money/mainnet/txs/{txHash}',
3646
+ gasPriceStep: {
3647
+ low: 0.0125,
3648
+ average: 0.015,
3649
+ high: 0.15,
3650
+ },
3651
+ },
3652
+ },
3653
+ {
3654
+ name: 'TELOS',
3655
+ defaultDecimals: 18,
3656
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3657
+ feeAssets: [
3658
+ {
3659
+ blockchain: 'TELOS',
3660
+ symbol: 'TLOS',
3661
+ address: null,
3662
+ },
3663
+ ],
3664
+ logo: 'https://api.rango.exchange/blockchains/telos.png',
3665
+ displayName: 'Telos',
3666
+ shortName: 'Telos',
3667
+ sort: 49,
3668
+ color: '#6144ae',
3669
+ enabled: true,
3670
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3671
+ //@ts-ignore
3672
+ type: 'EVM',
3673
+ chainId: '0x28',
3674
+ info: {
3675
+ infoType: 'EvmMetaInfo',
3676
+ chainName: 'Telos Mainnet',
3677
+ nativeCurrency: {
3678
+ name: 'TLOS',
3679
+ symbol: 'TLOS',
3680
+ decimals: 18,
3681
+ },
3682
+ rpcUrls: ['https://mainnet.telos.net/evm'],
3683
+ blockExplorerUrls: ['https://www.teloscan.io'],
3684
+ addressUrl: 'https://www.teloscan.io/address/{wallet}',
3685
+ transactionUrl: 'https://www.teloscan.io/tx/{txHash}',
3686
+ enableGasV2: true,
3687
+ },
3688
+ },
3689
+ {
3690
+ name: 'BOBA_BNB',
3691
+ defaultDecimals: 18,
3692
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3693
+ feeAssets: [
3694
+ {
3695
+ blockchain: 'BOBA_BNB',
3696
+ symbol: 'BOBA',
3697
+ address: null,
3698
+ },
3699
+ ],
3700
+ logo: 'https://api.rango.exchange/blockchains/boba.png',
3701
+ displayName: 'Boba Bnb',
3702
+ shortName: 'Boba Bnb',
3703
+ sort: 63,
3704
+ color: '#ccff00',
3705
+ enabled: true,
3706
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3707
+ //@ts-ignore
3708
+ type: 'EVM',
3709
+ chainId: '0xdbe0',
3710
+ info: {
3711
+ infoType: 'EvmMetaInfo',
3712
+ chainName: 'Boba Bnb Network',
3713
+ nativeCurrency: {
3714
+ name: 'BOBA',
3715
+ symbol: 'BOBA',
3716
+ decimals: 18,
3717
+ },
3718
+ rpcUrls: ['https://bnb.boba.network'],
3719
+ blockExplorerUrls: ['https://blockexplorer.bnb.boba.network'],
3720
+ addressUrl: 'https://blockexplorer.bnb.boba.network/address/{wallet}',
3721
+ transactionUrl: 'https://blockexplorer.bnb.boba.network/tx/{txHash}',
3722
+ enableGasV2: true,
3723
+ },
3724
+ },
3725
+ {
3726
+ name: 'BOBA_BEAM',
3727
+ defaultDecimals: 18,
3728
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3729
+ feeAssets: [
3730
+ {
3731
+ blockchain: 'BOBA_BEAM',
3732
+ symbol: 'BOBA',
3733
+ address: null,
3734
+ },
3735
+ ],
3736
+ logo: 'https://api.rango.exchange/blockchains/boba.png',
3737
+ displayName: 'Boba Beam',
3738
+ shortName: 'Boba Beam',
3739
+ sort: 64,
3740
+ color: '#ccff00',
3741
+ enabled: false,
3742
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3743
+ //@ts-ignore
3744
+ type: 'EVM',
3745
+ chainId: '0x50e',
3746
+ info: {
3747
+ infoType: 'EvmMetaInfo',
3748
+ chainName: 'Boba Beam Network',
3749
+ nativeCurrency: {
3750
+ name: 'BOBA',
3751
+ symbol: 'BOBA',
3752
+ decimals: 18,
3753
+ },
3754
+ rpcUrls: ['https://bobabeam.boba.network'],
3755
+ blockExplorerUrls: ['https://blockexplorer.bobabeam.boba.network'],
3756
+ addressUrl:
3757
+ 'https://blockexplorer.bobabeam.boba.network/address/{wallet}',
3758
+ transactionUrl: 'https://blockexplorer.bobabeam.boba.network/tx/{txHash}',
3759
+ enableGasV2: true,
3760
+ },
3761
+ },
3762
+ {
3763
+ name: 'BOBA_AVALANCHE',
3764
+ defaultDecimals: 18,
3765
+ addressPatterns: ['^(0x)[0-9A-Fa-f]{40}$'],
3766
+ feeAssets: [
3767
+ {
3768
+ blockchain: 'BOBA_AVALANCHE',
3769
+ symbol: 'BOBA',
3770
+ address: null,
3771
+ },
3772
+ ],
3773
+ logo: 'https://api.rango.exchange/blockchains/boba.png',
3774
+ displayName: 'Boba Avalanche',
3775
+ shortName: 'Boba Avalanche',
3776
+ sort: 65,
3777
+ color: '#ccff00',
3778
+ enabled: true,
3779
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
3780
+ //@ts-ignore
3781
+ type: 'EVM',
3782
+ chainId: '0xa918',
3783
+ info: {
3784
+ infoType: 'EvmMetaInfo',
3785
+ chainName: 'Boba Avalanche Network',
3786
+ nativeCurrency: {
3787
+ name: 'BOBA',
3788
+ symbol: 'BOBA',
3789
+ decimals: 18,
3790
+ },
3791
+ rpcUrls: ['https://avax.boba.network'],
3792
+ blockExplorerUrls: ['https://blockexplorer.avax.boba.network'],
3793
+ addressUrl: 'https://blockexplorer.avax.boba.network/address/{wallet}',
3794
+ transactionUrl: 'https://blockexplorer.avax.boba.network/tx/{txHash}',
3795
+ enableGasV2: true,
3796
+ },
3797
+ },
3798
+ ];