@rango-dev/provider-walletconnect-2 0.30.1-next.6 → 0.30.1-next.7
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/dist/cosmos-I3Z34UI3.js +2 -0
- package/dist/cosmos-I3Z34UI3.js.map +7 -0
- package/dist/index.js +1 -1
- package/dist/provider-walletconnect-2.build.json +1 -1
- package/package.json +7 -7
- package/src/signers/mock.ts +123 -0
- package/dist/cosmos-EMGK355Q.js +0 -2
- package/dist/cosmos-EMGK355Q.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.30.1-next.
|
|
3
|
+
"version": "0.30.1-next.7",
|
|
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.6.0",
|
|
28
|
-
"@rango-dev/signer-cosmos": "^0.29.0",
|
|
29
|
-
"@rango-dev/signer-evm": "^0.30.0",
|
|
30
|
-
"@rango-dev/signer-solana": "^0.32.1-next.
|
|
31
|
-
"@rango-dev/wallets-shared": "^0.37.1-next.
|
|
28
|
+
"@rango-dev/signer-cosmos": "^0.29.1-next.0",
|
|
29
|
+
"@rango-dev/signer-evm": "^0.30.1-next.0",
|
|
30
|
+
"@rango-dev/signer-solana": "^0.32.1-next.2",
|
|
31
|
+
"@rango-dev/wallets-shared": "^0.37.1-next.4",
|
|
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.1.
|
|
39
|
+
"rango-types": "^0.1.74"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@walletconnect/modal": "^2.6.2",
|
|
@@ -45,4 +45,4 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
}
|
|
48
|
-
}
|
|
48
|
+
}
|
package/src/signers/mock.ts
CHANGED
|
@@ -34,6 +34,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
34
34
|
blockExplorerUrls: ['https://bscscan.com'],
|
|
35
35
|
addressUrl: 'https://bscscan.com/address/{wallet}',
|
|
36
36
|
transactionUrl: 'https://bscscan.com/tx/{txHash}',
|
|
37
|
+
enableGasV2: true,
|
|
37
38
|
},
|
|
38
39
|
},
|
|
39
40
|
{
|
|
@@ -69,6 +70,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
69
70
|
blockExplorerUrls: ['https://polygonscan.com'],
|
|
70
71
|
addressUrl: 'https://polygonscan.com/address/{wallet}',
|
|
71
72
|
transactionUrl: 'https://polygonscan.com/tx/{txHash}',
|
|
73
|
+
enableGasV2: true,
|
|
72
74
|
},
|
|
73
75
|
},
|
|
74
76
|
{
|
|
@@ -104,6 +106,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
104
106
|
blockExplorerUrls: ['https://etherscan.io'],
|
|
105
107
|
addressUrl: 'https://etherscan.io/address/{wallet}',
|
|
106
108
|
transactionUrl: 'https://etherscan.io/tx/{txHash}',
|
|
109
|
+
enableGasV2: true,
|
|
107
110
|
},
|
|
108
111
|
},
|
|
109
112
|
{
|
|
@@ -129,6 +132,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
129
132
|
chainId: 'osmosis-1',
|
|
130
133
|
info: {
|
|
131
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}',
|
|
132
138
|
experimental: false,
|
|
133
139
|
rpc: 'https://rpc-osmosis.keplr.app',
|
|
134
140
|
rest: 'https://lcd-osmosis.keplr.app',
|
|
@@ -212,6 +218,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
212
218
|
chainId: 'juno-1',
|
|
213
219
|
info: {
|
|
214
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}',
|
|
215
224
|
experimental: false,
|
|
216
225
|
rpc: 'https://rpc-juno.itastakers.com:443/',
|
|
217
226
|
rest: 'https://lcd-juno.keplr.app',
|
|
@@ -298,6 +307,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
298
307
|
blockExplorerUrls: ['https://snowtrace.io'],
|
|
299
308
|
addressUrl: 'https://snowtrace.io/address/{wallet}',
|
|
300
309
|
transactionUrl: 'https://snowtrace.io/tx/{txHash}',
|
|
310
|
+
enableGasV2: true,
|
|
301
311
|
},
|
|
302
312
|
},
|
|
303
313
|
{
|
|
@@ -333,6 +343,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
333
343
|
blockExplorerUrls: ['https://arbiscan.io'],
|
|
334
344
|
addressUrl: 'https://arbiscan.io/address/{wallet}',
|
|
335
345
|
transactionUrl: 'https://arbiscan.io/tx/{txHash}',
|
|
346
|
+
enableGasV2: true,
|
|
336
347
|
},
|
|
337
348
|
},
|
|
338
349
|
{
|
|
@@ -358,6 +369,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
358
369
|
chainId: 'cosmoshub-4',
|
|
359
370
|
info: {
|
|
360
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}',
|
|
361
375
|
experimental: false,
|
|
362
376
|
rpc: 'https://cosmos-rpc.polkachu.com',
|
|
363
377
|
rest: 'https://lcd-cosmoshub.keplr.app',
|
|
@@ -449,6 +463,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
449
463
|
chainId: 'columbus-5',
|
|
450
464
|
info: {
|
|
451
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}',
|
|
452
469
|
experimental: true,
|
|
453
470
|
rpc: 'https://rpc-columbus.keplr.app',
|
|
454
471
|
rest: 'https://lcd-columbus.keplr.app',
|
|
@@ -549,6 +566,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
549
566
|
blockExplorerUrls: ['https://ftmscan.com'],
|
|
550
567
|
addressUrl: 'https://ftmscan.com/address/{wallet}',
|
|
551
568
|
transactionUrl: 'https://ftmscan.com/tx/{txHash}',
|
|
569
|
+
enableGasV2: true,
|
|
552
570
|
},
|
|
553
571
|
},
|
|
554
572
|
{
|
|
@@ -584,6 +602,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
584
602
|
blockExplorerUrls: ['https://optimistic.etherscan.io'],
|
|
585
603
|
addressUrl: 'https://optimistic.etherscan.io/address/{wallet}',
|
|
586
604
|
transactionUrl: 'https://optimistic.etherscan.io/tx/{txHash}',
|
|
605
|
+
enableGasV2: true,
|
|
587
606
|
},
|
|
588
607
|
},
|
|
589
608
|
{
|
|
@@ -619,6 +638,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
619
638
|
blockExplorerUrls: ['https://www.oklink.com/en/okc'],
|
|
620
639
|
addressUrl: 'https://www.oklink.com/en/okc/address/{wallet}',
|
|
621
640
|
transactionUrl: 'https://www.oklink.com/en/okc/tx/{txHash}',
|
|
641
|
+
enableGasV2: true,
|
|
622
642
|
},
|
|
623
643
|
},
|
|
624
644
|
{
|
|
@@ -712,6 +732,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
712
732
|
blockExplorerUrls: ['https://cronoscan.com'],
|
|
713
733
|
addressUrl: 'https://cronoscan.com/address/{wallet}',
|
|
714
734
|
transactionUrl: 'https://cronoscan.com/tx/{txHash}',
|
|
735
|
+
enableGasV2: true,
|
|
715
736
|
},
|
|
716
737
|
},
|
|
717
738
|
{
|
|
@@ -747,6 +768,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
747
768
|
blockExplorerUrls: ['https://moonriver.moonscan.io'],
|
|
748
769
|
addressUrl: 'https://moonriver.moonscan.io/address/{wallet}',
|
|
749
770
|
transactionUrl: 'https://moonriver.moonscan.io/tx/{txHash}',
|
|
771
|
+
enableGasV2: true,
|
|
750
772
|
},
|
|
751
773
|
},
|
|
752
774
|
{
|
|
@@ -782,6 +804,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
782
804
|
blockExplorerUrls: ['https://explorer.zksync.io'],
|
|
783
805
|
addressUrl: 'https://explorer.zksync.io/address/{wallet}',
|
|
784
806
|
transactionUrl: 'https://explorer.zksync.io/tx/{txHash}',
|
|
807
|
+
enableGasV2: true,
|
|
785
808
|
},
|
|
786
809
|
},
|
|
787
810
|
{
|
|
@@ -817,6 +840,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
817
840
|
blockExplorerUrls: ['https://moonbeam.moonscan.io'],
|
|
818
841
|
addressUrl: 'https://moonbeam.moonscan.io/address/{wallet}',
|
|
819
842
|
transactionUrl: 'https://moonbeam.moonscan.io/tx/{txHash}',
|
|
843
|
+
enableGasV2: true,
|
|
820
844
|
},
|
|
821
845
|
},
|
|
822
846
|
{
|
|
@@ -869,6 +893,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
869
893
|
blockExplorerUrls: ['https://explorer.mainnet.aurora.dev'],
|
|
870
894
|
addressUrl: 'https://explorer.mainnet.aurora.dev/address/{wallet}',
|
|
871
895
|
transactionUrl: 'https://explorer.mainnet.aurora.dev/tx/{txHash}',
|
|
896
|
+
enableGasV2: true,
|
|
872
897
|
},
|
|
873
898
|
},
|
|
874
899
|
{
|
|
@@ -927,6 +952,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
927
952
|
blockExplorerUrls: ['https://explorer.harmony.one'],
|
|
928
953
|
addressUrl: 'https://explorer.harmony.one/address/{wallet}',
|
|
929
954
|
transactionUrl: 'https://explorer.harmony.one/tx/{txHash}',
|
|
955
|
+
enableGasV2: true,
|
|
930
956
|
},
|
|
931
957
|
},
|
|
932
958
|
{
|
|
@@ -962,6 +988,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
962
988
|
blockExplorerUrls: ['https://evm.evmos.org'],
|
|
963
989
|
addressUrl: 'https://evm.evmos.org/address/{wallet}',
|
|
964
990
|
transactionUrl: 'https://evm.evmos.org/tx/{txHash}',
|
|
991
|
+
enableGasV2: true,
|
|
965
992
|
},
|
|
966
993
|
},
|
|
967
994
|
{
|
|
@@ -997,6 +1024,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
997
1024
|
blockExplorerUrls: ['https://zkevm.polygonscan.com'],
|
|
998
1025
|
addressUrl: 'https://zkevm.polygonscan.com/address/{wallet}',
|
|
999
1026
|
transactionUrl: 'https://zkevm.polygonscan.com/tx/{txHash}',
|
|
1027
|
+
enableGasV2: true,
|
|
1000
1028
|
},
|
|
1001
1029
|
},
|
|
1002
1030
|
{
|
|
@@ -1032,6 +1060,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1032
1060
|
blockExplorerUrls: ['https://hecoinfo.com'],
|
|
1033
1061
|
addressUrl: 'https://hecoinfo.com/address/{wallet}',
|
|
1034
1062
|
transactionUrl: 'https://hecoinfo.com/tx/{txHash}',
|
|
1063
|
+
enableGasV2: true,
|
|
1035
1064
|
},
|
|
1036
1065
|
},
|
|
1037
1066
|
{
|
|
@@ -1067,6 +1096,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1067
1096
|
blockExplorerUrls: ['https://tronscan.org/#'],
|
|
1068
1097
|
addressUrl: 'https://tronscan.org/#/address/{wallet}',
|
|
1069
1098
|
transactionUrl: 'https://tronscan.org/#/tx/{txHash}',
|
|
1099
|
+
enableGasV2: true,
|
|
1070
1100
|
},
|
|
1071
1101
|
},
|
|
1072
1102
|
{
|
|
@@ -1092,6 +1122,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1092
1122
|
chainId: 'sifchain-1',
|
|
1093
1123
|
info: {
|
|
1094
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}',
|
|
1095
1128
|
experimental: false,
|
|
1096
1129
|
rpc: 'https://rpc.sifchain.finance',
|
|
1097
1130
|
rest: 'https://api-sifchain-ia.cosmosia.notional.ventures/',
|
|
@@ -1224,6 +1257,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1224
1257
|
blockExplorerUrls: ['https://brisescan.com/'],
|
|
1225
1258
|
addressUrl: 'https://brisescan.com//address/{wallet}',
|
|
1226
1259
|
transactionUrl: 'https://brisescan.com//tx/{txHash}',
|
|
1260
|
+
enableGasV2: true,
|
|
1227
1261
|
},
|
|
1228
1262
|
},
|
|
1229
1263
|
{
|
|
@@ -1272,6 +1306,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1272
1306
|
chainId: 'stargaze-1',
|
|
1273
1307
|
info: {
|
|
1274
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}',
|
|
1275
1312
|
experimental: false,
|
|
1276
1313
|
rpc: 'https://rpc.stargaze-apis.com',
|
|
1277
1314
|
rest: 'https://rest.stargaze-apis.com',
|
|
@@ -1373,6 +1410,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1373
1410
|
chainId: 'crypto-org-chain-mainnet-1',
|
|
1374
1411
|
info: {
|
|
1375
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}',
|
|
1376
1416
|
experimental: false,
|
|
1377
1417
|
rpc: 'https://rpc-crypto-org.keplr.app',
|
|
1378
1418
|
rest: 'https://lcd-crypto-org.keplr.app',
|
|
@@ -1449,6 +1489,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1449
1489
|
chainId: 'chihuahua-1',
|
|
1450
1490
|
info: {
|
|
1451
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}',
|
|
1452
1495
|
experimental: true,
|
|
1453
1496
|
rpc: 'https://rpc.chihuahua.wtf/',
|
|
1454
1497
|
rest: 'https://api.chihuahua.wtf/',
|
|
@@ -1525,6 +1568,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1525
1568
|
chainId: 'laozi-mainnet',
|
|
1526
1569
|
info: {
|
|
1527
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}',
|
|
1528
1574
|
experimental: true,
|
|
1529
1575
|
rpc: 'https://rpc.laozi3.bandchain.org/',
|
|
1530
1576
|
rest: 'https://lcd-band.cosmostation.io',
|
|
@@ -1597,6 +1643,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1597
1643
|
chainId: 'comdex-1',
|
|
1598
1644
|
info: {
|
|
1599
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}',
|
|
1600
1649
|
experimental: true,
|
|
1601
1650
|
rpc: 'https://rpc.comdex.one',
|
|
1602
1651
|
rest: 'https://rest.comdex.one',
|
|
@@ -1669,6 +1718,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1669
1718
|
chainId: 'regen-1',
|
|
1670
1719
|
info: {
|
|
1671
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}',
|
|
1672
1724
|
experimental: false,
|
|
1673
1725
|
rpc: 'https://rpc-regen.keplr.app',
|
|
1674
1726
|
rest: 'https://lcd-regen.keplr.app',
|
|
@@ -1745,6 +1797,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1745
1797
|
chainId: 'irishub-1',
|
|
1746
1798
|
info: {
|
|
1747
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}',
|
|
1748
1803
|
experimental: false,
|
|
1749
1804
|
rpc: 'https://rpc-iris.keplr.app',
|
|
1750
1805
|
rest: 'https://lcd-iris.keplr.app',
|
|
@@ -1821,6 +1876,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1821
1876
|
chainId: 'emoney-3',
|
|
1822
1877
|
info: {
|
|
1823
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}',
|
|
1824
1882
|
experimental: true,
|
|
1825
1883
|
rpc: 'https://rpc-emoney.keplr.app',
|
|
1826
1884
|
rest: 'https://lcd-emoney.keplr.app',
|
|
@@ -1915,6 +1973,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1915
1973
|
blockExplorerUrls: ['https://blockscout.com/xdai/mainnet'],
|
|
1916
1974
|
addressUrl: 'https://blockscout.com/xdai/mainnet/address/{wallet}',
|
|
1917
1975
|
transactionUrl: 'https://blockscout.com/xdai/mainnet/tx/{txHash}',
|
|
1976
|
+
enableGasV2: true,
|
|
1918
1977
|
},
|
|
1919
1978
|
},
|
|
1920
1979
|
{
|
|
@@ -1996,6 +2055,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
1996
2055
|
blockExplorerUrls: ['https://explorer.fuse.io'],
|
|
1997
2056
|
addressUrl: 'https://explorer.fuse.io/address/{wallet}',
|
|
1998
2057
|
transactionUrl: 'https://explorer.fuse.io/tx/{txHash}',
|
|
2058
|
+
enableGasV2: true,
|
|
1999
2059
|
},
|
|
2000
2060
|
},
|
|
2001
2061
|
{
|
|
@@ -2021,6 +2081,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2021
2081
|
chainId: 'bitsong-2b',
|
|
2022
2082
|
info: {
|
|
2023
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}',
|
|
2024
2087
|
experimental: true,
|
|
2025
2088
|
rpc: 'https://rpc.explorebitsong.com',
|
|
2026
2089
|
rest: 'https://lcd.explorebitsong.com',
|
|
@@ -2093,6 +2156,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2093
2156
|
chainId: 'akashnet-2',
|
|
2094
2157
|
info: {
|
|
2095
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}',
|
|
2096
2162
|
experimental: false,
|
|
2097
2163
|
rpc: 'https://rpc-akash.keplr.app',
|
|
2098
2164
|
rest: 'https://lcd-akash.keplr.app',
|
|
@@ -2169,6 +2235,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2169
2235
|
chainId: 'kichain-2',
|
|
2170
2236
|
info: {
|
|
2171
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}',
|
|
2172
2241
|
experimental: true,
|
|
2173
2242
|
rpc: 'https://rpc-mainnet.blockchain.ki',
|
|
2174
2243
|
rest: 'https://api-mainnet.blockchain.ki',
|
|
@@ -2241,6 +2310,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2241
2310
|
chainId: 'core-1',
|
|
2242
2311
|
info: {
|
|
2243
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}',
|
|
2244
2316
|
experimental: false,
|
|
2245
2317
|
rpc: 'https://rpc-persistence.keplr.app',
|
|
2246
2318
|
rest: 'https://lcd-persistence.keplr.app',
|
|
@@ -2317,6 +2389,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2317
2389
|
chainId: 'panacea-3',
|
|
2318
2390
|
info: {
|
|
2319
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}',
|
|
2320
2395
|
experimental: true,
|
|
2321
2396
|
rpc: 'https://rpc.gopanacea.org',
|
|
2322
2397
|
rest: 'https://api.gopanacea.org',
|
|
@@ -2393,6 +2468,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2393
2468
|
chainId: 'kaiyo-1',
|
|
2394
2469
|
info: {
|
|
2395
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}',
|
|
2396
2474
|
experimental: true,
|
|
2397
2475
|
rpc: 'https://kujira-rpc.lavenderfive.com',
|
|
2398
2476
|
rest: 'https://kujira-api.lavenderfive.com',
|
|
@@ -2469,6 +2547,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2469
2547
|
chainId: 'sentinelhub-2',
|
|
2470
2548
|
info: {
|
|
2471
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}',
|
|
2472
2553
|
experimental: false,
|
|
2473
2554
|
rpc: 'https://rpc-sentinel.keplr.app',
|
|
2474
2555
|
rest: 'https://lcd-sentinel.keplr.app',
|
|
@@ -2545,6 +2626,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2545
2626
|
chainId: 'injective-1',
|
|
2546
2627
|
info: {
|
|
2547
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}',
|
|
2548
2632
|
experimental: true,
|
|
2549
2633
|
rpc: 'https://tm.injective.network',
|
|
2550
2634
|
rest: 'https://lcd.injective.network',
|
|
@@ -2621,6 +2705,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2621
2705
|
chainId: 'secret-4',
|
|
2622
2706
|
info: {
|
|
2623
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}',
|
|
2624
2711
|
experimental: false,
|
|
2625
2712
|
rpc: 'https://rpc-secret.keplr.app',
|
|
2626
2713
|
rest: 'https://lcd-secret.keplr.app',
|
|
@@ -2697,6 +2784,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2697
2784
|
chainId: 'darchub',
|
|
2698
2785
|
info: {
|
|
2699
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}',
|
|
2700
2790
|
experimental: true,
|
|
2701
2791
|
rpc: 'https://node1.konstellation.tech:26657',
|
|
2702
2792
|
rest: 'https://node1.konstellation.tech:1318',
|
|
@@ -2769,6 +2859,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2769
2859
|
chainId: 'iov-mainnet-ibc',
|
|
2770
2860
|
info: {
|
|
2771
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}',
|
|
2772
2865
|
experimental: false,
|
|
2773
2866
|
rpc: 'https://rpc-iov.keplr.app',
|
|
2774
2867
|
rest: 'https://lcd-iov.keplr.app',
|
|
@@ -2845,6 +2938,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2845
2938
|
chainId: 'bitcanna-1',
|
|
2846
2939
|
info: {
|
|
2847
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}',
|
|
2848
2944
|
experimental: true,
|
|
2849
2945
|
rpc: 'https://rpc.bitcanna.io',
|
|
2850
2946
|
rest: 'https://lcd.bitcanna.io',
|
|
@@ -2917,6 +3013,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2917
3013
|
chainId: 'umee-1',
|
|
2918
3014
|
info: {
|
|
2919
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}',
|
|
2920
3019
|
experimental: false,
|
|
2921
3020
|
rpc: 'https://api.barnacle.mainnet.network.umee.cc',
|
|
2922
3021
|
rest: 'https://lcd-umee.cosmostation.io',
|
|
@@ -2993,6 +3092,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
2993
3092
|
chainId: 'desmos-mainnet',
|
|
2994
3093
|
info: {
|
|
2995
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}',
|
|
2996
3098
|
experimental: true,
|
|
2997
3099
|
rpc: 'https://rpc.mainnet.desmos.network',
|
|
2998
3100
|
rest: 'https://api.mainnet.desmos.network',
|
|
@@ -3065,6 +3167,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3065
3167
|
chainId: 'lum-network-1',
|
|
3066
3168
|
info: {
|
|
3067
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}',
|
|
3068
3173
|
experimental: true,
|
|
3069
3174
|
rpc: 'https://node0.mainnet.lum.network/rpc',
|
|
3070
3175
|
rest: 'https://node0.mainnet.lum.network/rest',
|
|
@@ -3147,6 +3252,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3147
3252
|
blockExplorerUrls: ['https://bobascan.com/'],
|
|
3148
3253
|
addressUrl: 'https://bobascan.com//address/{wallet}',
|
|
3149
3254
|
transactionUrl: 'https://bobascan.com//tx/{txHash}',
|
|
3255
|
+
enableGasV2: true,
|
|
3150
3256
|
},
|
|
3151
3257
|
},
|
|
3152
3258
|
{
|
|
@@ -3172,6 +3278,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3172
3278
|
chainId: 'axelar-dojo-1',
|
|
3173
3279
|
info: {
|
|
3174
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}',
|
|
3175
3284
|
experimental: false,
|
|
3176
3285
|
rpc: 'https://mainnet-rpc-router.axelar-dev.workers.dev/chain/axelar',
|
|
3177
3286
|
rest: 'https://axelar-lcd.quickapi.com',
|
|
@@ -3249,6 +3358,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3249
3358
|
chainId: 'stride-1',
|
|
3250
3359
|
info: {
|
|
3251
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}',
|
|
3252
3364
|
experimental: false,
|
|
3253
3365
|
rpc: 'https://rpc-stride.keplr.app',
|
|
3254
3366
|
rest: 'https://lcd-stride.keplr.app',
|
|
@@ -3377,6 +3489,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3377
3489
|
blockExplorerUrls: ['https://explorer.kcc.io/en'],
|
|
3378
3490
|
addressUrl: 'https://explorer.kcc.io/en/address/{wallet}',
|
|
3379
3491
|
transactionUrl: 'https://explorer.kcc.io/en/tx/{txHash}',
|
|
3492
|
+
enableGasV2: true,
|
|
3380
3493
|
},
|
|
3381
3494
|
},
|
|
3382
3495
|
{
|
|
@@ -3402,6 +3515,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3402
3515
|
chainId: 'mars-1',
|
|
3403
3516
|
info: {
|
|
3404
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}',
|
|
3405
3521
|
experimental: false,
|
|
3406
3522
|
rpc: 'https://rpc-mars.keplr.app',
|
|
3407
3523
|
rest: 'https://lcd-mars.keplr.app',
|
|
@@ -3478,6 +3594,9 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3478
3594
|
chainId: 'phoenix-1',
|
|
3479
3595
|
info: {
|
|
3480
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}',
|
|
3481
3600
|
experimental: false,
|
|
3482
3601
|
rpc: 'https://rpc-phoenix.keplr.app',
|
|
3483
3602
|
rest: 'https://lcd-phoenix.keplr.app',
|
|
@@ -3564,6 +3683,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3564
3683
|
blockExplorerUrls: ['https://www.teloscan.io'],
|
|
3565
3684
|
addressUrl: 'https://www.teloscan.io/address/{wallet}',
|
|
3566
3685
|
transactionUrl: 'https://www.teloscan.io/tx/{txHash}',
|
|
3686
|
+
enableGasV2: true,
|
|
3567
3687
|
},
|
|
3568
3688
|
},
|
|
3569
3689
|
{
|
|
@@ -3599,6 +3719,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3599
3719
|
blockExplorerUrls: ['https://blockexplorer.bnb.boba.network'],
|
|
3600
3720
|
addressUrl: 'https://blockexplorer.bnb.boba.network/address/{wallet}',
|
|
3601
3721
|
transactionUrl: 'https://blockexplorer.bnb.boba.network/tx/{txHash}',
|
|
3722
|
+
enableGasV2: true,
|
|
3602
3723
|
},
|
|
3603
3724
|
},
|
|
3604
3725
|
{
|
|
@@ -3635,6 +3756,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3635
3756
|
addressUrl:
|
|
3636
3757
|
'https://blockexplorer.bobabeam.boba.network/address/{wallet}',
|
|
3637
3758
|
transactionUrl: 'https://blockexplorer.bobabeam.boba.network/tx/{txHash}',
|
|
3759
|
+
enableGasV2: true,
|
|
3638
3760
|
},
|
|
3639
3761
|
},
|
|
3640
3762
|
{
|
|
@@ -3670,6 +3792,7 @@ export const supportedChains: BlockchainMeta[] = [
|
|
|
3670
3792
|
blockExplorerUrls: ['https://blockexplorer.avax.boba.network'],
|
|
3671
3793
|
addressUrl: 'https://blockexplorer.avax.boba.network/address/{wallet}',
|
|
3672
3794
|
transactionUrl: 'https://blockexplorer.avax.boba.network/tx/{txHash}',
|
|
3795
|
+
enableGasV2: true,
|
|
3673
3796
|
},
|
|
3674
3797
|
},
|
|
3675
3798
|
];
|