@rango-dev/provider-walletconnect-2 0.53.1 → 0.53.2-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/cosmos-GW6CF7TA.js +2 -0
- package/dist/cosmos-GW6CF7TA.js.map +7 -0
- package/dist/index.js +1 -1
- package/dist/provider-walletconnect-2.build.json +1 -1
- package/package.json +6 -6
- package/src/signers/mock.ts +60 -0
- package/dist/cosmos-I3Z34UI3.js +0 -2
- package/dist/cosmos-I3Z34UI3.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/provider-walletconnect-2",
|
|
3
|
-
"version": "0.53.1",
|
|
3
|
+
"version": "0.53.2-next.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@keplr-wallet/cosmos": "^0.9.12",
|
|
26
26
|
"@keplr-wallet/simple-fetch": "^0.12.14",
|
|
27
27
|
"@rango-dev/logging-core": "^0.12.1",
|
|
28
|
-
"@rango-dev/signer-cosmos": "^0.39.1",
|
|
29
|
-
"@rango-dev/signer-evm": "^0.41.1",
|
|
30
|
-
"@rango-dev/signer-solana": "^0.47.1",
|
|
31
|
-
"@rango-dev/wallets-shared": "^0.59.1",
|
|
28
|
+
"@rango-dev/signer-cosmos": "^0.39.2-next.1",
|
|
29
|
+
"@rango-dev/signer-evm": "^0.41.2-next.1",
|
|
30
|
+
"@rango-dev/signer-solana": "^0.47.2-next.1",
|
|
31
|
+
"@rango-dev/wallets-shared": "^0.59.2-next.1",
|
|
32
32
|
"@solana/web3.js": "^1.91.4",
|
|
33
33
|
"@walletconnect/encoding": "^1.0.2",
|
|
34
34
|
"@walletconnect/sign-client": "^2.11.2",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"bs58": "^5.0.0",
|
|
37
37
|
"caip": "^1.1.1",
|
|
38
38
|
"cosmos-wallet": "^1.2.0",
|
|
39
|
-
"rango-types": "^0.
|
|
39
|
+
"rango-types": "^0.4.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@walletconnect/modal": "^2.6.2",
|
package/src/signers/mock.ts
CHANGED
|
@@ -35,6 +35,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
35
35
|
addressUrl: 'https://bscscan.com/address/{wallet}',
|
|
36
36
|
transactionUrl: 'https://bscscan.com/tx/{txHash}',
|
|
37
37
|
enableGasV2: true,
|
|
38
|
+
tokenUrl: 'https://bscscan.com/token/{address}',
|
|
38
39
|
},
|
|
39
40
|
},
|
|
40
41
|
{
|
|
@@ -71,6 +72,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
71
72
|
addressUrl: 'https://polygonscan.com/address/{wallet}',
|
|
72
73
|
transactionUrl: 'https://polygonscan.com/tx/{txHash}',
|
|
73
74
|
enableGasV2: true,
|
|
75
|
+
tokenUrl: 'https://polygonscan.com/token/{address}',
|
|
74
76
|
},
|
|
75
77
|
},
|
|
76
78
|
{
|
|
@@ -107,6 +109,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
107
109
|
addressUrl: 'https://etherscan.io/address/{wallet}',
|
|
108
110
|
transactionUrl: 'https://etherscan.io/tx/{txHash}',
|
|
109
111
|
enableGasV2: true,
|
|
112
|
+
tokenUrl: 'https://etherscan.io/token/{address}',
|
|
110
113
|
},
|
|
111
114
|
},
|
|
112
115
|
{
|
|
@@ -193,6 +196,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
193
196
|
average: 0.025,
|
|
194
197
|
high: 0.04,
|
|
195
198
|
},
|
|
199
|
+
tokenUrl: 'https://www.mintscan.io/osmosis/assets/{address}',
|
|
196
200
|
},
|
|
197
201
|
},
|
|
198
202
|
{
|
|
@@ -272,6 +276,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
272
276
|
average: 0.0025,
|
|
273
277
|
high: 0.004,
|
|
274
278
|
},
|
|
279
|
+
tokenUrl: null,
|
|
275
280
|
},
|
|
276
281
|
},
|
|
277
282
|
{
|
|
@@ -308,6 +313,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
308
313
|
addressUrl: 'https://snowtrace.io/address/{wallet}',
|
|
309
314
|
transactionUrl: 'https://snowtrace.io/tx/{txHash}',
|
|
310
315
|
enableGasV2: true,
|
|
316
|
+
tokenUrl: 'https://snowtrace.dev/token/{address}',
|
|
311
317
|
},
|
|
312
318
|
},
|
|
313
319
|
{
|
|
@@ -344,6 +350,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
344
350
|
addressUrl: 'https://arbiscan.io/address/{wallet}',
|
|
345
351
|
transactionUrl: 'https://arbiscan.io/tx/{txHash}',
|
|
346
352
|
enableGasV2: true,
|
|
353
|
+
tokenUrl: 'https://arbiscan.io/token/{address}',
|
|
347
354
|
},
|
|
348
355
|
},
|
|
349
356
|
{
|
|
@@ -423,6 +430,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
423
430
|
average: 0.025,
|
|
424
431
|
high: 0.04,
|
|
425
432
|
},
|
|
433
|
+
tokenUrl: 'https://www.mintscan.io/cosmos/assets/{address}',
|
|
426
434
|
},
|
|
427
435
|
},
|
|
428
436
|
{
|
|
@@ -531,6 +539,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
531
539
|
average: 0.0075,
|
|
532
540
|
high: 0.0075,
|
|
533
541
|
},
|
|
542
|
+
tokenUrl: null,
|
|
534
543
|
},
|
|
535
544
|
},
|
|
536
545
|
{
|
|
@@ -567,6 +576,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
567
576
|
addressUrl: 'https://ftmscan.com/address/{wallet}',
|
|
568
577
|
transactionUrl: 'https://ftmscan.com/tx/{txHash}',
|
|
569
578
|
enableGasV2: true,
|
|
579
|
+
tokenUrl: 'https://explorer.fantom.network/token/{address}',
|
|
570
580
|
},
|
|
571
581
|
},
|
|
572
582
|
{
|
|
@@ -603,6 +613,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
603
613
|
addressUrl: 'https://optimistic.etherscan.io/address/{wallet}',
|
|
604
614
|
transactionUrl: 'https://optimistic.etherscan.io/tx/{txHash}',
|
|
605
615
|
enableGasV2: true,
|
|
616
|
+
tokenUrl: 'https://optimistic.etherscan.io/token/{address}',
|
|
606
617
|
},
|
|
607
618
|
},
|
|
608
619
|
{
|
|
@@ -639,6 +650,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
639
650
|
addressUrl: 'https://www.oklink.com/en/okc/address/{wallet}',
|
|
640
651
|
transactionUrl: 'https://www.oklink.com/en/okc/tx/{txHash}',
|
|
641
652
|
enableGasV2: true,
|
|
653
|
+
tokenUrl: null,
|
|
642
654
|
},
|
|
643
655
|
},
|
|
644
656
|
{
|
|
@@ -674,6 +686,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
674
686
|
blockExplorerUrls: ['https://starkscan.co'],
|
|
675
687
|
addressUrl: 'https://starkscan.co/contract/{wallet}',
|
|
676
688
|
transactionUrl: 'https://starkscan.co/tx/{txHash}',
|
|
689
|
+
tokenUrl: 'https://voyager.online/token/{address}',
|
|
677
690
|
},
|
|
678
691
|
},
|
|
679
692
|
{
|
|
@@ -733,6 +746,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
733
746
|
addressUrl: 'https://cronoscan.com/address/{wallet}',
|
|
734
747
|
transactionUrl: 'https://cronoscan.com/tx/{txHash}',
|
|
735
748
|
enableGasV2: true,
|
|
749
|
+
tokenUrl: 'https://cronoscan.com/token/{address}',
|
|
736
750
|
},
|
|
737
751
|
},
|
|
738
752
|
{
|
|
@@ -769,6 +783,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
769
783
|
addressUrl: 'https://moonriver.moonscan.io/address/{wallet}',
|
|
770
784
|
transactionUrl: 'https://moonriver.moonscan.io/tx/{txHash}',
|
|
771
785
|
enableGasV2: true,
|
|
786
|
+
tokenUrl: null,
|
|
772
787
|
},
|
|
773
788
|
},
|
|
774
789
|
{
|
|
@@ -805,6 +820,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
805
820
|
addressUrl: 'https://explorer.zksync.io/address/{wallet}',
|
|
806
821
|
transactionUrl: 'https://explorer.zksync.io/tx/{txHash}',
|
|
807
822
|
enableGasV2: true,
|
|
823
|
+
tokenUrl: 'https://explorer.zksync.io/token/{address}',
|
|
808
824
|
},
|
|
809
825
|
},
|
|
810
826
|
{
|
|
@@ -841,6 +857,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
841
857
|
addressUrl: 'https://moonbeam.moonscan.io/address/{wallet}',
|
|
842
858
|
transactionUrl: 'https://moonbeam.moonscan.io/tx/{txHash}',
|
|
843
859
|
enableGasV2: true,
|
|
860
|
+
tokenUrl: null,
|
|
844
861
|
},
|
|
845
862
|
},
|
|
846
863
|
{
|
|
@@ -894,6 +911,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
894
911
|
addressUrl: 'https://explorer.mainnet.aurora.dev/address/{wallet}',
|
|
895
912
|
transactionUrl: 'https://explorer.mainnet.aurora.dev/tx/{txHash}',
|
|
896
913
|
enableGasV2: true,
|
|
914
|
+
tokenUrl: 'https://explorer.mainnet.aurora.dev/token/{address}',
|
|
897
915
|
},
|
|
898
916
|
},
|
|
899
917
|
{
|
|
@@ -953,6 +971,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
953
971
|
addressUrl: 'https://explorer.harmony.one/address/{wallet}',
|
|
954
972
|
transactionUrl: 'https://explorer.harmony.one/tx/{txHash}',
|
|
955
973
|
enableGasV2: true,
|
|
974
|
+
tokenUrl: null,
|
|
956
975
|
},
|
|
957
976
|
},
|
|
958
977
|
{
|
|
@@ -989,6 +1008,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
989
1008
|
addressUrl: 'https://evm.evmos.org/address/{wallet}',
|
|
990
1009
|
transactionUrl: 'https://evm.evmos.org/tx/{txHash}',
|
|
991
1010
|
enableGasV2: true,
|
|
1011
|
+
tokenUrl: null,
|
|
992
1012
|
},
|
|
993
1013
|
},
|
|
994
1014
|
{
|
|
@@ -1025,6 +1045,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1025
1045
|
addressUrl: 'https://zkevm.polygonscan.com/address/{wallet}',
|
|
1026
1046
|
transactionUrl: 'https://zkevm.polygonscan.com/tx/{txHash}',
|
|
1027
1047
|
enableGasV2: true,
|
|
1048
|
+
tokenUrl: 'https://zkevm.polygonscan.com/token/{address}',
|
|
1028
1049
|
},
|
|
1029
1050
|
},
|
|
1030
1051
|
{
|
|
@@ -1061,6 +1082,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1061
1082
|
addressUrl: 'https://hecoinfo.com/address/{wallet}',
|
|
1062
1083
|
transactionUrl: 'https://hecoinfo.com/tx/{txHash}',
|
|
1063
1084
|
enableGasV2: true,
|
|
1085
|
+
tokenUrl: null,
|
|
1064
1086
|
},
|
|
1065
1087
|
},
|
|
1066
1088
|
{
|
|
@@ -1097,6 +1119,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1097
1119
|
addressUrl: 'https://tronscan.org/#/address/{wallet}',
|
|
1098
1120
|
transactionUrl: 'https://tronscan.org/#/tx/{txHash}',
|
|
1099
1121
|
enableGasV2: true,
|
|
1122
|
+
tokenUrl: 'https://tronscan.org/#/token20/{address}',
|
|
1100
1123
|
},
|
|
1101
1124
|
},
|
|
1102
1125
|
{
|
|
@@ -1176,6 +1199,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1176
1199
|
average: 1500000000000,
|
|
1177
1200
|
high: 2000000000000,
|
|
1178
1201
|
},
|
|
1202
|
+
tokenUrl: null,
|
|
1179
1203
|
},
|
|
1180
1204
|
},
|
|
1181
1205
|
{
|
|
@@ -1258,6 +1282,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1258
1282
|
addressUrl: 'https://brisescan.com//address/{wallet}',
|
|
1259
1283
|
transactionUrl: 'https://brisescan.com//tx/{txHash}',
|
|
1260
1284
|
enableGasV2: true,
|
|
1285
|
+
tokenUrl: null,
|
|
1261
1286
|
},
|
|
1262
1287
|
},
|
|
1263
1288
|
{
|
|
@@ -1360,6 +1385,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1360
1385
|
average: 1,
|
|
1361
1386
|
high: 1,
|
|
1362
1387
|
},
|
|
1388
|
+
tokenUrl: null,
|
|
1363
1389
|
},
|
|
1364
1390
|
},
|
|
1365
1391
|
{
|
|
@@ -1464,6 +1490,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1464
1490
|
average: 0.03,
|
|
1465
1491
|
high: 0.04,
|
|
1466
1492
|
},
|
|
1493
|
+
tokenUrl: null,
|
|
1467
1494
|
},
|
|
1468
1495
|
},
|
|
1469
1496
|
{
|
|
@@ -1543,6 +1570,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1543
1570
|
average: 0.03,
|
|
1544
1571
|
high: 0.035,
|
|
1545
1572
|
},
|
|
1573
|
+
tokenUrl: null,
|
|
1546
1574
|
},
|
|
1547
1575
|
},
|
|
1548
1576
|
{
|
|
@@ -1618,6 +1646,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1618
1646
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
1619
1647
|
explorerUrlToTx: 'https://cosmoscan.io/tx/{txHash}',
|
|
1620
1648
|
gasPriceStep: null,
|
|
1649
|
+
tokenUrl: null,
|
|
1621
1650
|
},
|
|
1622
1651
|
},
|
|
1623
1652
|
{
|
|
@@ -1693,6 +1722,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1693
1722
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
1694
1723
|
explorerUrlToTx: 'https://www.mintscan.io/comdex/txs/{txHash}',
|
|
1695
1724
|
gasPriceStep: null,
|
|
1725
|
+
tokenUrl: null,
|
|
1696
1726
|
},
|
|
1697
1727
|
},
|
|
1698
1728
|
{
|
|
@@ -1772,6 +1802,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1772
1802
|
average: 0.025,
|
|
1773
1803
|
high: 0.04,
|
|
1774
1804
|
},
|
|
1805
|
+
tokenUrl: null,
|
|
1775
1806
|
},
|
|
1776
1807
|
},
|
|
1777
1808
|
{
|
|
@@ -1851,6 +1882,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1851
1882
|
average: 0.3,
|
|
1852
1883
|
high: 0.4,
|
|
1853
1884
|
},
|
|
1885
|
+
tokenUrl: null,
|
|
1854
1886
|
},
|
|
1855
1887
|
},
|
|
1856
1888
|
{
|
|
@@ -1938,6 +1970,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1938
1970
|
average: 1,
|
|
1939
1971
|
high: 1,
|
|
1940
1972
|
},
|
|
1973
|
+
tokenUrl: null,
|
|
1941
1974
|
},
|
|
1942
1975
|
},
|
|
1943
1976
|
{
|
|
@@ -1974,6 +2007,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1974
2007
|
addressUrl: 'https://blockscout.com/xdai/mainnet/address/{wallet}',
|
|
1975
2008
|
transactionUrl: 'https://blockscout.com/xdai/mainnet/tx/{txHash}',
|
|
1976
2009
|
enableGasV2: true,
|
|
2010
|
+
tokenUrl: null,
|
|
1977
2011
|
},
|
|
1978
2012
|
},
|
|
1979
2013
|
{
|
|
@@ -2056,6 +2090,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2056
2090
|
addressUrl: 'https://explorer.fuse.io/address/{wallet}',
|
|
2057
2091
|
transactionUrl: 'https://explorer.fuse.io/tx/{txHash}',
|
|
2058
2092
|
enableGasV2: true,
|
|
2093
|
+
tokenUrl: null,
|
|
2059
2094
|
},
|
|
2060
2095
|
},
|
|
2061
2096
|
{
|
|
@@ -2131,6 +2166,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2131
2166
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
2132
2167
|
explorerUrlToTx: 'https://explorebitsong.com/transactions/{txHash}',
|
|
2133
2168
|
gasPriceStep: null,
|
|
2169
|
+
tokenUrl: null,
|
|
2134
2170
|
},
|
|
2135
2171
|
},
|
|
2136
2172
|
{
|
|
@@ -2210,6 +2246,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2210
2246
|
average: 0.0025,
|
|
2211
2247
|
high: 0.004,
|
|
2212
2248
|
},
|
|
2249
|
+
tokenUrl: null,
|
|
2213
2250
|
},
|
|
2214
2251
|
},
|
|
2215
2252
|
{
|
|
@@ -2285,6 +2322,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2285
2322
|
features: ['stargate', 'ibc-transfer'],
|
|
2286
2323
|
explorerUrlToTx: 'https://www.mintscan.io/ki-chain/txs/{txHash}',
|
|
2287
2324
|
gasPriceStep: null,
|
|
2325
|
+
tokenUrl: null,
|
|
2288
2326
|
},
|
|
2289
2327
|
},
|
|
2290
2328
|
{
|
|
@@ -2364,6 +2402,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2364
2402
|
average: 0.025,
|
|
2365
2403
|
high: 0.04,
|
|
2366
2404
|
},
|
|
2405
|
+
tokenUrl: null,
|
|
2367
2406
|
},
|
|
2368
2407
|
},
|
|
2369
2408
|
{
|
|
@@ -2443,6 +2482,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2443
2482
|
average: 7,
|
|
2444
2483
|
high: 9,
|
|
2445
2484
|
},
|
|
2485
|
+
tokenUrl: null,
|
|
2446
2486
|
},
|
|
2447
2487
|
},
|
|
2448
2488
|
{
|
|
@@ -2522,6 +2562,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2522
2562
|
average: 0.025,
|
|
2523
2563
|
high: 0.03,
|
|
2524
2564
|
},
|
|
2565
|
+
tokenUrl: null,
|
|
2525
2566
|
},
|
|
2526
2567
|
},
|
|
2527
2568
|
{
|
|
@@ -2601,6 +2642,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2601
2642
|
average: 0.25,
|
|
2602
2643
|
high: 0.4,
|
|
2603
2644
|
},
|
|
2645
|
+
tokenUrl: null,
|
|
2604
2646
|
},
|
|
2605
2647
|
},
|
|
2606
2648
|
{
|
|
@@ -2680,6 +2722,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2680
2722
|
average: 500000000,
|
|
2681
2723
|
high: 500000000,
|
|
2682
2724
|
},
|
|
2725
|
+
tokenUrl: null,
|
|
2683
2726
|
},
|
|
2684
2727
|
},
|
|
2685
2728
|
{
|
|
@@ -2759,6 +2802,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2759
2802
|
average: 0.25,
|
|
2760
2803
|
high: 0.3,
|
|
2761
2804
|
},
|
|
2805
|
+
tokenUrl: null,
|
|
2762
2806
|
},
|
|
2763
2807
|
},
|
|
2764
2808
|
{
|
|
@@ -2834,6 +2878,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2834
2878
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
2835
2879
|
explorerUrlToTx: 'https://www.mintscan.io/konstellation/txs/{txHash}',
|
|
2836
2880
|
gasPriceStep: null,
|
|
2881
|
+
tokenUrl: null,
|
|
2837
2882
|
},
|
|
2838
2883
|
},
|
|
2839
2884
|
{
|
|
@@ -2913,6 +2958,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2913
2958
|
average: 2,
|
|
2914
2959
|
high: 3,
|
|
2915
2960
|
},
|
|
2961
|
+
tokenUrl: null,
|
|
2916
2962
|
},
|
|
2917
2963
|
},
|
|
2918
2964
|
{
|
|
@@ -2988,6 +3034,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2988
3034
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
2989
3035
|
explorerUrlToTx: 'https://www.mintscan.io/bitcanna/txs/{txHash}',
|
|
2990
3036
|
gasPriceStep: null,
|
|
3037
|
+
tokenUrl: null,
|
|
2991
3038
|
},
|
|
2992
3039
|
},
|
|
2993
3040
|
{
|
|
@@ -3067,6 +3114,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3067
3114
|
average: 0.06,
|
|
3068
3115
|
high: 0.1,
|
|
3069
3116
|
},
|
|
3117
|
+
tokenUrl: null,
|
|
3070
3118
|
},
|
|
3071
3119
|
},
|
|
3072
3120
|
{
|
|
@@ -3142,6 +3190,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3142
3190
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
3143
3191
|
explorerUrlToTx: 'https://explorer.desmos.network/transactions/{txHash}',
|
|
3144
3192
|
gasPriceStep: null,
|
|
3193
|
+
tokenUrl: null,
|
|
3145
3194
|
},
|
|
3146
3195
|
},
|
|
3147
3196
|
{
|
|
@@ -3217,6 +3266,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3217
3266
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
3218
3267
|
explorerUrlToTx: 'https://www.mintscan.io/lum/txs/{txHash}',
|
|
3219
3268
|
gasPriceStep: null,
|
|
3269
|
+
tokenUrl: null,
|
|
3220
3270
|
},
|
|
3221
3271
|
},
|
|
3222
3272
|
{
|
|
@@ -3253,6 +3303,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3253
3303
|
addressUrl: 'https://bobascan.com//address/{wallet}',
|
|
3254
3304
|
transactionUrl: 'https://bobascan.com//tx/{txHash}',
|
|
3255
3305
|
enableGasV2: true,
|
|
3306
|
+
tokenUrl: null,
|
|
3256
3307
|
},
|
|
3257
3308
|
},
|
|
3258
3309
|
{
|
|
@@ -3333,6 +3384,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3333
3384
|
average: 0.007,
|
|
3334
3385
|
high: 0.01,
|
|
3335
3386
|
},
|
|
3387
|
+
tokenUrl: null,
|
|
3336
3388
|
},
|
|
3337
3389
|
},
|
|
3338
3390
|
{
|
|
@@ -3454,6 +3506,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3454
3506
|
average: 0.0025,
|
|
3455
3507
|
high: 0.04,
|
|
3456
3508
|
},
|
|
3509
|
+
tokenUrl: null,
|
|
3457
3510
|
},
|
|
3458
3511
|
},
|
|
3459
3512
|
{
|
|
@@ -3490,6 +3543,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3490
3543
|
addressUrl: 'https://explorer.kcc.io/en/address/{wallet}',
|
|
3491
3544
|
transactionUrl: 'https://explorer.kcc.io/en/tx/{txHash}',
|
|
3492
3545
|
enableGasV2: true,
|
|
3546
|
+
tokenUrl: null,
|
|
3493
3547
|
},
|
|
3494
3548
|
},
|
|
3495
3549
|
{
|
|
@@ -3569,6 +3623,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3569
3623
|
average: 0.0025,
|
|
3570
3624
|
high: 0.01,
|
|
3571
3625
|
},
|
|
3626
|
+
tokenUrl: null,
|
|
3572
3627
|
},
|
|
3573
3628
|
},
|
|
3574
3629
|
{
|
|
@@ -3648,6 +3703,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3648
3703
|
average: 0.015,
|
|
3649
3704
|
high: 0.15,
|
|
3650
3705
|
},
|
|
3706
|
+
tokenUrl: null,
|
|
3651
3707
|
},
|
|
3652
3708
|
},
|
|
3653
3709
|
{
|
|
@@ -3684,6 +3740,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3684
3740
|
addressUrl: 'https://www.teloscan.io/address/{wallet}',
|
|
3685
3741
|
transactionUrl: 'https://www.teloscan.io/tx/{txHash}',
|
|
3686
3742
|
enableGasV2: true,
|
|
3743
|
+
tokenUrl: null,
|
|
3687
3744
|
},
|
|
3688
3745
|
},
|
|
3689
3746
|
{
|
|
@@ -3720,6 +3777,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3720
3777
|
addressUrl: 'https://blockexplorer.bnb.boba.network/address/{wallet}',
|
|
3721
3778
|
transactionUrl: 'https://blockexplorer.bnb.boba.network/tx/{txHash}',
|
|
3722
3779
|
enableGasV2: true,
|
|
3780
|
+
tokenUrl: null,
|
|
3723
3781
|
},
|
|
3724
3782
|
},
|
|
3725
3783
|
{
|
|
@@ -3757,6 +3815,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3757
3815
|
'https://blockexplorer.bobabeam.boba.network/address/{wallet}',
|
|
3758
3816
|
transactionUrl: 'https://blockexplorer.bobabeam.boba.network/tx/{txHash}',
|
|
3759
3817
|
enableGasV2: true,
|
|
3818
|
+
tokenUrl: null,
|
|
3760
3819
|
},
|
|
3761
3820
|
},
|
|
3762
3821
|
{
|
|
@@ -3793,6 +3852,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3793
3852
|
addressUrl: 'https://blockexplorer.avax.boba.network/address/{wallet}',
|
|
3794
3853
|
transactionUrl: 'https://blockexplorer.avax.boba.network/tx/{txHash}',
|
|
3795
3854
|
enableGasV2: true,
|
|
3855
|
+
tokenUrl: null,
|
|
3796
3856
|
},
|
|
3797
3857
|
},
|
|
3798
3858
|
];
|