@talismn/chaindata-provider 0.11.0 → 0.11.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/dist/declarations/src/init/chains.d.ts +4 -0
- package/dist/declarations/src/types/Chain.d.ts +1 -0
- package/dist/talismn-chaindata-provider.cjs.dev.js +15 -3
- package/dist/talismn-chaindata-provider.cjs.prod.js +15 -3
- package/dist/talismn-chaindata-provider.esm.js +15 -3
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.dev.js +11 -5
- package/init/chains/dist/talismn-chaindata-provider-init-chains.cjs.prod.js +11 -5
- package/init/chains/dist/talismn-chaindata-provider-init-chains.esm.js +11 -5
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.dev.js +1 -1
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.cjs.prod.js +1 -1
- package/init/evm-networks/dist/talismn-chaindata-provider-init-evm-networks.esm.js +1 -1
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.dev.js +14 -14
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.cjs.prod.js +14 -14
- package/init/mini-metadatas/dist/talismn-chaindata-provider-init-mini-metadatas.esm.js +14 -14
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare const chains: ({
|
|
|
20
20
|
id: string;
|
|
21
21
|
}[];
|
|
22
22
|
account: string;
|
|
23
|
+
blockExplorerUrls: string[];
|
|
23
24
|
subscanUrl: string;
|
|
24
25
|
chainspecQrUrl: string;
|
|
25
26
|
latestMetadataQrUrl: string;
|
|
@@ -69,6 +70,7 @@ export declare const chains: ({
|
|
|
69
70
|
id: string;
|
|
70
71
|
}[];
|
|
71
72
|
account: string;
|
|
73
|
+
blockExplorerUrls: string[];
|
|
72
74
|
subscanUrl: string;
|
|
73
75
|
chainspecQrUrl: string;
|
|
74
76
|
latestMetadataQrUrl: string;
|
|
@@ -117,6 +119,7 @@ export declare const chains: ({
|
|
|
117
119
|
id: string;
|
|
118
120
|
}[];
|
|
119
121
|
account: string;
|
|
122
|
+
blockExplorerUrls: string[];
|
|
120
123
|
subscanUrl: string;
|
|
121
124
|
chainspecQrUrl: string;
|
|
122
125
|
latestMetadataQrUrl: string;
|
|
@@ -182,6 +185,7 @@ export declare const chains: ({
|
|
|
182
185
|
id: string;
|
|
183
186
|
}[];
|
|
184
187
|
account: string;
|
|
188
|
+
blockExplorerUrls: string[];
|
|
185
189
|
subscanUrl: string;
|
|
186
190
|
chainspecQrUrl: string;
|
|
187
191
|
latestMetadataQrUrl: string;
|
|
@@ -23,9 +23,21 @@ var anylogger__default = /*#__PURE__*/_interopDefault(anylogger);
|
|
|
23
23
|
// You can update them by running the following command:
|
|
24
24
|
// `pnpm chore:generate-init-data`
|
|
25
25
|
|
|
26
|
-
const fetchInitChains = async () =>
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
const fetchInitChains = async () =>
|
|
27
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
28
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
29
|
+
// the generateInitData script, which in turn updates the initChains data to match the new changes
|
|
30
|
+
init_chains_dist_talismnChaindataProviderInitChains.chains;
|
|
31
|
+
const fetchInitEvmNetworks = async () =>
|
|
32
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
33
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
34
|
+
// the generateInitData script, which in turn updates the initEvmNetworks data to match the new changes
|
|
35
|
+
init_evmNetworks_dist_talismnChaindataProviderInitEvmNetworks.evmNetworks;
|
|
36
|
+
const fetchInitSubstrateTokens = async () =>
|
|
37
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
38
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
39
|
+
// the generateInitData script, which in turn updates the initSubstrateTokens data to match the new changes
|
|
40
|
+
init_tokens_dist_talismnChaindataProviderInitTokens.tokens;
|
|
29
41
|
|
|
30
42
|
// TODO: Move `fetchMiniMetadatas` into `@talismn/balances`,
|
|
31
43
|
// so that we don't have a circular import between `@talismn/balances` and `@talismn/chaindata-provider`.
|
|
@@ -23,9 +23,21 @@ var anylogger__default = /*#__PURE__*/_interopDefault(anylogger);
|
|
|
23
23
|
// You can update them by running the following command:
|
|
24
24
|
// `pnpm chore:generate-init-data`
|
|
25
25
|
|
|
26
|
-
const fetchInitChains = async () =>
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
const fetchInitChains = async () =>
|
|
27
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
28
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
29
|
+
// the generateInitData script, which in turn updates the initChains data to match the new changes
|
|
30
|
+
init_chains_dist_talismnChaindataProviderInitChains.chains;
|
|
31
|
+
const fetchInitEvmNetworks = async () =>
|
|
32
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
33
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
34
|
+
// the generateInitData script, which in turn updates the initEvmNetworks data to match the new changes
|
|
35
|
+
init_evmNetworks_dist_talismnChaindataProviderInitEvmNetworks.evmNetworks;
|
|
36
|
+
const fetchInitSubstrateTokens = async () =>
|
|
37
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
38
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
39
|
+
// the generateInitData script, which in turn updates the initSubstrateTokens data to match the new changes
|
|
40
|
+
init_tokens_dist_talismnChaindataProviderInitTokens.tokens;
|
|
29
41
|
|
|
30
42
|
// TODO: Move `fetchMiniMetadatas` into `@talismn/balances`,
|
|
31
43
|
// so that we don't have a circular import between `@talismn/balances` and `@talismn/chaindata-provider`.
|
|
@@ -18,9 +18,21 @@ import anylogger from 'anylogger';
|
|
|
18
18
|
// You can update them by running the following command:
|
|
19
19
|
// `pnpm chore:generate-init-data`
|
|
20
20
|
|
|
21
|
-
const fetchInitChains = async () =>
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
const fetchInitChains = async () =>
|
|
22
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
23
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
24
|
+
// the generateInitData script, which in turn updates the initChains data to match the new changes
|
|
25
|
+
chains;
|
|
26
|
+
const fetchInitEvmNetworks = async () =>
|
|
27
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
28
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
29
|
+
// the generateInitData script, which in turn updates the initEvmNetworks data to match the new changes
|
|
30
|
+
evmNetworks;
|
|
31
|
+
const fetchInitSubstrateTokens = async () =>
|
|
32
|
+
// `as unknown` is needed for when we make breaking changes to chaindata.
|
|
33
|
+
// when this happens, we don't want tsc to check this type, because that would prevent us from compiling
|
|
34
|
+
// the generateInitData script, which in turn updates the initSubstrateTokens data to match the new changes
|
|
35
|
+
tokens;
|
|
24
36
|
|
|
25
37
|
// TODO: Move `fetchMiniMetadatas` into `@talismn/balances`,
|
|
26
38
|
// so that we don't have a circular import between `@talismn/balances` and `@talismn/chaindata-provider`.
|
|
@@ -22,6 +22,7 @@ const chains = [{
|
|
|
22
22
|
id: "polkadot-substrate-native"
|
|
23
23
|
}],
|
|
24
24
|
account: "*25519",
|
|
25
|
+
blockExplorerUrls: ["https://polkadot.subscan.io/"],
|
|
25
26
|
subscanUrl: "https://polkadot.subscan.io/",
|
|
26
27
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot_specs.png",
|
|
27
28
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot_metadata_latest.apng",
|
|
@@ -266,6 +267,7 @@ const chains = [{
|
|
|
266
267
|
id: "kusama-substrate-native"
|
|
267
268
|
}],
|
|
268
269
|
account: "*25519",
|
|
270
|
+
blockExplorerUrls: ["https://kusama.subscan.io/"],
|
|
269
271
|
subscanUrl: "https://kusama.subscan.io/",
|
|
270
272
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama_specs.png",
|
|
271
273
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama_metadata_latest.apng",
|
|
@@ -429,7 +431,7 @@ const chains = [{
|
|
|
429
431
|
id: "kusama-asset-hub",
|
|
430
432
|
isTestnet: false,
|
|
431
433
|
isDefault: true,
|
|
432
|
-
sortIndex:
|
|
434
|
+
sortIndex: 598,
|
|
433
435
|
genesisHash: "0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",
|
|
434
436
|
prefix: 2,
|
|
435
437
|
name: "Kusama Asset Hub",
|
|
@@ -439,7 +441,7 @@ const chains = [{
|
|
|
439
441
|
chainType: "Live",
|
|
440
442
|
implName: "statemine",
|
|
441
443
|
specName: "statemine",
|
|
442
|
-
specVersion: "
|
|
444
|
+
specVersion: "1006000",
|
|
443
445
|
nativeToken: {
|
|
444
446
|
id: "kusama-asset-hub-substrate-native"
|
|
445
447
|
},
|
|
@@ -455,6 +457,7 @@ const chains = [{
|
|
|
455
457
|
id: "kusama-asset-hub-substrate-native"
|
|
456
458
|
}],
|
|
457
459
|
account: "*25519",
|
|
460
|
+
blockExplorerUrls: ["https://assethub-kusama.subscan.io/"],
|
|
458
461
|
subscanUrl: "https://assethub-kusama.subscan.io/",
|
|
459
462
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-statemine_specs.png",
|
|
460
463
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-statemine_metadata_latest.apng",
|
|
@@ -519,7 +522,7 @@ const chains = [{
|
|
|
519
522
|
id: "kusama-bridge-hub",
|
|
520
523
|
isTestnet: false,
|
|
521
524
|
isDefault: true,
|
|
522
|
-
sortIndex:
|
|
525
|
+
sortIndex: 599,
|
|
523
526
|
genesisHash: "0x00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5",
|
|
524
527
|
prefix: 2,
|
|
525
528
|
name: "Kusama Bridge Hub",
|
|
@@ -537,6 +540,7 @@ const chains = [{
|
|
|
537
540
|
id: "kusama-bridge-hub-substrate-native"
|
|
538
541
|
}],
|
|
539
542
|
account: "*25519",
|
|
543
|
+
blockExplorerUrls: ["https://bridgehub-kusama.subscan.io/"],
|
|
540
544
|
subscanUrl: "https://bridgehub-kusama.subscan.io/",
|
|
541
545
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_specs.png",
|
|
542
546
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_metadata_latest.apng",
|
|
@@ -578,7 +582,7 @@ const chains = [{
|
|
|
578
582
|
id: "polkadot-asset-hub",
|
|
579
583
|
isTestnet: false,
|
|
580
584
|
isDefault: true,
|
|
581
|
-
sortIndex:
|
|
585
|
+
sortIndex: 849,
|
|
582
586
|
genesisHash: "0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",
|
|
583
587
|
prefix: 0,
|
|
584
588
|
oldPrefix: 0,
|
|
@@ -637,6 +641,7 @@ const chains = [{
|
|
|
637
641
|
id: "polkadot-asset-hub-substrate-native"
|
|
638
642
|
}],
|
|
639
643
|
account: "*25519",
|
|
644
|
+
blockExplorerUrls: ["https://assethub-polkadot.subscan.io/"],
|
|
640
645
|
subscanUrl: "https://assethub-polkadot.subscan.io/",
|
|
641
646
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_specs.png",
|
|
642
647
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_metadata_latest.apng",
|
|
@@ -837,7 +842,7 @@ const chains = [{
|
|
|
837
842
|
id: "polkadot-bridge-hub",
|
|
838
843
|
isTestnet: false,
|
|
839
844
|
isDefault: true,
|
|
840
|
-
sortIndex:
|
|
845
|
+
sortIndex: 850,
|
|
841
846
|
genesisHash: "0xdcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464",
|
|
842
847
|
prefix: 0,
|
|
843
848
|
oldPrefix: 0,
|
|
@@ -856,6 +861,7 @@ const chains = [{
|
|
|
856
861
|
id: "polkadot-bridge-hub-substrate-native"
|
|
857
862
|
}],
|
|
858
863
|
account: "*25519",
|
|
864
|
+
blockExplorerUrls: ["https://bridgehub-polkadot.subscan.io/"],
|
|
859
865
|
subscanUrl: "https://bridgehub-polkadot.subscan.io/",
|
|
860
866
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_specs.png",
|
|
861
867
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_metadata_latest.apng",
|
|
@@ -22,6 +22,7 @@ const chains = [{
|
|
|
22
22
|
id: "polkadot-substrate-native"
|
|
23
23
|
}],
|
|
24
24
|
account: "*25519",
|
|
25
|
+
blockExplorerUrls: ["https://polkadot.subscan.io/"],
|
|
25
26
|
subscanUrl: "https://polkadot.subscan.io/",
|
|
26
27
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot_specs.png",
|
|
27
28
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot_metadata_latest.apng",
|
|
@@ -266,6 +267,7 @@ const chains = [{
|
|
|
266
267
|
id: "kusama-substrate-native"
|
|
267
268
|
}],
|
|
268
269
|
account: "*25519",
|
|
270
|
+
blockExplorerUrls: ["https://kusama.subscan.io/"],
|
|
269
271
|
subscanUrl: "https://kusama.subscan.io/",
|
|
270
272
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama_specs.png",
|
|
271
273
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama_metadata_latest.apng",
|
|
@@ -429,7 +431,7 @@ const chains = [{
|
|
|
429
431
|
id: "kusama-asset-hub",
|
|
430
432
|
isTestnet: false,
|
|
431
433
|
isDefault: true,
|
|
432
|
-
sortIndex:
|
|
434
|
+
sortIndex: 598,
|
|
433
435
|
genesisHash: "0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",
|
|
434
436
|
prefix: 2,
|
|
435
437
|
name: "Kusama Asset Hub",
|
|
@@ -439,7 +441,7 @@ const chains = [{
|
|
|
439
441
|
chainType: "Live",
|
|
440
442
|
implName: "statemine",
|
|
441
443
|
specName: "statemine",
|
|
442
|
-
specVersion: "
|
|
444
|
+
specVersion: "1006000",
|
|
443
445
|
nativeToken: {
|
|
444
446
|
id: "kusama-asset-hub-substrate-native"
|
|
445
447
|
},
|
|
@@ -455,6 +457,7 @@ const chains = [{
|
|
|
455
457
|
id: "kusama-asset-hub-substrate-native"
|
|
456
458
|
}],
|
|
457
459
|
account: "*25519",
|
|
460
|
+
blockExplorerUrls: ["https://assethub-kusama.subscan.io/"],
|
|
458
461
|
subscanUrl: "https://assethub-kusama.subscan.io/",
|
|
459
462
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-statemine_specs.png",
|
|
460
463
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-statemine_metadata_latest.apng",
|
|
@@ -519,7 +522,7 @@ const chains = [{
|
|
|
519
522
|
id: "kusama-bridge-hub",
|
|
520
523
|
isTestnet: false,
|
|
521
524
|
isDefault: true,
|
|
522
|
-
sortIndex:
|
|
525
|
+
sortIndex: 599,
|
|
523
526
|
genesisHash: "0x00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5",
|
|
524
527
|
prefix: 2,
|
|
525
528
|
name: "Kusama Bridge Hub",
|
|
@@ -537,6 +540,7 @@ const chains = [{
|
|
|
537
540
|
id: "kusama-bridge-hub-substrate-native"
|
|
538
541
|
}],
|
|
539
542
|
account: "*25519",
|
|
543
|
+
blockExplorerUrls: ["https://bridgehub-kusama.subscan.io/"],
|
|
540
544
|
subscanUrl: "https://bridgehub-kusama.subscan.io/",
|
|
541
545
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_specs.png",
|
|
542
546
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_metadata_latest.apng",
|
|
@@ -578,7 +582,7 @@ const chains = [{
|
|
|
578
582
|
id: "polkadot-asset-hub",
|
|
579
583
|
isTestnet: false,
|
|
580
584
|
isDefault: true,
|
|
581
|
-
sortIndex:
|
|
585
|
+
sortIndex: 849,
|
|
582
586
|
genesisHash: "0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",
|
|
583
587
|
prefix: 0,
|
|
584
588
|
oldPrefix: 0,
|
|
@@ -637,6 +641,7 @@ const chains = [{
|
|
|
637
641
|
id: "polkadot-asset-hub-substrate-native"
|
|
638
642
|
}],
|
|
639
643
|
account: "*25519",
|
|
644
|
+
blockExplorerUrls: ["https://assethub-polkadot.subscan.io/"],
|
|
640
645
|
subscanUrl: "https://assethub-polkadot.subscan.io/",
|
|
641
646
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_specs.png",
|
|
642
647
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_metadata_latest.apng",
|
|
@@ -837,7 +842,7 @@ const chains = [{
|
|
|
837
842
|
id: "polkadot-bridge-hub",
|
|
838
843
|
isTestnet: false,
|
|
839
844
|
isDefault: true,
|
|
840
|
-
sortIndex:
|
|
845
|
+
sortIndex: 850,
|
|
841
846
|
genesisHash: "0xdcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464",
|
|
842
847
|
prefix: 0,
|
|
843
848
|
oldPrefix: 0,
|
|
@@ -856,6 +861,7 @@ const chains = [{
|
|
|
856
861
|
id: "polkadot-bridge-hub-substrate-native"
|
|
857
862
|
}],
|
|
858
863
|
account: "*25519",
|
|
864
|
+
blockExplorerUrls: ["https://bridgehub-polkadot.subscan.io/"],
|
|
859
865
|
subscanUrl: "https://bridgehub-polkadot.subscan.io/",
|
|
860
866
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_specs.png",
|
|
861
867
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_metadata_latest.apng",
|
|
@@ -20,6 +20,7 @@ const chains = [{
|
|
|
20
20
|
id: "polkadot-substrate-native"
|
|
21
21
|
}],
|
|
22
22
|
account: "*25519",
|
|
23
|
+
blockExplorerUrls: ["https://polkadot.subscan.io/"],
|
|
23
24
|
subscanUrl: "https://polkadot.subscan.io/",
|
|
24
25
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot_specs.png",
|
|
25
26
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot_metadata_latest.apng",
|
|
@@ -264,6 +265,7 @@ const chains = [{
|
|
|
264
265
|
id: "kusama-substrate-native"
|
|
265
266
|
}],
|
|
266
267
|
account: "*25519",
|
|
268
|
+
blockExplorerUrls: ["https://kusama.subscan.io/"],
|
|
267
269
|
subscanUrl: "https://kusama.subscan.io/",
|
|
268
270
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama_specs.png",
|
|
269
271
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama_metadata_latest.apng",
|
|
@@ -427,7 +429,7 @@ const chains = [{
|
|
|
427
429
|
id: "kusama-asset-hub",
|
|
428
430
|
isTestnet: false,
|
|
429
431
|
isDefault: true,
|
|
430
|
-
sortIndex:
|
|
432
|
+
sortIndex: 598,
|
|
431
433
|
genesisHash: "0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a",
|
|
432
434
|
prefix: 2,
|
|
433
435
|
name: "Kusama Asset Hub",
|
|
@@ -437,7 +439,7 @@ const chains = [{
|
|
|
437
439
|
chainType: "Live",
|
|
438
440
|
implName: "statemine",
|
|
439
441
|
specName: "statemine",
|
|
440
|
-
specVersion: "
|
|
442
|
+
specVersion: "1006000",
|
|
441
443
|
nativeToken: {
|
|
442
444
|
id: "kusama-asset-hub-substrate-native"
|
|
443
445
|
},
|
|
@@ -453,6 +455,7 @@ const chains = [{
|
|
|
453
455
|
id: "kusama-asset-hub-substrate-native"
|
|
454
456
|
}],
|
|
455
457
|
account: "*25519",
|
|
458
|
+
blockExplorerUrls: ["https://assethub-kusama.subscan.io/"],
|
|
456
459
|
subscanUrl: "https://assethub-kusama.subscan.io/",
|
|
457
460
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-statemine_specs.png",
|
|
458
461
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-statemine_metadata_latest.apng",
|
|
@@ -517,7 +520,7 @@ const chains = [{
|
|
|
517
520
|
id: "kusama-bridge-hub",
|
|
518
521
|
isTestnet: false,
|
|
519
522
|
isDefault: true,
|
|
520
|
-
sortIndex:
|
|
523
|
+
sortIndex: 599,
|
|
521
524
|
genesisHash: "0x00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5",
|
|
522
525
|
prefix: 2,
|
|
523
526
|
name: "Kusama Bridge Hub",
|
|
@@ -535,6 +538,7 @@ const chains = [{
|
|
|
535
538
|
id: "kusama-bridge-hub-substrate-native"
|
|
536
539
|
}],
|
|
537
540
|
account: "*25519",
|
|
541
|
+
blockExplorerUrls: ["https://bridgehub-kusama.subscan.io/"],
|
|
538
542
|
subscanUrl: "https://bridgehub-kusama.subscan.io/",
|
|
539
543
|
chainspecQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_specs.png",
|
|
540
544
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/kusama-bridge-hub-kusama_metadata_latest.apng",
|
|
@@ -576,7 +580,7 @@ const chains = [{
|
|
|
576
580
|
id: "polkadot-asset-hub",
|
|
577
581
|
isTestnet: false,
|
|
578
582
|
isDefault: true,
|
|
579
|
-
sortIndex:
|
|
583
|
+
sortIndex: 849,
|
|
580
584
|
genesisHash: "0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f",
|
|
581
585
|
prefix: 0,
|
|
582
586
|
oldPrefix: 0,
|
|
@@ -635,6 +639,7 @@ const chains = [{
|
|
|
635
639
|
id: "polkadot-asset-hub-substrate-native"
|
|
636
640
|
}],
|
|
637
641
|
account: "*25519",
|
|
642
|
+
blockExplorerUrls: ["https://assethub-polkadot.subscan.io/"],
|
|
638
643
|
subscanUrl: "https://assethub-polkadot.subscan.io/",
|
|
639
644
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_specs.png",
|
|
640
645
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-statemint_metadata_latest.apng",
|
|
@@ -835,7 +840,7 @@ const chains = [{
|
|
|
835
840
|
id: "polkadot-bridge-hub",
|
|
836
841
|
isTestnet: false,
|
|
837
842
|
isDefault: true,
|
|
838
|
-
sortIndex:
|
|
843
|
+
sortIndex: 850,
|
|
839
844
|
genesisHash: "0xdcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464",
|
|
840
845
|
prefix: 0,
|
|
841
846
|
oldPrefix: 0,
|
|
@@ -854,6 +859,7 @@ const chains = [{
|
|
|
854
859
|
id: "polkadot-bridge-hub-substrate-native"
|
|
855
860
|
}],
|
|
856
861
|
account: "*25519",
|
|
862
|
+
blockExplorerUrls: ["https://bridgehub-polkadot.subscan.io/"],
|
|
857
863
|
subscanUrl: "https://bridgehub-polkadot.subscan.io/",
|
|
858
864
|
chainspecQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_specs.png",
|
|
859
865
|
latestMetadataQrUrl: "https://metadata.parity.io/qr/polkadot-bridge-hub-polkadot_metadata_latest.apng",
|
|
@@ -51,55 +51,55 @@ const miniMetadatas = [{
|
|
|
51
51
|
balancesConfig: "{}",
|
|
52
52
|
extra: '{"isTestnet":false}'
|
|
53
53
|
}, {
|
|
54
|
-
id: "
|
|
54
|
+
id: "bf4bce2f48ce3d60",
|
|
55
55
|
source: "substrate-assets",
|
|
56
56
|
chainId: "kusama-asset-hub",
|
|
57
57
|
specName: "statemine",
|
|
58
|
-
specVersion: "
|
|
58
|
+
specVersion: "1006000",
|
|
59
59
|
balancesConfig: '{"tokens":[{"assetId":8,"symbol":"RMRK","coingeckoId":"rmrk","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/rmrk.svg"},{"assetId":16,"symbol":"ARIS","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/aris.svg"},{"assetId":1984,"symbol":"USDT","coingeckoId":"tether","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg"},{"assetId":50000002,"symbol":"dUSD","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dusd.webp"}]}',
|
|
60
60
|
version: 15,
|
|
61
|
-
data: "
|
|
61
|
+
data: "0x6d6574610f40000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c00000505001000000507001400000500001800000208001c0000040000200c3470616c6c65745f61737365747314747970657330417373657444657461696c730c1c42616c616e63650110244163636f756e7449640100384465706f73697442616c616e63650110003001146f776e65720001244163636f756e7449640001186973737565720001244163636f756e74496400011461646d696e0001244163636f756e74496400011c667265657a65720001244163636f756e744964000118737570706c7910011c42616c616e636500011c6465706f7369741001384465706f73697442616c616e636500012c6d696e5f62616c616e636510011c42616c616e636500013469735f73756666696369656e74140110626f6f6c0001206163636f756e74730c010c75333200012c73756666696369656e74730c010c753332000124617070726f76616c730c010c75333200011873746174757324012c41737365745374617475730000240c3470616c6c65745f6173736574731474797065732c417373657453746174757300010c104c6976650000001846726f7a656e0001002844657374726f79696e670002000028000004080c00002c0c3470616c6c65745f6173736574731474797065733041737365744163636f756e74101c42616c616e63650110384465706f73697442616c616e63650110144578747261011c244163636f756e74496401000010011c62616c616e636510011c42616c616e63650001187374617475733001344163636f756e74537461747573000118726561736f6e3401a84578697374656e6365526561736f6e3c4465706f73697442616c616e63652c204163636f756e7449643e00011465787472611c011445787472610000300c3470616c6c65745f617373657473147479706573344163636f756e7453746174757300010c184c69717569640000001846726f7a656e0001001c426c6f636b656400020000340c3470616c6c65745f6173736574731474797065733c4578697374656e6365526561736f6e081c42616c616e63650110244163636f756e7449640100011420436f6e73756d65720000002853756666696369656e740001002c4465706f73697448656c64040010011c42616c616e63650002003c4465706f736974526566756e6465640003002c4465706f73697446726f6d08000001244163636f756e744964000010011c42616c616e636500040000380c3470616c6c65745f6173736574731474797065733441737365744d6574616461746108384465706f73697442616c616e6365011034426f756e646564537472696e67013c0014011c6465706f7369741001384465706f73697442616c616e63650001106e616d653c0134426f756e646564537472696e6700011873796d626f6c3c0134426f756e646564537472696e67000120646563696d616c73080108753800012469735f66726f7a656e140110626f6f6c00003c0c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401080453000004001801185665633c543e0000041841737365747301184173736574730c144173736574000104020c20040004542044657461696c73206f6620616e2061737365742e1c4163636f756e740001080202282c040004e42054686520686f6c64696e6773206f662061207370656369666963206163636f756e7420666f7220612073706563696669632061737365742e204d65746164617461010104020c385000000000000000000000000000000000000000000458204d65746164617461206f6620616e2061737365742e00000000320004000000000051080000000000",
|
|
62
62
|
extra: '{"isTestnet":false}'
|
|
63
63
|
}, {
|
|
64
|
-
id: "
|
|
64
|
+
id: "11b446557f1c8900",
|
|
65
65
|
source: "substrate-equilibrium",
|
|
66
66
|
chainId: "kusama-asset-hub",
|
|
67
67
|
specName: "statemine",
|
|
68
|
-
specVersion: "
|
|
68
|
+
specVersion: "1006000",
|
|
69
69
|
balancesConfig: "{}",
|
|
70
70
|
extra: '{"isTestnet":false}'
|
|
71
71
|
}, {
|
|
72
|
-
id: "
|
|
72
|
+
id: "eef16f5a5f860a21",
|
|
73
73
|
source: "substrate-foreignassets",
|
|
74
74
|
chainId: "kusama-asset-hub",
|
|
75
75
|
specName: "statemine",
|
|
76
|
-
specVersion: "
|
|
76
|
+
specVersion: "1006000",
|
|
77
77
|
balancesConfig: "{}",
|
|
78
78
|
extra: '{"isTestnet":false}'
|
|
79
79
|
}, {
|
|
80
|
-
id: "
|
|
80
|
+
id: "483dba785dd1f066",
|
|
81
81
|
source: "substrate-native",
|
|
82
82
|
chainId: "kusama-asset-hub",
|
|
83
83
|
specName: "statemine",
|
|
84
|
-
specVersion: "
|
|
84
|
+
specVersion: "1006000",
|
|
85
85
|
balancesConfig: '{"coingeckoId":"kusama","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"}',
|
|
86
86
|
version: 15,
|
|
87
|
-
data: "
|
|
87
|
+
data: "0x6d6574610f8c000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f08144e6f6e636501102c4163636f756e74446174610114001401146e6f6e63651001144e6f6e6365000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e74446174610000100000050500140c3c70616c6c65745f62616c616e6365731474797065732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500011866726f7a656e18011c42616c616e6365000114666c6167731c01284578747261466c61677300001800000507001c0c3c70616c6c65745f62616c616e636573147479706573284578747261466c61677300000400180110753132380000200000030800000008002400000400002800000504002c040c436f7704045401300004003000000030000005020034082873705f76657273696f6e3852756e74696d6556657273696f6e0000200124737065635f6e616d652c0144436f773c277374617469632c207374723e000124696d706c5f6e616d652c0144436f773c277374617469632c207374723e000144617574686f72696e675f76657273696f6e10010c753332000130737065635f76657273696f6e10010c753332000130696d706c5f76657273696f6e10010c7533320001106170697338011c4170697356656300014c7472616e73616374696f6e5f76657273696f6e10010c75333200013873797374656d5f76657273696f6e0801087538000038040c436f77040454013c0004003c0000003c00000240004000000408201000440c4c626f756e6465645f636f6c6c656374696f6e73407765616b5f626f756e6465645f766563385765616b426f756e64656456656308045401480453000004005001185665633c543e0000480c3c70616c6c65745f62616c616e6365731474797065732c42616c616e63654c6f636b041c42616c616e63650118000c010869642001384c6f636b4964656e746966696572000118616d6f756e7418011c42616c616e636500011c726561736f6e734c011c526561736f6e7300004c0c3c70616c6c65745f62616c616e6365731474797065731c526561736f6e7300010c0c466565000000104d6973630001000c416c6c00020000500000024800540c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401580453000004005c01185665633c543e0000580c3c70616c6c65745f62616c616e6365731474797065732c52657365727665446174610844526573657276654964656e74696669657201201c42616c616e63650118000801086964200144526573657276654964656e746966696572000118616d6f756e7418011c42616c616e636500005c0000025800600c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401640453000004007c01185665633c543e00006414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401681c42616c616e636501180008010869646801084964000118616d6f756e7418011c42616c616e6365000068086061737365745f6875625f6b7573616d615f72756e74696d654452756e74696d65486f6c64526561736f6e0001102c506f6c6b61646f7458636d04006c015870616c6c65745f78636d3a3a486f6c64526561736f6e001f00504e66744672616374696f6e616c697a6174696f6e04007001a070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e3a3a486f6c64526561736f6e00360018526576697665040074016470616c6c65745f7265766976653a3a486f6c64526561736f6e003c00485374617465547269654d6967726174696f6e040078019c70616c6c65745f73746174655f747269655f6d6967726174696f6e3a3a486f6c64526561736f6e004600006c0c2870616c6c65745f78636d1870616c6c657428486f6c64526561736f6e00010438417574686f72697a65416c69617300000000700c7070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e1870616c6c657428486f6c64526561736f6e000104384672616374696f6e616c697a656400000000740c3470616c6c65745f7265766976651870616c6c657428486f6c64526561736f6e00010c60436f646555706c6f61644465706f736974526573657276650000005453746f726167654465706f7369745265736572766500010038416464726573734d617070696e6700020000780c6c70616c6c65745f73746174655f747269655f6d6967726174696f6e1870616c6c657428486f6c64526561736f6e0001043c536c617368466f724d696772617465000000007c0000026400800c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401840453000004008801185665633c543e00008414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401241c42616c616e636501180008010869642401084964000118616d6f756e7418011c42616c616e63650000880000028400081853797374656d011853797374656d041c4163636f756e7401010402000c4101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008004e8205468652066756c6c206163636f756e7420696e666f726d6174696f6e20666f72206120706172746963756c6172206163636f756e742049442e0000081c56657273696f6e3429042473746174656d696e652473746174656d696e6501000000b0590f00000000004cdd718d5cc53262d401000000d7bdd8a272ca0d6502000000df6acb689907609b0500000037e397fc7c91f5e40200000040fe3ad401f8959a06000000d2bc9897eed08f1503000000f78b278be53f454c02000000ab3c0572291feb8b01000000bc9d89904f5b923f010000008a8047a53a8277ec0100000037c8bb1350a9a2a804000000f3ff14d5ab527059030000006ff52ee858e6c5bd0100000091b1c8b16328eb92020000009ffb505aa738d69c01000000de92b8a0426b9bf602000000ea93e3f16f3d696202000000fbc577b9d747efd6010000008c403e5c4a9fd442010000000f000000010484204765742074686520636861696e277320696e2d636f64652076657273696f6e2e28535335385072656669782808020014a8205468652064657369676e61746564205353353820707265666978206f66207468697320636861696e2e0039012054686973207265706c6163657320746865202273733538466f726d6174222070726f7065727479206465636c6172656420696e2074686520636861696e20737065632e20526561736f6e20697331012074686174207468652072756e74696d652073686f756c64206b6e6f772061626f7574207468652070726566697820696e206f7264657220746f206d616b6520757365206f662069742061737020616e206964656e746966696572206f662074686520636861696e2e0000002042616c616e636573012042616c616e63657310144c6f636b73010104020044040010b820416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2501204e4f54453a2053686f756c64206f6e6c79206265206163636573736564207768656e2073657474696e672c206368616e67696e6720616e642066726565696e672061206c6f636b2e00ad0120557365206f66206c6f636b73206973206465707265636174656420696e206661766f7572206f6620667265657a65732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6020526573657276657301010402005404000ca4204e616d6564207265736572766573206f6e20736f6d65206163636f756e742062616c616e6365732e00b10120557365206f66207265736572766573206973206465707265636174656420696e206661766f7572206f6620686f6c64732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6014486f6c64730101040200600400046c20486f6c6473206f6e206163636f756e742062616c616e6365732e1c467265657a65730101040200800400048820467265657a65206c6f636b73206f6e206163636f756e742062616c616e6365732e000000000a0004000000000051080000000000",
|
|
88
88
|
extra: '{"isTestnet":false,"symbol":"KSM","decimals":12,"existentialDeposit":"3333333"}'
|
|
89
89
|
}, {
|
|
90
|
-
id: "
|
|
90
|
+
id: "df4980ebc06220ec",
|
|
91
91
|
source: "substrate-psp22",
|
|
92
92
|
chainId: "kusama-asset-hub",
|
|
93
93
|
specName: "statemine",
|
|
94
|
-
specVersion: "
|
|
94
|
+
specVersion: "1006000",
|
|
95
95
|
balancesConfig: "{}",
|
|
96
96
|
extra: '{"isTestnet":false}'
|
|
97
97
|
}, {
|
|
98
|
-
id: "
|
|
98
|
+
id: "ffd29bb9bd749f89",
|
|
99
99
|
source: "substrate-tokens",
|
|
100
100
|
chainId: "kusama-asset-hub",
|
|
101
101
|
specName: "statemine",
|
|
102
|
-
specVersion: "
|
|
102
|
+
specVersion: "1006000",
|
|
103
103
|
balancesConfig: "{}",
|
|
104
104
|
extra: '{"isTestnet":false}'
|
|
105
105
|
}, {
|
|
@@ -51,55 +51,55 @@ const miniMetadatas = [{
|
|
|
51
51
|
balancesConfig: "{}",
|
|
52
52
|
extra: '{"isTestnet":false}'
|
|
53
53
|
}, {
|
|
54
|
-
id: "
|
|
54
|
+
id: "bf4bce2f48ce3d60",
|
|
55
55
|
source: "substrate-assets",
|
|
56
56
|
chainId: "kusama-asset-hub",
|
|
57
57
|
specName: "statemine",
|
|
58
|
-
specVersion: "
|
|
58
|
+
specVersion: "1006000",
|
|
59
59
|
balancesConfig: '{"tokens":[{"assetId":8,"symbol":"RMRK","coingeckoId":"rmrk","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/rmrk.svg"},{"assetId":16,"symbol":"ARIS","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/aris.svg"},{"assetId":1984,"symbol":"USDT","coingeckoId":"tether","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg"},{"assetId":50000002,"symbol":"dUSD","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dusd.webp"}]}',
|
|
60
60
|
version: 15,
|
|
61
|
-
data: "
|
|
61
|
+
data: "0x6d6574610f40000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c00000505001000000507001400000500001800000208001c0000040000200c3470616c6c65745f61737365747314747970657330417373657444657461696c730c1c42616c616e63650110244163636f756e7449640100384465706f73697442616c616e63650110003001146f776e65720001244163636f756e7449640001186973737565720001244163636f756e74496400011461646d696e0001244163636f756e74496400011c667265657a65720001244163636f756e744964000118737570706c7910011c42616c616e636500011c6465706f7369741001384465706f73697442616c616e636500012c6d696e5f62616c616e636510011c42616c616e636500013469735f73756666696369656e74140110626f6f6c0001206163636f756e74730c010c75333200012c73756666696369656e74730c010c753332000124617070726f76616c730c010c75333200011873746174757324012c41737365745374617475730000240c3470616c6c65745f6173736574731474797065732c417373657453746174757300010c104c6976650000001846726f7a656e0001002844657374726f79696e670002000028000004080c00002c0c3470616c6c65745f6173736574731474797065733041737365744163636f756e74101c42616c616e63650110384465706f73697442616c616e63650110144578747261011c244163636f756e74496401000010011c62616c616e636510011c42616c616e63650001187374617475733001344163636f756e74537461747573000118726561736f6e3401a84578697374656e6365526561736f6e3c4465706f73697442616c616e63652c204163636f756e7449643e00011465787472611c011445787472610000300c3470616c6c65745f617373657473147479706573344163636f756e7453746174757300010c184c69717569640000001846726f7a656e0001001c426c6f636b656400020000340c3470616c6c65745f6173736574731474797065733c4578697374656e6365526561736f6e081c42616c616e63650110244163636f756e7449640100011420436f6e73756d65720000002853756666696369656e740001002c4465706f73697448656c64040010011c42616c616e63650002003c4465706f736974526566756e6465640003002c4465706f73697446726f6d08000001244163636f756e744964000010011c42616c616e636500040000380c3470616c6c65745f6173736574731474797065733441737365744d6574616461746108384465706f73697442616c616e6365011034426f756e646564537472696e67013c0014011c6465706f7369741001384465706f73697442616c616e63650001106e616d653c0134426f756e646564537472696e6700011873796d626f6c3c0134426f756e646564537472696e67000120646563696d616c73080108753800012469735f66726f7a656e140110626f6f6c00003c0c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401080453000004001801185665633c543e0000041841737365747301184173736574730c144173736574000104020c20040004542044657461696c73206f6620616e2061737365742e1c4163636f756e740001080202282c040004e42054686520686f6c64696e6773206f662061207370656369666963206163636f756e7420666f7220612073706563696669632061737365742e204d65746164617461010104020c385000000000000000000000000000000000000000000458204d65746164617461206f6620616e2061737365742e00000000320004000000000051080000000000",
|
|
62
62
|
extra: '{"isTestnet":false}'
|
|
63
63
|
}, {
|
|
64
|
-
id: "
|
|
64
|
+
id: "11b446557f1c8900",
|
|
65
65
|
source: "substrate-equilibrium",
|
|
66
66
|
chainId: "kusama-asset-hub",
|
|
67
67
|
specName: "statemine",
|
|
68
|
-
specVersion: "
|
|
68
|
+
specVersion: "1006000",
|
|
69
69
|
balancesConfig: "{}",
|
|
70
70
|
extra: '{"isTestnet":false}'
|
|
71
71
|
}, {
|
|
72
|
-
id: "
|
|
72
|
+
id: "eef16f5a5f860a21",
|
|
73
73
|
source: "substrate-foreignassets",
|
|
74
74
|
chainId: "kusama-asset-hub",
|
|
75
75
|
specName: "statemine",
|
|
76
|
-
specVersion: "
|
|
76
|
+
specVersion: "1006000",
|
|
77
77
|
balancesConfig: "{}",
|
|
78
78
|
extra: '{"isTestnet":false}'
|
|
79
79
|
}, {
|
|
80
|
-
id: "
|
|
80
|
+
id: "483dba785dd1f066",
|
|
81
81
|
source: "substrate-native",
|
|
82
82
|
chainId: "kusama-asset-hub",
|
|
83
83
|
specName: "statemine",
|
|
84
|
-
specVersion: "
|
|
84
|
+
specVersion: "1006000",
|
|
85
85
|
balancesConfig: '{"coingeckoId":"kusama","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"}',
|
|
86
86
|
version: 15,
|
|
87
|
-
data: "
|
|
87
|
+
data: "0x6d6574610f8c000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f08144e6f6e636501102c4163636f756e74446174610114001401146e6f6e63651001144e6f6e6365000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e74446174610000100000050500140c3c70616c6c65745f62616c616e6365731474797065732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500011866726f7a656e18011c42616c616e6365000114666c6167731c01284578747261466c61677300001800000507001c0c3c70616c6c65745f62616c616e636573147479706573284578747261466c61677300000400180110753132380000200000030800000008002400000400002800000504002c040c436f7704045401300004003000000030000005020034082873705f76657273696f6e3852756e74696d6556657273696f6e0000200124737065635f6e616d652c0144436f773c277374617469632c207374723e000124696d706c5f6e616d652c0144436f773c277374617469632c207374723e000144617574686f72696e675f76657273696f6e10010c753332000130737065635f76657273696f6e10010c753332000130696d706c5f76657273696f6e10010c7533320001106170697338011c4170697356656300014c7472616e73616374696f6e5f76657273696f6e10010c75333200013873797374656d5f76657273696f6e0801087538000038040c436f77040454013c0004003c0000003c00000240004000000408201000440c4c626f756e6465645f636f6c6c656374696f6e73407765616b5f626f756e6465645f766563385765616b426f756e64656456656308045401480453000004005001185665633c543e0000480c3c70616c6c65745f62616c616e6365731474797065732c42616c616e63654c6f636b041c42616c616e63650118000c010869642001384c6f636b4964656e746966696572000118616d6f756e7418011c42616c616e636500011c726561736f6e734c011c526561736f6e7300004c0c3c70616c6c65745f62616c616e6365731474797065731c526561736f6e7300010c0c466565000000104d6973630001000c416c6c00020000500000024800540c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401580453000004005c01185665633c543e0000580c3c70616c6c65745f62616c616e6365731474797065732c52657365727665446174610844526573657276654964656e74696669657201201c42616c616e63650118000801086964200144526573657276654964656e746966696572000118616d6f756e7418011c42616c616e636500005c0000025800600c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401640453000004007c01185665633c543e00006414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401681c42616c616e636501180008010869646801084964000118616d6f756e7418011c42616c616e6365000068086061737365745f6875625f6b7573616d615f72756e74696d654452756e74696d65486f6c64526561736f6e0001102c506f6c6b61646f7458636d04006c015870616c6c65745f78636d3a3a486f6c64526561736f6e001f00504e66744672616374696f6e616c697a6174696f6e04007001a070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e3a3a486f6c64526561736f6e00360018526576697665040074016470616c6c65745f7265766976653a3a486f6c64526561736f6e003c00485374617465547269654d6967726174696f6e040078019c70616c6c65745f73746174655f747269655f6d6967726174696f6e3a3a486f6c64526561736f6e004600006c0c2870616c6c65745f78636d1870616c6c657428486f6c64526561736f6e00010438417574686f72697a65416c69617300000000700c7070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e1870616c6c657428486f6c64526561736f6e000104384672616374696f6e616c697a656400000000740c3470616c6c65745f7265766976651870616c6c657428486f6c64526561736f6e00010c60436f646555706c6f61644465706f736974526573657276650000005453746f726167654465706f7369745265736572766500010038416464726573734d617070696e6700020000780c6c70616c6c65745f73746174655f747269655f6d6967726174696f6e1870616c6c657428486f6c64526561736f6e0001043c536c617368466f724d696772617465000000007c0000026400800c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401840453000004008801185665633c543e00008414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401241c42616c616e636501180008010869642401084964000118616d6f756e7418011c42616c616e63650000880000028400081853797374656d011853797374656d041c4163636f756e7401010402000c4101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008004e8205468652066756c6c206163636f756e7420696e666f726d6174696f6e20666f72206120706172746963756c6172206163636f756e742049442e0000081c56657273696f6e3429042473746174656d696e652473746174656d696e6501000000b0590f00000000004cdd718d5cc53262d401000000d7bdd8a272ca0d6502000000df6acb689907609b0500000037e397fc7c91f5e40200000040fe3ad401f8959a06000000d2bc9897eed08f1503000000f78b278be53f454c02000000ab3c0572291feb8b01000000bc9d89904f5b923f010000008a8047a53a8277ec0100000037c8bb1350a9a2a804000000f3ff14d5ab527059030000006ff52ee858e6c5bd0100000091b1c8b16328eb92020000009ffb505aa738d69c01000000de92b8a0426b9bf602000000ea93e3f16f3d696202000000fbc577b9d747efd6010000008c403e5c4a9fd442010000000f000000010484204765742074686520636861696e277320696e2d636f64652076657273696f6e2e28535335385072656669782808020014a8205468652064657369676e61746564205353353820707265666978206f66207468697320636861696e2e0039012054686973207265706c6163657320746865202273733538466f726d6174222070726f7065727479206465636c6172656420696e2074686520636861696e20737065632e20526561736f6e20697331012074686174207468652072756e74696d652073686f756c64206b6e6f772061626f7574207468652070726566697820696e206f7264657220746f206d616b6520757365206f662069742061737020616e206964656e746966696572206f662074686520636861696e2e0000002042616c616e636573012042616c616e63657310144c6f636b73010104020044040010b820416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2501204e4f54453a2053686f756c64206f6e6c79206265206163636573736564207768656e2073657474696e672c206368616e67696e6720616e642066726565696e672061206c6f636b2e00ad0120557365206f66206c6f636b73206973206465707265636174656420696e206661766f7572206f6620667265657a65732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6020526573657276657301010402005404000ca4204e616d6564207265736572766573206f6e20736f6d65206163636f756e742062616c616e6365732e00b10120557365206f66207265736572766573206973206465707265636174656420696e206661766f7572206f6620686f6c64732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6014486f6c64730101040200600400046c20486f6c6473206f6e206163636f756e742062616c616e6365732e1c467265657a65730101040200800400048820467265657a65206c6f636b73206f6e206163636f756e742062616c616e6365732e000000000a0004000000000051080000000000",
|
|
88
88
|
extra: '{"isTestnet":false,"symbol":"KSM","decimals":12,"existentialDeposit":"3333333"}'
|
|
89
89
|
}, {
|
|
90
|
-
id: "
|
|
90
|
+
id: "df4980ebc06220ec",
|
|
91
91
|
source: "substrate-psp22",
|
|
92
92
|
chainId: "kusama-asset-hub",
|
|
93
93
|
specName: "statemine",
|
|
94
|
-
specVersion: "
|
|
94
|
+
specVersion: "1006000",
|
|
95
95
|
balancesConfig: "{}",
|
|
96
96
|
extra: '{"isTestnet":false}'
|
|
97
97
|
}, {
|
|
98
|
-
id: "
|
|
98
|
+
id: "ffd29bb9bd749f89",
|
|
99
99
|
source: "substrate-tokens",
|
|
100
100
|
chainId: "kusama-asset-hub",
|
|
101
101
|
specName: "statemine",
|
|
102
|
-
specVersion: "
|
|
102
|
+
specVersion: "1006000",
|
|
103
103
|
balancesConfig: "{}",
|
|
104
104
|
extra: '{"isTestnet":false}'
|
|
105
105
|
}, {
|
|
@@ -49,55 +49,55 @@ const miniMetadatas = [{
|
|
|
49
49
|
balancesConfig: "{}",
|
|
50
50
|
extra: '{"isTestnet":false}'
|
|
51
51
|
}, {
|
|
52
|
-
id: "
|
|
52
|
+
id: "bf4bce2f48ce3d60",
|
|
53
53
|
source: "substrate-assets",
|
|
54
54
|
chainId: "kusama-asset-hub",
|
|
55
55
|
specName: "statemine",
|
|
56
|
-
specVersion: "
|
|
56
|
+
specVersion: "1006000",
|
|
57
57
|
balancesConfig: '{"tokens":[{"assetId":8,"symbol":"RMRK","coingeckoId":"rmrk","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/rmrk.svg"},{"assetId":16,"symbol":"ARIS","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/aris.svg"},{"assetId":1984,"symbol":"USDT","coingeckoId":"tether","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/usdt.svg"},{"assetId":50000002,"symbol":"dUSD","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/dusd.webp"}]}',
|
|
58
58
|
version: 15,
|
|
59
|
-
data: "
|
|
59
|
+
data: "0x6d6574610f40000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c00000505001000000507001400000500001800000208001c0000040000200c3470616c6c65745f61737365747314747970657330417373657444657461696c730c1c42616c616e63650110244163636f756e7449640100384465706f73697442616c616e63650110003001146f776e65720001244163636f756e7449640001186973737565720001244163636f756e74496400011461646d696e0001244163636f756e74496400011c667265657a65720001244163636f756e744964000118737570706c7910011c42616c616e636500011c6465706f7369741001384465706f73697442616c616e636500012c6d696e5f62616c616e636510011c42616c616e636500013469735f73756666696369656e74140110626f6f6c0001206163636f756e74730c010c75333200012c73756666696369656e74730c010c753332000124617070726f76616c730c010c75333200011873746174757324012c41737365745374617475730000240c3470616c6c65745f6173736574731474797065732c417373657453746174757300010c104c6976650000001846726f7a656e0001002844657374726f79696e670002000028000004080c00002c0c3470616c6c65745f6173736574731474797065733041737365744163636f756e74101c42616c616e63650110384465706f73697442616c616e63650110144578747261011c244163636f756e74496401000010011c62616c616e636510011c42616c616e63650001187374617475733001344163636f756e74537461747573000118726561736f6e3401a84578697374656e6365526561736f6e3c4465706f73697442616c616e63652c204163636f756e7449643e00011465787472611c011445787472610000300c3470616c6c65745f617373657473147479706573344163636f756e7453746174757300010c184c69717569640000001846726f7a656e0001001c426c6f636b656400020000340c3470616c6c65745f6173736574731474797065733c4578697374656e6365526561736f6e081c42616c616e63650110244163636f756e7449640100011420436f6e73756d65720000002853756666696369656e740001002c4465706f73697448656c64040010011c42616c616e63650002003c4465706f736974526566756e6465640003002c4465706f73697446726f6d08000001244163636f756e744964000010011c42616c616e636500040000380c3470616c6c65745f6173736574731474797065733441737365744d6574616461746108384465706f73697442616c616e6365011034426f756e646564537472696e67013c0014011c6465706f7369741001384465706f73697442616c616e63650001106e616d653c0134426f756e646564537472696e6700011873796d626f6c3c0134426f756e646564537472696e67000120646563696d616c73080108753800012469735f66726f7a656e140110626f6f6c00003c0c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401080453000004001801185665633c543e0000041841737365747301184173736574730c144173736574000104020c20040004542044657461696c73206f6620616e2061737365742e1c4163636f756e740001080202282c040004e42054686520686f6c64696e6773206f662061207370656369666963206163636f756e7420666f7220612073706563696669632061737365742e204d65746164617461010104020c385000000000000000000000000000000000000000000458204d65746164617461206f6620616e2061737365742e00000000320004000000000051080000000000",
|
|
60
60
|
extra: '{"isTestnet":false}'
|
|
61
61
|
}, {
|
|
62
|
-
id: "
|
|
62
|
+
id: "11b446557f1c8900",
|
|
63
63
|
source: "substrate-equilibrium",
|
|
64
64
|
chainId: "kusama-asset-hub",
|
|
65
65
|
specName: "statemine",
|
|
66
|
-
specVersion: "
|
|
66
|
+
specVersion: "1006000",
|
|
67
67
|
balancesConfig: "{}",
|
|
68
68
|
extra: '{"isTestnet":false}'
|
|
69
69
|
}, {
|
|
70
|
-
id: "
|
|
70
|
+
id: "eef16f5a5f860a21",
|
|
71
71
|
source: "substrate-foreignassets",
|
|
72
72
|
chainId: "kusama-asset-hub",
|
|
73
73
|
specName: "statemine",
|
|
74
|
-
specVersion: "
|
|
74
|
+
specVersion: "1006000",
|
|
75
75
|
balancesConfig: "{}",
|
|
76
76
|
extra: '{"isTestnet":false}'
|
|
77
77
|
}, {
|
|
78
|
-
id: "
|
|
78
|
+
id: "483dba785dd1f066",
|
|
79
79
|
source: "substrate-native",
|
|
80
80
|
chainId: "kusama-asset-hub",
|
|
81
81
|
specName: "statemine",
|
|
82
|
-
specVersion: "
|
|
82
|
+
specVersion: "1006000",
|
|
83
83
|
balancesConfig: '{"coingeckoId":"kusama","logo":"https://raw.githubusercontent.com/TalismanSociety/chaindata/main/assets/tokens/ksm.svg"}',
|
|
84
84
|
version: 15,
|
|
85
|
-
data: "
|
|
85
|
+
data: "0x6d6574610f8c000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f08144e6f6e636501102c4163636f756e74446174610114001401146e6f6e63651001144e6f6e6365000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e74446174610000100000050500140c3c70616c6c65745f62616c616e6365731474797065732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500011866726f7a656e18011c42616c616e6365000114666c6167731c01284578747261466c61677300001800000507001c0c3c70616c6c65745f62616c616e636573147479706573284578747261466c61677300000400180110753132380000200000030800000008002400000400002800000504002c040c436f7704045401300004003000000030000005020034082873705f76657273696f6e3852756e74696d6556657273696f6e0000200124737065635f6e616d652c0144436f773c277374617469632c207374723e000124696d706c5f6e616d652c0144436f773c277374617469632c207374723e000144617574686f72696e675f76657273696f6e10010c753332000130737065635f76657273696f6e10010c753332000130696d706c5f76657273696f6e10010c7533320001106170697338011c4170697356656300014c7472616e73616374696f6e5f76657273696f6e10010c75333200013873797374656d5f76657273696f6e0801087538000038040c436f77040454013c0004003c0000003c00000240004000000408201000440c4c626f756e6465645f636f6c6c656374696f6e73407765616b5f626f756e6465645f766563385765616b426f756e64656456656308045401480453000004005001185665633c543e0000480c3c70616c6c65745f62616c616e6365731474797065732c42616c616e63654c6f636b041c42616c616e63650118000c010869642001384c6f636b4964656e746966696572000118616d6f756e7418011c42616c616e636500011c726561736f6e734c011c526561736f6e7300004c0c3c70616c6c65745f62616c616e6365731474797065731c526561736f6e7300010c0c466565000000104d6973630001000c416c6c00020000500000024800540c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401580453000004005c01185665633c543e0000580c3c70616c6c65745f62616c616e6365731474797065732c52657365727665446174610844526573657276654964656e74696669657201201c42616c616e63650118000801086964200144526573657276654964656e746966696572000118616d6f756e7418011c42616c616e636500005c0000025800600c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401640453000004007c01185665633c543e00006414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401681c42616c616e636501180008010869646801084964000118616d6f756e7418011c42616c616e6365000068086061737365745f6875625f6b7573616d615f72756e74696d654452756e74696d65486f6c64526561736f6e0001102c506f6c6b61646f7458636d04006c015870616c6c65745f78636d3a3a486f6c64526561736f6e001f00504e66744672616374696f6e616c697a6174696f6e04007001a070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e3a3a486f6c64526561736f6e00360018526576697665040074016470616c6c65745f7265766976653a3a486f6c64526561736f6e003c00485374617465547269654d6967726174696f6e040078019c70616c6c65745f73746174655f747269655f6d6967726174696f6e3a3a486f6c64526561736f6e004600006c0c2870616c6c65745f78636d1870616c6c657428486f6c64526561736f6e00010438417574686f72697a65416c69617300000000700c7070616c6c65745f6e66745f6672616374696f6e616c697a6174696f6e1870616c6c657428486f6c64526561736f6e000104384672616374696f6e616c697a656400000000740c3470616c6c65745f7265766976651870616c6c657428486f6c64526561736f6e00010c60436f646555706c6f61644465706f736974526573657276650000005453746f726167654465706f7369745265736572766500010038416464726573734d617070696e6700020000780c6c70616c6c65745f73746174655f747269655f6d6967726174696f6e1870616c6c657428486f6c64526561736f6e0001043c536c617368466f724d696772617465000000007c0000026400800c4c626f756e6465645f636f6c6c656374696f6e732c626f756e6465645f76656328426f756e64656456656308045401840453000004008801185665633c543e00008414346672616d655f737570706f72741874726169747318746f6b656e73106d697363204964416d6f756e740808496401241c42616c616e636501180008010869642401084964000118616d6f756e7418011c42616c616e63650000880000028400081853797374656d011853797374656d041c4163636f756e7401010402000c4101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008004e8205468652066756c6c206163636f756e7420696e666f726d6174696f6e20666f72206120706172746963756c6172206163636f756e742049442e0000081c56657273696f6e3429042473746174656d696e652473746174656d696e6501000000b0590f00000000004cdd718d5cc53262d401000000d7bdd8a272ca0d6502000000df6acb689907609b0500000037e397fc7c91f5e40200000040fe3ad401f8959a06000000d2bc9897eed08f1503000000f78b278be53f454c02000000ab3c0572291feb8b01000000bc9d89904f5b923f010000008a8047a53a8277ec0100000037c8bb1350a9a2a804000000f3ff14d5ab527059030000006ff52ee858e6c5bd0100000091b1c8b16328eb92020000009ffb505aa738d69c01000000de92b8a0426b9bf602000000ea93e3f16f3d696202000000fbc577b9d747efd6010000008c403e5c4a9fd442010000000f000000010484204765742074686520636861696e277320696e2d636f64652076657273696f6e2e28535335385072656669782808020014a8205468652064657369676e61746564205353353820707265666978206f66207468697320636861696e2e0039012054686973207265706c6163657320746865202273733538466f726d6174222070726f7065727479206465636c6172656420696e2074686520636861696e20737065632e20526561736f6e20697331012074686174207468652072756e74696d652073686f756c64206b6e6f772061626f7574207468652070726566697820696e206f7264657220746f206d616b6520757365206f662069742061737020616e206964656e746966696572206f662074686520636861696e2e0000002042616c616e636573012042616c616e63657310144c6f636b73010104020044040010b820416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2501204e4f54453a2053686f756c64206f6e6c79206265206163636573736564207768656e2073657474696e672c206368616e67696e6720616e642066726565696e672061206c6f636b2e00ad0120557365206f66206c6f636b73206973206465707265636174656420696e206661766f7572206f6620667265657a65732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6020526573657276657301010402005404000ca4204e616d6564207265736572766573206f6e20736f6d65206163636f756e742062616c616e6365732e00b10120557365206f66207265736572766573206973206465707265636174656420696e206661766f7572206f6620686f6c64732e20536565206068747470733a2f2f6769746875622e636f6d2f706172697479746563682f7375627374726174652f70756c6c2f31323935312f6014486f6c64730101040200600400046c20486f6c6473206f6e206163636f756e742062616c616e6365732e1c467265657a65730101040200800400048820467265657a65206c6f636b73206f6e206163636f756e742062616c616e6365732e000000000a0004000000000051080000000000",
|
|
86
86
|
extra: '{"isTestnet":false,"symbol":"KSM","decimals":12,"existentialDeposit":"3333333"}'
|
|
87
87
|
}, {
|
|
88
|
-
id: "
|
|
88
|
+
id: "df4980ebc06220ec",
|
|
89
89
|
source: "substrate-psp22",
|
|
90
90
|
chainId: "kusama-asset-hub",
|
|
91
91
|
specName: "statemine",
|
|
92
|
-
specVersion: "
|
|
92
|
+
specVersion: "1006000",
|
|
93
93
|
balancesConfig: "{}",
|
|
94
94
|
extra: '{"isTestnet":false}'
|
|
95
95
|
}, {
|
|
96
|
-
id: "
|
|
96
|
+
id: "ffd29bb9bd749f89",
|
|
97
97
|
source: "substrate-tokens",
|
|
98
98
|
chainId: "kusama-asset-hub",
|
|
99
99
|
specName: "statemine",
|
|
100
|
-
specVersion: "
|
|
100
|
+
specVersion: "1006000",
|
|
101
101
|
balancesConfig: "{}",
|
|
102
102
|
extra: '{"isTestnet":false}'
|
|
103
103
|
}, {
|