@rango-dev/widget-embedded 0.59.1 → 0.59.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/containers/Wallets/Wallets.d.ts.map +1 -1
- package/dist/hooks/usePrepareBlockchainList/usePrepareBlockchainList.mock.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/test-utils/fixtures.d.ts.map +1 -1
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +10 -10
- package/src/containers/Wallets/Wallets.tsx +6 -0
- package/src/hooks/usePrepareBlockchainList/usePrepareBlockchainList.mock.ts +54 -0
- package/src/store/slices/config.ts +1 -1
- package/src/store/slices/data.test.ts +1 -1
- package/src/test-utils/fixtures.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.59.1",
|
|
3
|
+
"version": "0.59.2-next.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -25,23 +25,23 @@
|
|
|
25
25
|
"@lingui/core": "4.2.1",
|
|
26
26
|
"@lingui/react": "4.2.1",
|
|
27
27
|
"@rango-dev/logging-core": "^0.12.1",
|
|
28
|
-
"@rango-dev/provider-all": "^0.61.1",
|
|
28
|
+
"@rango-dev/provider-all": "^0.61.2-next.1",
|
|
29
29
|
"@rango-dev/queue-manager-core": "^0.33.0",
|
|
30
|
-
"@rango-dev/queue-manager-rango-preset": "^0.61.1",
|
|
30
|
+
"@rango-dev/queue-manager-rango-preset": "^0.61.2-next.1",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.33.0",
|
|
32
|
-
"@rango-dev/signer-solana": "^0.47.1",
|
|
33
|
-
"@rango-dev/ui": "^0.62.1",
|
|
34
|
-
"@rango-dev/wallets-core": "^0.58.1",
|
|
35
|
-
"@rango-dev/wallets-react": "^0.45.1",
|
|
36
|
-
"@rango-dev/wallets-shared": "^0.59.1",
|
|
32
|
+
"@rango-dev/signer-solana": "^0.47.2-next.1",
|
|
33
|
+
"@rango-dev/ui": "^0.62.2-next.1",
|
|
34
|
+
"@rango-dev/wallets-core": "^0.58.2-next.1",
|
|
35
|
+
"@rango-dev/wallets-react": "^0.45.2-next.1",
|
|
36
|
+
"@rango-dev/wallets-shared": "^0.59.2-next.1",
|
|
37
37
|
"bignumber.js": "^9.1.1",
|
|
38
38
|
"copy-to-clipboard": "^3.3.3",
|
|
39
39
|
"dayjs": "^1.11.7",
|
|
40
40
|
"ethers": "^6.13.2",
|
|
41
41
|
"immer": "^9.0.19",
|
|
42
42
|
"mitt": "^3.0.0",
|
|
43
|
-
"rango-sdk": "^0.
|
|
44
|
-
"rango-types": "^0.
|
|
43
|
+
"rango-sdk": "^0.4.0",
|
|
44
|
+
"rango-types": "^0.4.0",
|
|
45
45
|
"react-i18next": "^12.2.0",
|
|
46
46
|
"react-router-dom": "^6.8.0",
|
|
47
47
|
"values.js": "2.1.1",
|
|
@@ -9,6 +9,7 @@ import type { LegacyEventHandler } from '@rango-dev/wallets-core/legacy';
|
|
|
9
9
|
import type { PropsWithChildren } from 'react';
|
|
10
10
|
|
|
11
11
|
import { Provider } from '@rango-dev/wallets-react';
|
|
12
|
+
import { WalletTypes } from '@rango-dev/wallets-shared';
|
|
12
13
|
import React, { createContext, useEffect, useMemo, useRef } from 'react';
|
|
13
14
|
|
|
14
15
|
import { useWalletProviders } from '../../hooks/useWalletProviders';
|
|
@@ -104,6 +105,11 @@ function Main(props: PropsWithChildren<PropTypes>) {
|
|
|
104
105
|
autoConnect={!!isActiveTab}
|
|
105
106
|
configs={{
|
|
106
107
|
wallets: config.wallets,
|
|
108
|
+
walletOptions: {
|
|
109
|
+
[WalletTypes.TON_CONNECT]: {
|
|
110
|
+
provider: { manifestUrl: config.tonConnect?.manifestUrl },
|
|
111
|
+
},
|
|
112
|
+
},
|
|
107
113
|
}}>
|
|
108
114
|
{props.children}
|
|
109
115
|
</Provider>
|
|
@@ -95,6 +95,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
95
95
|
addressUrl: 'https://etherscan.io/address/{wallet}',
|
|
96
96
|
transactionUrl: 'https://etherscan.io/tx/{txHash}',
|
|
97
97
|
enableGasV2: true,
|
|
98
|
+
tokenUrl: 'https://etherscan.io/token/{address}',
|
|
98
99
|
},
|
|
99
100
|
},
|
|
100
101
|
{
|
|
@@ -129,6 +130,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
129
130
|
addressUrl: 'https://bscscan.com/address/{wallet}',
|
|
130
131
|
transactionUrl: 'https://bscscan.com/tx/{txHash}',
|
|
131
132
|
enableGasV2: true,
|
|
133
|
+
tokenUrl: 'https://bscscan.com/token/{address}',
|
|
132
134
|
},
|
|
133
135
|
},
|
|
134
136
|
{
|
|
@@ -163,6 +165,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
163
165
|
addressUrl: 'https://arbiscan.io/address/{wallet}',
|
|
164
166
|
transactionUrl: 'https://arbiscan.io/tx/{txHash}',
|
|
165
167
|
enableGasV2: true,
|
|
168
|
+
tokenUrl: 'https://arbiscan.io/token/{address}',
|
|
166
169
|
},
|
|
167
170
|
},
|
|
168
171
|
{
|
|
@@ -197,6 +200,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
197
200
|
addressUrl: 'https://polygonscan.com/address/{wallet}',
|
|
198
201
|
transactionUrl: 'https://polygonscan.com/tx/{txHash}',
|
|
199
202
|
enableGasV2: true,
|
|
203
|
+
tokenUrl: 'https://polygonscan.com/token/{address}',
|
|
200
204
|
},
|
|
201
205
|
},
|
|
202
206
|
{
|
|
@@ -231,6 +235,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
231
235
|
addressUrl: 'https://explorer.zksync.io/address/{wallet}',
|
|
232
236
|
transactionUrl: 'https://explorer.zksync.io/tx/{txHash}',
|
|
233
237
|
enableGasV2: true,
|
|
238
|
+
tokenUrl: 'https://explorer.zksync.io/token/{address}',
|
|
234
239
|
},
|
|
235
240
|
},
|
|
236
241
|
{
|
|
@@ -264,6 +269,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
264
269
|
blockExplorerUrls: ['https://starkscan.co'],
|
|
265
270
|
addressUrl: 'https://starkscan.co/contract/{wallet}',
|
|
266
271
|
transactionUrl: 'https://starkscan.co/tx/{txHash}',
|
|
272
|
+
tokenUrl: 'https://voyager.online/token/{address}',
|
|
267
273
|
},
|
|
268
274
|
},
|
|
269
275
|
{
|
|
@@ -298,6 +304,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
298
304
|
addressUrl: 'https://optimistic.etherscan.io/address/{wallet}',
|
|
299
305
|
transactionUrl: 'https://optimistic.etherscan.io/tx/{txHash}',
|
|
300
306
|
enableGasV2: true,
|
|
307
|
+
tokenUrl: 'https://optimistic.etherscan.io/token/{address}',
|
|
301
308
|
},
|
|
302
309
|
},
|
|
303
310
|
{
|
|
@@ -332,6 +339,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
332
339
|
addressUrl: 'https://snowtrace.io/address/{wallet}',
|
|
333
340
|
transactionUrl: 'https://snowtrace.io/tx/{txHash}',
|
|
334
341
|
enableGasV2: true,
|
|
342
|
+
tokenUrl: 'https://snowtrace.dev/token/{address}',
|
|
335
343
|
},
|
|
336
344
|
},
|
|
337
345
|
{
|
|
@@ -366,6 +374,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
366
374
|
addressUrl: 'https://zkevm.polygonscan.com/address/{wallet}',
|
|
367
375
|
transactionUrl: 'https://zkevm.polygonscan.com/tx/{txHash}',
|
|
368
376
|
enableGasV2: true,
|
|
377
|
+
tokenUrl: 'https://zkevm.polygonscan.com/token/{address}',
|
|
369
378
|
},
|
|
370
379
|
},
|
|
371
380
|
{
|
|
@@ -400,6 +409,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
400
409
|
addressUrl: 'https://explorer.linea.build/address/{wallet}',
|
|
401
410
|
transactionUrl: 'https://explorer.linea.build/tx/{txHash}',
|
|
402
411
|
enableGasV2: true,
|
|
412
|
+
tokenUrl: 'https://lineascan.build/token/{address}',
|
|
403
413
|
},
|
|
404
414
|
},
|
|
405
415
|
{
|
|
@@ -434,6 +444,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
434
444
|
addressUrl: 'https://tronscan.org/#/address/{wallet}',
|
|
435
445
|
transactionUrl: 'https://tronscan.org/#/tx/{txHash}',
|
|
436
446
|
enableGasV2: true,
|
|
447
|
+
tokenUrl: 'https://tronscan.org/#/token20/{address}',
|
|
437
448
|
},
|
|
438
449
|
},
|
|
439
450
|
{
|
|
@@ -462,6 +473,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
462
473
|
blockExplorerUrls: ['https://www.blockchain.com/btc/'],
|
|
463
474
|
addressUrl: 'https://www.blockchain.com/btc/address/{wallet}',
|
|
464
475
|
transactionUrl: 'https://www.blockchain.com/btc/tx/{txHash}',
|
|
476
|
+
tokenUrl: null,
|
|
465
477
|
},
|
|
466
478
|
},
|
|
467
479
|
{
|
|
@@ -539,6 +551,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
539
551
|
average: 0.025,
|
|
540
552
|
high: 0.04,
|
|
541
553
|
},
|
|
554
|
+
tokenUrl: 'https://www.mintscan.io/cosmos/assets/{address}',
|
|
542
555
|
},
|
|
543
556
|
},
|
|
544
557
|
{
|
|
@@ -623,6 +636,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
623
636
|
average: 0.025,
|
|
624
637
|
high: 0.04,
|
|
625
638
|
},
|
|
639
|
+
tokenUrl: 'https://www.mintscan.io/osmosis/assets/{address}',
|
|
626
640
|
},
|
|
627
641
|
},
|
|
628
642
|
{
|
|
@@ -700,6 +714,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
700
714
|
average: 0.025,
|
|
701
715
|
high: 0.05,
|
|
702
716
|
},
|
|
717
|
+
tokenUrl: 'https://www.mintscan.io/neutron/assets/{address}',
|
|
703
718
|
},
|
|
704
719
|
},
|
|
705
720
|
{
|
|
@@ -777,6 +792,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
777
792
|
average: 0.025,
|
|
778
793
|
high: 0.03,
|
|
779
794
|
},
|
|
795
|
+
tokenUrl: 'https://www.mintscan.io/noble/assets/{address}',
|
|
780
796
|
},
|
|
781
797
|
},
|
|
782
798
|
{
|
|
@@ -803,6 +819,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
803
819
|
blockExplorerUrls: ['https://www.blockchain.com/btc/'],
|
|
804
820
|
addressUrl: 'https://www.blockchain.com/btc/address/{wallet}',
|
|
805
821
|
transactionUrl: 'https://www.blockchain.com/btc/tx/{txHash}',
|
|
822
|
+
tokenUrl: 'https://solscan.io/token/{address}',
|
|
806
823
|
},
|
|
807
824
|
},
|
|
808
825
|
{
|
|
@@ -837,6 +854,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
837
854
|
addressUrl: 'https://cronoscan.com/address/{wallet}',
|
|
838
855
|
transactionUrl: 'https://cronoscan.com/tx/{txHash}',
|
|
839
856
|
enableGasV2: true,
|
|
857
|
+
tokenUrl: 'https://cronoscan.com/token/{address}',
|
|
840
858
|
},
|
|
841
859
|
},
|
|
842
860
|
{
|
|
@@ -892,6 +910,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
892
910
|
addressUrl: 'https://explorer.mainnet.aurora.dev/address/{wallet}',
|
|
893
911
|
transactionUrl: 'https://explorer.mainnet.aurora.dev/tx/{txHash}',
|
|
894
912
|
enableGasV2: true,
|
|
913
|
+
tokenUrl: 'https://explorer.mainnet.aurora.dev/token/{address}',
|
|
895
914
|
},
|
|
896
915
|
},
|
|
897
916
|
{
|
|
@@ -968,6 +987,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
968
987
|
addressUrl: 'https://bobascan.com//address/{wallet}',
|
|
969
988
|
transactionUrl: 'https://bobascan.com//tx/{txHash}',
|
|
970
989
|
enableGasV2: true,
|
|
990
|
+
tokenUrl: null,
|
|
971
991
|
},
|
|
972
992
|
},
|
|
973
993
|
{
|
|
@@ -1002,6 +1022,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1002
1022
|
addressUrl: 'https://moonbeam.moonscan.io/address/{wallet}',
|
|
1003
1023
|
transactionUrl: 'https://moonbeam.moonscan.io/tx/{txHash}',
|
|
1004
1024
|
enableGasV2: true,
|
|
1025
|
+
tokenUrl: null,
|
|
1005
1026
|
},
|
|
1006
1027
|
},
|
|
1007
1028
|
{
|
|
@@ -1036,6 +1057,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1036
1057
|
addressUrl: 'https://moonriver.moonscan.io/address/{wallet}',
|
|
1037
1058
|
transactionUrl: 'https://moonriver.moonscan.io/tx/{txHash}',
|
|
1038
1059
|
enableGasV2: true,
|
|
1060
|
+
tokenUrl: null,
|
|
1039
1061
|
},
|
|
1040
1062
|
},
|
|
1041
1063
|
{
|
|
@@ -1070,6 +1092,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1070
1092
|
addressUrl: 'https://www.oklink.com/en/okc/address/{wallet}',
|
|
1071
1093
|
transactionUrl: 'https://www.oklink.com/en/okc/tx/{txHash}',
|
|
1072
1094
|
enableGasV2: true,
|
|
1095
|
+
tokenUrl: null,
|
|
1073
1096
|
},
|
|
1074
1097
|
},
|
|
1075
1098
|
{
|
|
@@ -1104,6 +1127,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1104
1127
|
addressUrl: 'https://blockexplorer.avax.boba.network/address/{wallet}',
|
|
1105
1128
|
transactionUrl: 'https://blockexplorer.avax.boba.network/tx/{txHash}',
|
|
1106
1129
|
enableGasV2: true,
|
|
1130
|
+
tokenUrl: null,
|
|
1107
1131
|
},
|
|
1108
1132
|
},
|
|
1109
1133
|
{
|
|
@@ -1130,6 +1154,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1130
1154
|
blockExplorerUrls: ['https://www.blockchain.com/btc/'],
|
|
1131
1155
|
addressUrl: 'https://www.blockchain.com/btc/address/{wallet}',
|
|
1132
1156
|
transactionUrl: 'https://www.blockchain.com/btc/tx/{txHash}',
|
|
1157
|
+
tokenUrl: null,
|
|
1133
1158
|
},
|
|
1134
1159
|
},
|
|
1135
1160
|
{
|
|
@@ -1156,6 +1181,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1156
1181
|
blockExplorerUrls: ['https://www.blockchain.com/btc/'],
|
|
1157
1182
|
addressUrl: 'https://www.blockchain.com/btc/address/{wallet}',
|
|
1158
1183
|
transactionUrl: 'https://www.blockchain.com/btc/tx/{txHash}',
|
|
1184
|
+
tokenUrl: null,
|
|
1159
1185
|
},
|
|
1160
1186
|
},
|
|
1161
1187
|
{
|
|
@@ -1190,6 +1216,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1190
1216
|
addressUrl: 'https://hecoinfo.com/address/{wallet}',
|
|
1191
1217
|
transactionUrl: 'https://hecoinfo.com/tx/{txHash}',
|
|
1192
1218
|
enableGasV2: true,
|
|
1219
|
+
tokenUrl: null,
|
|
1193
1220
|
},
|
|
1194
1221
|
},
|
|
1195
1222
|
{
|
|
@@ -1267,6 +1294,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1267
1294
|
average: 1,
|
|
1268
1295
|
high: 1,
|
|
1269
1296
|
},
|
|
1297
|
+
tokenUrl: null,
|
|
1270
1298
|
},
|
|
1271
1299
|
},
|
|
1272
1300
|
{
|
|
@@ -1344,6 +1372,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1344
1372
|
average: 0.03,
|
|
1345
1373
|
high: 0.04,
|
|
1346
1374
|
},
|
|
1375
|
+
tokenUrl: null,
|
|
1347
1376
|
},
|
|
1348
1377
|
},
|
|
1349
1378
|
{
|
|
@@ -1421,6 +1450,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1421
1450
|
average: 0.03,
|
|
1422
1451
|
high: 0.035,
|
|
1423
1452
|
},
|
|
1453
|
+
tokenUrl: null,
|
|
1424
1454
|
},
|
|
1425
1455
|
},
|
|
1426
1456
|
{
|
|
@@ -1494,6 +1524,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1494
1524
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
1495
1525
|
explorerUrlToTx: 'https://cosmoscan.io/tx/{txHash}',
|
|
1496
1526
|
gasPriceStep: null,
|
|
1527
|
+
tokenUrl: null,
|
|
1497
1528
|
},
|
|
1498
1529
|
},
|
|
1499
1530
|
{
|
|
@@ -1567,6 +1598,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1567
1598
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
1568
1599
|
explorerUrlToTx: 'https://www.mintscan.io/comdex/txs/{txHash}',
|
|
1569
1600
|
gasPriceStep: null,
|
|
1601
|
+
tokenUrl: null,
|
|
1570
1602
|
},
|
|
1571
1603
|
},
|
|
1572
1604
|
{
|
|
@@ -1644,6 +1676,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1644
1676
|
average: 0.025,
|
|
1645
1677
|
high: 0.04,
|
|
1646
1678
|
},
|
|
1679
|
+
tokenUrl: null,
|
|
1647
1680
|
},
|
|
1648
1681
|
},
|
|
1649
1682
|
{
|
|
@@ -1721,6 +1754,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1721
1754
|
average: 0.3,
|
|
1722
1755
|
high: 0.4,
|
|
1723
1756
|
},
|
|
1757
|
+
tokenUrl: null,
|
|
1724
1758
|
},
|
|
1725
1759
|
},
|
|
1726
1760
|
{
|
|
@@ -1806,6 +1840,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1806
1840
|
average: 1,
|
|
1807
1841
|
high: 1,
|
|
1808
1842
|
},
|
|
1843
|
+
tokenUrl: null,
|
|
1809
1844
|
},
|
|
1810
1845
|
},
|
|
1811
1846
|
{
|
|
@@ -1883,6 +1918,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
1883
1918
|
average: 0.0025,
|
|
1884
1919
|
high: 0.004,
|
|
1885
1920
|
},
|
|
1921
|
+
tokenUrl: null,
|
|
1886
1922
|
},
|
|
1887
1923
|
},
|
|
1888
1924
|
{
|
|
@@ -2002,6 +2038,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2002
2038
|
average: 0.0025,
|
|
2003
2039
|
high: 0.04,
|
|
2004
2040
|
},
|
|
2041
|
+
tokenUrl: null,
|
|
2005
2042
|
},
|
|
2006
2043
|
},
|
|
2007
2044
|
{
|
|
@@ -2079,6 +2116,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2079
2116
|
average: 0.0025,
|
|
2080
2117
|
high: 0.01,
|
|
2081
2118
|
},
|
|
2119
|
+
tokenUrl: null,
|
|
2082
2120
|
},
|
|
2083
2121
|
},
|
|
2084
2122
|
{
|
|
@@ -2156,6 +2194,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2156
2194
|
average: 0.015,
|
|
2157
2195
|
high: 0.15,
|
|
2158
2196
|
},
|
|
2197
|
+
tokenUrl: null,
|
|
2159
2198
|
},
|
|
2160
2199
|
},
|
|
2161
2200
|
{
|
|
@@ -2229,6 +2268,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2229
2268
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
2230
2269
|
explorerUrlToTx: 'https://explorebitsong.com/transactions/{txHash}',
|
|
2231
2270
|
gasPriceStep: null,
|
|
2271
|
+
tokenUrl: null,
|
|
2232
2272
|
},
|
|
2233
2273
|
},
|
|
2234
2274
|
{
|
|
@@ -2306,6 +2346,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2306
2346
|
average: 0.0025,
|
|
2307
2347
|
high: 0.004,
|
|
2308
2348
|
},
|
|
2349
|
+
tokenUrl: null,
|
|
2309
2350
|
},
|
|
2310
2351
|
},
|
|
2311
2352
|
{
|
|
@@ -2379,6 +2420,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2379
2420
|
features: ['stargate', 'ibc-transfer'],
|
|
2380
2421
|
explorerUrlToTx: 'https://www.mintscan.io/ki-chain/txs/{txHash}',
|
|
2381
2422
|
gasPriceStep: null,
|
|
2423
|
+
tokenUrl: null,
|
|
2382
2424
|
},
|
|
2383
2425
|
},
|
|
2384
2426
|
{
|
|
@@ -2456,6 +2498,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2456
2498
|
average: 0.025,
|
|
2457
2499
|
high: 0.04,
|
|
2458
2500
|
},
|
|
2501
|
+
tokenUrl: null,
|
|
2459
2502
|
},
|
|
2460
2503
|
},
|
|
2461
2504
|
{
|
|
@@ -2533,6 +2576,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2533
2576
|
average: 7,
|
|
2534
2577
|
high: 9,
|
|
2535
2578
|
},
|
|
2579
|
+
tokenUrl: null,
|
|
2536
2580
|
},
|
|
2537
2581
|
},
|
|
2538
2582
|
{
|
|
@@ -2610,6 +2654,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2610
2654
|
average: 0.025,
|
|
2611
2655
|
high: 0.03,
|
|
2612
2656
|
},
|
|
2657
|
+
tokenUrl: null,
|
|
2613
2658
|
},
|
|
2614
2659
|
},
|
|
2615
2660
|
{
|
|
@@ -2687,6 +2732,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2687
2732
|
average: 0.25,
|
|
2688
2733
|
high: 0.4,
|
|
2689
2734
|
},
|
|
2735
|
+
tokenUrl: null,
|
|
2690
2736
|
},
|
|
2691
2737
|
},
|
|
2692
2738
|
{
|
|
@@ -2764,6 +2810,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2764
2810
|
average: 500000000,
|
|
2765
2811
|
high: 500000000,
|
|
2766
2812
|
},
|
|
2813
|
+
tokenUrl: null,
|
|
2767
2814
|
},
|
|
2768
2815
|
},
|
|
2769
2816
|
{
|
|
@@ -2841,6 +2888,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2841
2888
|
average: 0.25,
|
|
2842
2889
|
high: 0.3,
|
|
2843
2890
|
},
|
|
2891
|
+
tokenUrl: null,
|
|
2844
2892
|
},
|
|
2845
2893
|
},
|
|
2846
2894
|
{
|
|
@@ -2914,6 +2962,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2914
2962
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
2915
2963
|
explorerUrlToTx: 'https://www.mintscan.io/konstellation/txs/{txHash}',
|
|
2916
2964
|
gasPriceStep: null,
|
|
2965
|
+
tokenUrl: null,
|
|
2917
2966
|
},
|
|
2918
2967
|
},
|
|
2919
2968
|
{
|
|
@@ -2991,6 +3040,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
2991
3040
|
average: 2,
|
|
2992
3041
|
high: 3,
|
|
2993
3042
|
},
|
|
3043
|
+
tokenUrl: null,
|
|
2994
3044
|
},
|
|
2995
3045
|
},
|
|
2996
3046
|
{
|
|
@@ -3064,6 +3114,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
3064
3114
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx'],
|
|
3065
3115
|
explorerUrlToTx: 'https://www.mintscan.io/bitcanna/txs/{txHash}',
|
|
3066
3116
|
gasPriceStep: null,
|
|
3117
|
+
tokenUrl: null,
|
|
3067
3118
|
},
|
|
3068
3119
|
},
|
|
3069
3120
|
{
|
|
@@ -3141,6 +3192,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
3141
3192
|
average: 0.06,
|
|
3142
3193
|
high: 0.1,
|
|
3143
3194
|
},
|
|
3195
|
+
tokenUrl: null,
|
|
3144
3196
|
},
|
|
3145
3197
|
},
|
|
3146
3198
|
{
|
|
@@ -3214,6 +3266,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
3214
3266
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
3215
3267
|
explorerUrlToTx: 'https://explorer.desmos.network/transactions/{txHash}',
|
|
3216
3268
|
gasPriceStep: null,
|
|
3269
|
+
tokenUrl: null,
|
|
3217
3270
|
},
|
|
3218
3271
|
},
|
|
3219
3272
|
{
|
|
@@ -3287,6 +3340,7 @@ export const sampleBlockchains: BlockchainMeta[] = [
|
|
|
3287
3340
|
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
|
|
3288
3341
|
explorerUrlToTx: 'https://www.mintscan.io/lum/txs/{txHash}',
|
|
3289
3342
|
gasPriceStep: null,
|
|
3343
|
+
tokenUrl: null,
|
|
3290
3344
|
},
|
|
3291
3345
|
},
|
|
3292
3346
|
];
|
|
@@ -40,7 +40,7 @@ export const DEFAULT_CONFIG: WidgetConfig = {
|
|
|
40
40
|
},
|
|
41
41
|
tonConnect: {
|
|
42
42
|
manifestUrl:
|
|
43
|
-
'https://raw.githubusercontent.com/rango-exchange/
|
|
43
|
+
'https://raw.githubusercontent.com/rango-exchange/assets/refs/heads/main/manifests/tonconnect/manifest.json',
|
|
44
44
|
},
|
|
45
45
|
};
|
|
46
46
|
|
|
@@ -32,7 +32,7 @@ const DEFAULT_CONFIG: WidgetConfig = {
|
|
|
32
32
|
},
|
|
33
33
|
tonConnect: {
|
|
34
34
|
manifestUrl:
|
|
35
|
-
'https://raw.githubusercontent.com/rango-exchange/
|
|
35
|
+
'https://raw.githubusercontent.com/rango-exchange/assets/refs/heads/main/manifests/tonconnect/manifest.json',
|
|
36
36
|
},
|
|
37
37
|
};
|
|
38
38
|
|