@subwallet/chain-list 0.0.10 → 0.0.11
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/bundle-subwallet-chain-list.js +417 -1
- package/cjs/packageInfo.js +1 -1
- package/data/ChainAsset.json +130 -0
- package/data/ChainInfo.json +284 -0
- package/data/MultiChainAsset.json +7 -0
- package/package.json +1 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +0 -3
|
@@ -456,6 +456,275 @@
|
|
|
456
456
|
abiExplorer: "https://api-moonbase.moonscan.io/api?module=contract&action=getabi"
|
|
457
457
|
}
|
|
458
458
|
};
|
|
459
|
+
var moonriver = {
|
|
460
|
+
slug: "moonriver",
|
|
461
|
+
name: "Moonriver",
|
|
462
|
+
isTestnet: false,
|
|
463
|
+
chainStatus: "ACTIVE",
|
|
464
|
+
providers: {
|
|
465
|
+
"Moonbeam Foundation": "wss://wss.api.moonriver.moonbeam.network",
|
|
466
|
+
OnFinality: "wss://moonriver.api.onfinality.io/public-ws",
|
|
467
|
+
Blast: "wss://moonriver.public.blastapi.io",
|
|
468
|
+
Dwellir: "wss://moonriver-rpc.dwellir.com",
|
|
469
|
+
Pinknode: "wss://public-rpc.pinknode.io/moonriver",
|
|
470
|
+
UnitedBloc: "wss://moonriver.unitedbloc.com:2001"
|
|
471
|
+
},
|
|
472
|
+
substrateInfo: {
|
|
473
|
+
paraId: 2023,
|
|
474
|
+
relaySlug: "kusama",
|
|
475
|
+
genesisHash: "0x401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b",
|
|
476
|
+
addressPrefix: 1285,
|
|
477
|
+
crowdloanUrl: null,
|
|
478
|
+
chainType: "PARACHAIN",
|
|
479
|
+
blockExplorer: "https://moonriver.subscan.io/",
|
|
480
|
+
symbol: "MOVR",
|
|
481
|
+
existentialDeposit: "0",
|
|
482
|
+
decimals: 18,
|
|
483
|
+
hasNativeNft: false,
|
|
484
|
+
supportStaking: true,
|
|
485
|
+
supportSmartContract: null
|
|
486
|
+
},
|
|
487
|
+
evmInfo: {
|
|
488
|
+
evmChainId: 1285,
|
|
489
|
+
blockExplorer: "https://moonriver.moonscan.io/",
|
|
490
|
+
symbol: "MOVR",
|
|
491
|
+
decimals: 18,
|
|
492
|
+
existentialDeposit: "0",
|
|
493
|
+
supportSmartContract: [
|
|
494
|
+
"ERC721",
|
|
495
|
+
"ERC20"
|
|
496
|
+
],
|
|
497
|
+
abiExplorer: "https://api-moonriver.moonscan.io/api?module=contract&action=getabi"
|
|
498
|
+
}
|
|
499
|
+
};
|
|
500
|
+
var turingStaging = {
|
|
501
|
+
slug: "turingStaging",
|
|
502
|
+
name: "Turing Staging",
|
|
503
|
+
isTestnet: true,
|
|
504
|
+
chainStatus: "ACTIVE",
|
|
505
|
+
providers: {
|
|
506
|
+
Turing: "wss://rpc.turing-staging.oak.tech"
|
|
507
|
+
},
|
|
508
|
+
substrateInfo: {
|
|
509
|
+
paraId: 2114,
|
|
510
|
+
relaySlug: null,
|
|
511
|
+
genesisHash: "0xd54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b",
|
|
512
|
+
addressPrefix: 51,
|
|
513
|
+
crowdloanUrl: null,
|
|
514
|
+
chainType: "PARACHAIN",
|
|
515
|
+
blockExplorer: null,
|
|
516
|
+
symbol: "TUR",
|
|
517
|
+
existentialDeposit: "100000000",
|
|
518
|
+
decimals: 10,
|
|
519
|
+
hasNativeNft: false,
|
|
520
|
+
supportStaking: true,
|
|
521
|
+
supportSmartContract: null
|
|
522
|
+
},
|
|
523
|
+
evmInfo: null
|
|
524
|
+
};
|
|
525
|
+
var turing = {
|
|
526
|
+
slug: "turing",
|
|
527
|
+
name: "Turing",
|
|
528
|
+
isTestnet: false,
|
|
529
|
+
chainStatus: "ACTIVE",
|
|
530
|
+
providers: {
|
|
531
|
+
Turing: "wss://rpc.turing.oak.tech",
|
|
532
|
+
Dwellir: "wss://turing-rpc.dwellir.com"
|
|
533
|
+
},
|
|
534
|
+
substrateInfo: {
|
|
535
|
+
paraId: 2114,
|
|
536
|
+
relaySlug: "kusama",
|
|
537
|
+
genesisHash: "0x0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d",
|
|
538
|
+
addressPrefix: 51,
|
|
539
|
+
crowdloanUrl: null,
|
|
540
|
+
chainType: "PARACHAIN",
|
|
541
|
+
blockExplorer: "https://turing.subscan.io/",
|
|
542
|
+
symbol: "TUR",
|
|
543
|
+
existentialDeposit: "100000000",
|
|
544
|
+
decimals: 10,
|
|
545
|
+
hasNativeNft: false,
|
|
546
|
+
supportStaking: true,
|
|
547
|
+
supportSmartContract: null
|
|
548
|
+
},
|
|
549
|
+
evmInfo: null
|
|
550
|
+
};
|
|
551
|
+
var bifrost = {
|
|
552
|
+
slug: "bifrost",
|
|
553
|
+
name: "Bifrost Kusama",
|
|
554
|
+
isTestnet: false,
|
|
555
|
+
chainStatus: "ACTIVE",
|
|
556
|
+
providers: {
|
|
557
|
+
"Liebi 0": "wss://bifrost-rpc.liebi.com/ws",
|
|
558
|
+
Dwellir: "wss://bifrost-rpc.dwellir.com",
|
|
559
|
+
OnFinality: "wss://bifrost-parachain.api.onfinality.io/public-ws"
|
|
560
|
+
},
|
|
561
|
+
substrateInfo: {
|
|
562
|
+
paraId: 2001,
|
|
563
|
+
relaySlug: "kusama",
|
|
564
|
+
genesisHash: "0x9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed",
|
|
565
|
+
addressPrefix: 6,
|
|
566
|
+
crowdloanUrl: "https://bifrost.app/vcrowdloan",
|
|
567
|
+
chainType: "PARACHAIN",
|
|
568
|
+
blockExplorer: "https://bifrost-kusama.subscan.io",
|
|
569
|
+
symbol: "BNC",
|
|
570
|
+
existentialDeposit: "10000000000",
|
|
571
|
+
decimals: 12,
|
|
572
|
+
hasNativeNft: false,
|
|
573
|
+
supportStaking: true,
|
|
574
|
+
supportSmartContract: null
|
|
575
|
+
},
|
|
576
|
+
evmInfo: null
|
|
577
|
+
};
|
|
578
|
+
var bifrost_dot = {
|
|
579
|
+
slug: "bifrost_dot",
|
|
580
|
+
name: "Bifrost Polkadot",
|
|
581
|
+
isTestnet: false,
|
|
582
|
+
chainStatus: "ACTIVE",
|
|
583
|
+
providers: {
|
|
584
|
+
Liebi: "wss://hk.p.bifrost-rpc.liebi.com/ws",
|
|
585
|
+
OnFinality: "wss://bifrost-polkadot.api.onfinality.io/public-ws"
|
|
586
|
+
},
|
|
587
|
+
substrateInfo: {
|
|
588
|
+
paraId: 2030,
|
|
589
|
+
relaySlug: "polkadot",
|
|
590
|
+
genesisHash: "0x262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b",
|
|
591
|
+
addressPrefix: 6,
|
|
592
|
+
crowdloanUrl: "https://bifrost.app/vcrowdloan",
|
|
593
|
+
chainType: "PARACHAIN",
|
|
594
|
+
blockExplorer: "https://bifrost.subscan.io",
|
|
595
|
+
symbol: "BNC",
|
|
596
|
+
existentialDeposit: "10000000000",
|
|
597
|
+
decimals: 12,
|
|
598
|
+
hasNativeNft: false,
|
|
599
|
+
supportStaking: true,
|
|
600
|
+
supportSmartContract: null
|
|
601
|
+
},
|
|
602
|
+
evmInfo: null
|
|
603
|
+
};
|
|
604
|
+
var bifrost_testnet = {
|
|
605
|
+
slug: "bifrost_testnet",
|
|
606
|
+
name: "Bifrost Testnet",
|
|
607
|
+
isTestnet: true,
|
|
608
|
+
chainStatus: "ACTIVE",
|
|
609
|
+
providers: {
|
|
610
|
+
Liebi: "wss://bifrost-rpc.rococo.liebi.com/ws"
|
|
611
|
+
},
|
|
612
|
+
substrateInfo: {
|
|
613
|
+
paraId: 2030,
|
|
614
|
+
relaySlug: "rococo",
|
|
615
|
+
genesisHash: "0x8b290fa39a8808f29d7309ea99442c95bf964838aef14be5a6449ae48f8a5f1f",
|
|
616
|
+
addressPrefix: 6,
|
|
617
|
+
crowdloanUrl: null,
|
|
618
|
+
chainType: "PARACHAIN",
|
|
619
|
+
blockExplorer: "https://bifrost-testnet.subscan.io/",
|
|
620
|
+
symbol: "BNC",
|
|
621
|
+
existentialDeposit: "10000000000",
|
|
622
|
+
decimals: 12,
|
|
623
|
+
hasNativeNft: false,
|
|
624
|
+
supportStaking: true,
|
|
625
|
+
supportSmartContract: null
|
|
626
|
+
},
|
|
627
|
+
evmInfo: null
|
|
628
|
+
};
|
|
629
|
+
var calamari = {
|
|
630
|
+
slug: "calamari",
|
|
631
|
+
name: "Calamari Parachain",
|
|
632
|
+
isTestnet: false,
|
|
633
|
+
chainStatus: "ACTIVE",
|
|
634
|
+
providers: {
|
|
635
|
+
"Manta Network": "wss://ws.calamari.systems/",
|
|
636
|
+
OnFinality: "wss://calamari.api.onfinality.io/public-ws"
|
|
637
|
+
},
|
|
638
|
+
substrateInfo: {
|
|
639
|
+
paraId: 2084,
|
|
640
|
+
relaySlug: "kusama",
|
|
641
|
+
genesisHash: "0x4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1",
|
|
642
|
+
addressPrefix: 78,
|
|
643
|
+
crowdloanUrl: "https://calamari.network/",
|
|
644
|
+
chainType: "PARACHAIN",
|
|
645
|
+
blockExplorer: "https://calamari.subscan.io/",
|
|
646
|
+
symbol: "KMA",
|
|
647
|
+
existentialDeposit: "100000000000",
|
|
648
|
+
decimals: 12,
|
|
649
|
+
hasNativeNft: false,
|
|
650
|
+
supportStaking: true,
|
|
651
|
+
supportSmartContract: null
|
|
652
|
+
},
|
|
653
|
+
evmInfo: null
|
|
654
|
+
};
|
|
655
|
+
var amplitude = {
|
|
656
|
+
slug: "amplitude",
|
|
657
|
+
name: "Amplitude",
|
|
658
|
+
isTestnet: false,
|
|
659
|
+
chainStatus: "ACTIVE",
|
|
660
|
+
providers: {
|
|
661
|
+
Amplitude: "wss://rpc-amplitude.pendulumchain.tech"
|
|
662
|
+
},
|
|
663
|
+
substrateInfo: {
|
|
664
|
+
paraId: 2124,
|
|
665
|
+
relaySlug: "kusama",
|
|
666
|
+
genesisHash: "0xcceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf",
|
|
667
|
+
addressPrefix: 57,
|
|
668
|
+
crowdloanUrl: null,
|
|
669
|
+
chainType: "PARACHAIN",
|
|
670
|
+
blockExplorer: null,
|
|
671
|
+
symbol: "AMPE",
|
|
672
|
+
existentialDeposit: "1000000000",
|
|
673
|
+
decimals: 12,
|
|
674
|
+
hasNativeNft: false,
|
|
675
|
+
supportStaking: true,
|
|
676
|
+
supportSmartContract: null
|
|
677
|
+
},
|
|
678
|
+
evmInfo: null
|
|
679
|
+
};
|
|
680
|
+
var amplitude_test = {
|
|
681
|
+
slug: "amplitude_test",
|
|
682
|
+
name: "Amplitude Testnet",
|
|
683
|
+
isTestnet: true,
|
|
684
|
+
chainStatus: "ACTIVE",
|
|
685
|
+
providers: {
|
|
686
|
+
Amplitude: "wss://rpc-foucoco.pendulumchain.tech"
|
|
687
|
+
},
|
|
688
|
+
substrateInfo: {
|
|
689
|
+
paraId: 2124,
|
|
690
|
+
relaySlug: "rococo",
|
|
691
|
+
genesisHash: "0x67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13",
|
|
692
|
+
addressPrefix: 57,
|
|
693
|
+
crowdloanUrl: null,
|
|
694
|
+
chainType: "PARACHAIN",
|
|
695
|
+
blockExplorer: null,
|
|
696
|
+
symbol: "AMPE",
|
|
697
|
+
existentialDeposit: "1000000000",
|
|
698
|
+
decimals: 12,
|
|
699
|
+
hasNativeNft: false,
|
|
700
|
+
supportStaking: true,
|
|
701
|
+
supportSmartContract: null
|
|
702
|
+
},
|
|
703
|
+
evmInfo: null
|
|
704
|
+
};
|
|
705
|
+
var bobabase = {
|
|
706
|
+
slug: "bobabase",
|
|
707
|
+
name: "Bobabase Testnet",
|
|
708
|
+
isTestnet: true,
|
|
709
|
+
chainStatus: "ACTIVE",
|
|
710
|
+
providers: {
|
|
711
|
+
RPC: "https://bobabase.boba.network",
|
|
712
|
+
"Replica RPC": "https://replica.bobabase.boba.network"
|
|
713
|
+
},
|
|
714
|
+
substrateInfo: null,
|
|
715
|
+
evmInfo: {
|
|
716
|
+
evmChainId: 1297,
|
|
717
|
+
blockExplorer: null,
|
|
718
|
+
symbol: "BOBA",
|
|
719
|
+
decimals: 18,
|
|
720
|
+
existentialDeposit: "0",
|
|
721
|
+
supportSmartContract: [
|
|
722
|
+
"ERC20",
|
|
723
|
+
"ERC721"
|
|
724
|
+
],
|
|
725
|
+
abiExplorer: "https://blockexplorer.bobabase.boba.network"
|
|
726
|
+
}
|
|
727
|
+
};
|
|
459
728
|
const _ChainInfoMap = {
|
|
460
729
|
polkadot: polkadot,
|
|
461
730
|
kusama: kusama,
|
|
@@ -471,7 +740,17 @@
|
|
|
471
740
|
rococo: rococo,
|
|
472
741
|
bitcountry: bitcountry,
|
|
473
742
|
equilibrium_parachain: equilibrium_parachain,
|
|
474
|
-
moonbase: moonbase
|
|
743
|
+
moonbase: moonbase,
|
|
744
|
+
moonriver: moonriver,
|
|
745
|
+
turingStaging: turingStaging,
|
|
746
|
+
turing: turing,
|
|
747
|
+
bifrost: bifrost,
|
|
748
|
+
bifrost_dot: bifrost_dot,
|
|
749
|
+
bifrost_testnet: bifrost_testnet,
|
|
750
|
+
calamari: calamari,
|
|
751
|
+
amplitude: amplitude,
|
|
752
|
+
amplitude_test: amplitude_test,
|
|
753
|
+
bobabase: bobabase
|
|
475
754
|
};
|
|
476
755
|
|
|
477
756
|
const _ChainAssetMap = {
|
|
@@ -856,6 +1135,136 @@
|
|
|
856
1135
|
metadata: null,
|
|
857
1136
|
multiChainAsset: "DEV-moonbaseDev",
|
|
858
1137
|
hasValue: false
|
|
1138
|
+
},
|
|
1139
|
+
"moonriver-NATIVE-MOVR": {
|
|
1140
|
+
originChain: "moonriver",
|
|
1141
|
+
slug: "moonriver-NATIVE-MOVR",
|
|
1142
|
+
name: "Moonriver",
|
|
1143
|
+
symbol: "MOVR",
|
|
1144
|
+
decimals: 18,
|
|
1145
|
+
priceId: "moonriver",
|
|
1146
|
+
minAmount: "0",
|
|
1147
|
+
assetType: "NATIVE",
|
|
1148
|
+
metadata: null,
|
|
1149
|
+
multiChainAsset: "MOVR-Moonriver",
|
|
1150
|
+
hasValue: true
|
|
1151
|
+
},
|
|
1152
|
+
"turingStaging-NATIVE-TUR": {
|
|
1153
|
+
originChain: "turingStaging",
|
|
1154
|
+
slug: "turingStaging-NATIVE-TUR",
|
|
1155
|
+
name: "Turing",
|
|
1156
|
+
symbol: "TUR",
|
|
1157
|
+
decimals: 10,
|
|
1158
|
+
priceId: null,
|
|
1159
|
+
minAmount: "100000000",
|
|
1160
|
+
assetType: "NATIVE",
|
|
1161
|
+
metadata: null,
|
|
1162
|
+
multiChainAsset: null,
|
|
1163
|
+
hasValue: false
|
|
1164
|
+
},
|
|
1165
|
+
"turing-NATIVE-TUR": {
|
|
1166
|
+
originChain: "turing",
|
|
1167
|
+
slug: "turing-NATIVE-TUR",
|
|
1168
|
+
name: "Turing",
|
|
1169
|
+
symbol: "TUR",
|
|
1170
|
+
decimals: 10,
|
|
1171
|
+
priceId: null,
|
|
1172
|
+
minAmount: "100000000",
|
|
1173
|
+
assetType: "NATIVE",
|
|
1174
|
+
metadata: null,
|
|
1175
|
+
multiChainAsset: null,
|
|
1176
|
+
hasValue: true
|
|
1177
|
+
},
|
|
1178
|
+
"bifrost-NATIVE-BNC": {
|
|
1179
|
+
originChain: "bifrost",
|
|
1180
|
+
slug: "bifrost-NATIVE-BNC",
|
|
1181
|
+
name: "Bifrost Kusama",
|
|
1182
|
+
symbol: "BNC",
|
|
1183
|
+
decimals: 12,
|
|
1184
|
+
priceId: null,
|
|
1185
|
+
minAmount: "10000000000",
|
|
1186
|
+
assetType: "NATIVE",
|
|
1187
|
+
metadata: null,
|
|
1188
|
+
multiChainAsset: null,
|
|
1189
|
+
hasValue: true
|
|
1190
|
+
},
|
|
1191
|
+
"bifrost_dot-NATIVE-BNC": {
|
|
1192
|
+
originChain: "bifrost_dot",
|
|
1193
|
+
slug: "bifrost_dot-NATIVE-BNC",
|
|
1194
|
+
name: "Bifrost Polkadot",
|
|
1195
|
+
symbol: "BNC",
|
|
1196
|
+
decimals: 12,
|
|
1197
|
+
priceId: "bifrost-native-coin",
|
|
1198
|
+
minAmount: "10000000000",
|
|
1199
|
+
assetType: "NATIVE",
|
|
1200
|
+
metadata: null,
|
|
1201
|
+
multiChainAsset: null,
|
|
1202
|
+
hasValue: true
|
|
1203
|
+
},
|
|
1204
|
+
"bifrost_testnet-NATIVE-BNC": {
|
|
1205
|
+
originChain: "bifrost_testnet",
|
|
1206
|
+
slug: "bifrost_testnet-NATIVE-BNC",
|
|
1207
|
+
name: "Bifrost Testnet",
|
|
1208
|
+
symbol: "BNC",
|
|
1209
|
+
decimals: 12,
|
|
1210
|
+
priceId: null,
|
|
1211
|
+
minAmount: "10000000000",
|
|
1212
|
+
assetType: "NATIVE",
|
|
1213
|
+
metadata: null,
|
|
1214
|
+
multiChainAsset: null,
|
|
1215
|
+
hasValue: false
|
|
1216
|
+
},
|
|
1217
|
+
"calamari-NATIVE-KMA": {
|
|
1218
|
+
originChain: "calamari",
|
|
1219
|
+
slug: "calamari-NATIVE-KMA",
|
|
1220
|
+
name: "Calamari",
|
|
1221
|
+
symbol: "KMA",
|
|
1222
|
+
decimals: 12,
|
|
1223
|
+
priceId: "calamari-network",
|
|
1224
|
+
minAmount: "100000000000",
|
|
1225
|
+
assetType: "NATIVE",
|
|
1226
|
+
metadata: null,
|
|
1227
|
+
multiChainAsset: null,
|
|
1228
|
+
hasValue: true
|
|
1229
|
+
},
|
|
1230
|
+
"amplitude-NATIVE-AMPE": {
|
|
1231
|
+
originChain: "amplitude",
|
|
1232
|
+
slug: "amplitude-NATIVE-AMPE",
|
|
1233
|
+
name: "Amplitude",
|
|
1234
|
+
symbol: "AMPE",
|
|
1235
|
+
decimals: 12,
|
|
1236
|
+
priceId: null,
|
|
1237
|
+
minAmount: "1000000000",
|
|
1238
|
+
assetType: "NATIVE",
|
|
1239
|
+
metadata: null,
|
|
1240
|
+
multiChainAsset: null,
|
|
1241
|
+
hasValue: true
|
|
1242
|
+
},
|
|
1243
|
+
"amplitude_test-NATIVE-AMPE": {
|
|
1244
|
+
originChain: "amplitude_test",
|
|
1245
|
+
slug: "amplitude_test-NATIVE-AMPE",
|
|
1246
|
+
name: "Amplitude Testnet",
|
|
1247
|
+
symbol: "AMPE",
|
|
1248
|
+
decimals: 12,
|
|
1249
|
+
priceId: null,
|
|
1250
|
+
minAmount: "1000000000",
|
|
1251
|
+
assetType: "NATIVE",
|
|
1252
|
+
metadata: null,
|
|
1253
|
+
multiChainAsset: null,
|
|
1254
|
+
hasValue: false
|
|
1255
|
+
},
|
|
1256
|
+
"bobabase-NATIVE-BOBA": {
|
|
1257
|
+
originChain: "bobabase",
|
|
1258
|
+
slug: "bobabase-NATIVE-BOBA",
|
|
1259
|
+
name: "Bobabase",
|
|
1260
|
+
symbol: "BOBA",
|
|
1261
|
+
decimals: 18,
|
|
1262
|
+
priceId: null,
|
|
1263
|
+
minAmount: "0",
|
|
1264
|
+
assetType: "NATIVE",
|
|
1265
|
+
metadata: null,
|
|
1266
|
+
multiChainAsset: null,
|
|
1267
|
+
hasValue: false
|
|
859
1268
|
}
|
|
860
1269
|
};
|
|
861
1270
|
|
|
@@ -940,6 +1349,13 @@
|
|
|
940
1349
|
name: "Moonbase Dev",
|
|
941
1350
|
symbol: "DEV",
|
|
942
1351
|
priceId: null
|
|
1352
|
+
},
|
|
1353
|
+
"MOVR-Moonriver": {
|
|
1354
|
+
slug: "MOVR-Moonriver",
|
|
1355
|
+
originChainAsset: "moonriver-NATIVE-MOVR",
|
|
1356
|
+
name: "Moonriver",
|
|
1357
|
+
symbol: "MOVR",
|
|
1358
|
+
priceId: "moonriver"
|
|
943
1359
|
}
|
|
944
1360
|
};
|
|
945
1361
|
|
package/cjs/packageInfo.js
CHANGED
package/data/ChainAsset.json
CHANGED
|
@@ -380,5 +380,135 @@
|
|
|
380
380
|
"metadata": null,
|
|
381
381
|
"multiChainAsset": "DEV-moonbaseDev",
|
|
382
382
|
"hasValue": false
|
|
383
|
+
},
|
|
384
|
+
"moonriver-NATIVE-MOVR": {
|
|
385
|
+
"originChain": "moonriver",
|
|
386
|
+
"slug": "moonriver-NATIVE-MOVR",
|
|
387
|
+
"name": "Moonriver",
|
|
388
|
+
"symbol": "MOVR",
|
|
389
|
+
"decimals": 18,
|
|
390
|
+
"priceId": "moonriver",
|
|
391
|
+
"minAmount": "0",
|
|
392
|
+
"assetType": "NATIVE",
|
|
393
|
+
"metadata": null,
|
|
394
|
+
"multiChainAsset": "MOVR-Moonriver",
|
|
395
|
+
"hasValue": true
|
|
396
|
+
},
|
|
397
|
+
"turingStaging-NATIVE-TUR": {
|
|
398
|
+
"originChain": "turingStaging",
|
|
399
|
+
"slug": "turingStaging-NATIVE-TUR",
|
|
400
|
+
"name": "Turing",
|
|
401
|
+
"symbol": "TUR",
|
|
402
|
+
"decimals": 10,
|
|
403
|
+
"priceId": null,
|
|
404
|
+
"minAmount": "100000000",
|
|
405
|
+
"assetType": "NATIVE",
|
|
406
|
+
"metadata": null,
|
|
407
|
+
"multiChainAsset": null,
|
|
408
|
+
"hasValue": false
|
|
409
|
+
},
|
|
410
|
+
"turing-NATIVE-TUR": {
|
|
411
|
+
"originChain": "turing",
|
|
412
|
+
"slug": "turing-NATIVE-TUR",
|
|
413
|
+
"name": "Turing",
|
|
414
|
+
"symbol": "TUR",
|
|
415
|
+
"decimals": 10,
|
|
416
|
+
"priceId": null,
|
|
417
|
+
"minAmount": "100000000",
|
|
418
|
+
"assetType": "NATIVE",
|
|
419
|
+
"metadata": null,
|
|
420
|
+
"multiChainAsset": null,
|
|
421
|
+
"hasValue": true
|
|
422
|
+
},
|
|
423
|
+
"bifrost-NATIVE-BNC": {
|
|
424
|
+
"originChain": "bifrost",
|
|
425
|
+
"slug": "bifrost-NATIVE-BNC",
|
|
426
|
+
"name": "Bifrost Kusama",
|
|
427
|
+
"symbol": "BNC",
|
|
428
|
+
"decimals": 12,
|
|
429
|
+
"priceId": null,
|
|
430
|
+
"minAmount": "10000000000",
|
|
431
|
+
"assetType": "NATIVE",
|
|
432
|
+
"metadata": null,
|
|
433
|
+
"multiChainAsset": null,
|
|
434
|
+
"hasValue": true
|
|
435
|
+
},
|
|
436
|
+
"bifrost_dot-NATIVE-BNC": {
|
|
437
|
+
"originChain": "bifrost_dot",
|
|
438
|
+
"slug": "bifrost_dot-NATIVE-BNC",
|
|
439
|
+
"name": "Bifrost Polkadot",
|
|
440
|
+
"symbol": "BNC",
|
|
441
|
+
"decimals": 12,
|
|
442
|
+
"priceId": "bifrost-native-coin",
|
|
443
|
+
"minAmount": "10000000000",
|
|
444
|
+
"assetType": "NATIVE",
|
|
445
|
+
"metadata": null,
|
|
446
|
+
"multiChainAsset": null,
|
|
447
|
+
"hasValue": true
|
|
448
|
+
},
|
|
449
|
+
"bifrost_testnet-NATIVE-BNC": {
|
|
450
|
+
"originChain": "bifrost_testnet",
|
|
451
|
+
"slug": "bifrost_testnet-NATIVE-BNC",
|
|
452
|
+
"name": "Bifrost Testnet",
|
|
453
|
+
"symbol": "BNC",
|
|
454
|
+
"decimals": 12,
|
|
455
|
+
"priceId": null,
|
|
456
|
+
"minAmount": "10000000000",
|
|
457
|
+
"assetType": "NATIVE",
|
|
458
|
+
"metadata": null,
|
|
459
|
+
"multiChainAsset": null,
|
|
460
|
+
"hasValue": false
|
|
461
|
+
},
|
|
462
|
+
"calamari-NATIVE-KMA": {
|
|
463
|
+
"originChain": "calamari",
|
|
464
|
+
"slug": "calamari-NATIVE-KMA",
|
|
465
|
+
"name": "Calamari",
|
|
466
|
+
"symbol": "KMA",
|
|
467
|
+
"decimals": 12,
|
|
468
|
+
"priceId": "calamari-network",
|
|
469
|
+
"minAmount": "100000000000",
|
|
470
|
+
"assetType": "NATIVE",
|
|
471
|
+
"metadata": null,
|
|
472
|
+
"multiChainAsset": null,
|
|
473
|
+
"hasValue": true
|
|
474
|
+
},
|
|
475
|
+
"amplitude-NATIVE-AMPE": {
|
|
476
|
+
"originChain": "amplitude",
|
|
477
|
+
"slug": "amplitude-NATIVE-AMPE",
|
|
478
|
+
"name": "Amplitude",
|
|
479
|
+
"symbol": "AMPE",
|
|
480
|
+
"decimals": 12,
|
|
481
|
+
"priceId": null,
|
|
482
|
+
"minAmount": "1000000000",
|
|
483
|
+
"assetType": "NATIVE",
|
|
484
|
+
"metadata": null,
|
|
485
|
+
"multiChainAsset": null,
|
|
486
|
+
"hasValue": true
|
|
487
|
+
},
|
|
488
|
+
"amplitude_test-NATIVE-AMPE": {
|
|
489
|
+
"originChain": "amplitude_test",
|
|
490
|
+
"slug": "amplitude_test-NATIVE-AMPE",
|
|
491
|
+
"name": "Amplitude Testnet",
|
|
492
|
+
"symbol": "AMPE",
|
|
493
|
+
"decimals": 12,
|
|
494
|
+
"priceId": null,
|
|
495
|
+
"minAmount": "1000000000",
|
|
496
|
+
"assetType": "NATIVE",
|
|
497
|
+
"metadata": null,
|
|
498
|
+
"multiChainAsset": null,
|
|
499
|
+
"hasValue": false
|
|
500
|
+
},
|
|
501
|
+
"bobabase-NATIVE-BOBA": {
|
|
502
|
+
"originChain": "bobabase",
|
|
503
|
+
"slug": "bobabase-NATIVE-BOBA",
|
|
504
|
+
"name": "Bobabase",
|
|
505
|
+
"symbol": "BOBA",
|
|
506
|
+
"decimals": 18,
|
|
507
|
+
"priceId": null,
|
|
508
|
+
"minAmount": "0",
|
|
509
|
+
"assetType": "NATIVE",
|
|
510
|
+
"metadata": null,
|
|
511
|
+
"multiChainAsset": null,
|
|
512
|
+
"hasValue": false
|
|
383
513
|
}
|
|
384
514
|
}
|
package/data/ChainInfo.json
CHANGED
|
@@ -459,5 +459,289 @@
|
|
|
459
459
|
"supportSmartContract": ["ERC721", "ERC20"],
|
|
460
460
|
"abiExplorer": "https://api-moonbase.moonscan.io/api?module=contract&action=getabi"
|
|
461
461
|
}
|
|
462
|
+
},
|
|
463
|
+
"moonriver": {
|
|
464
|
+
"slug": "moonriver",
|
|
465
|
+
"name": "Moonriver",
|
|
466
|
+
"isTestnet": false,
|
|
467
|
+
"chainStatus": "ACTIVE",
|
|
468
|
+
"providers": {
|
|
469
|
+
"Moonbeam Foundation": "wss://wss.api.moonriver.moonbeam.network",
|
|
470
|
+
"OnFinality": "wss://moonriver.api.onfinality.io/public-ws",
|
|
471
|
+
"Blast": "wss://moonriver.public.blastapi.io",
|
|
472
|
+
"Dwellir": "wss://moonriver-rpc.dwellir.com",
|
|
473
|
+
"Pinknode": "wss://public-rpc.pinknode.io/moonriver",
|
|
474
|
+
"UnitedBloc": "wss://moonriver.unitedbloc.com:2001"
|
|
475
|
+
},
|
|
476
|
+
"substrateInfo": {
|
|
477
|
+
"paraId": 2023,
|
|
478
|
+
"relaySlug": "kusama",
|
|
479
|
+
"genesisHash": "0x401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b",
|
|
480
|
+
"addressPrefix": 1285,
|
|
481
|
+
"crowdloanUrl": null,
|
|
482
|
+
"chainType": "PARACHAIN",
|
|
483
|
+
"blockExplorer": "https://moonriver.subscan.io/",
|
|
484
|
+
|
|
485
|
+
"symbol": "MOVR",
|
|
486
|
+
"existentialDeposit": "0",
|
|
487
|
+
"decimals": 18,
|
|
488
|
+
|
|
489
|
+
"hasNativeNft": false,
|
|
490
|
+
"supportStaking": true,
|
|
491
|
+
"supportSmartContract": null
|
|
492
|
+
},
|
|
493
|
+
"evmInfo": {
|
|
494
|
+
"evmChainId": 1285,
|
|
495
|
+
"blockExplorer": "https://moonriver.moonscan.io/",
|
|
496
|
+
|
|
497
|
+
"symbol": "MOVR",
|
|
498
|
+
"decimals": 18,
|
|
499
|
+
"existentialDeposit": "0",
|
|
500
|
+
|
|
501
|
+
"supportSmartContract": ["ERC721", "ERC20"],
|
|
502
|
+
"abiExplorer": "https://api-moonriver.moonscan.io/api?module=contract&action=getabi"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"turingStaging": {
|
|
506
|
+
"slug": "turingStaging",
|
|
507
|
+
"name": "Turing Staging",
|
|
508
|
+
"isTestnet": true,
|
|
509
|
+
"chainStatus": "ACTIVE",
|
|
510
|
+
"providers": {
|
|
511
|
+
"Turing": "wss://rpc.turing-staging.oak.tech"
|
|
512
|
+
},
|
|
513
|
+
"substrateInfo": {
|
|
514
|
+
"paraId": 2114,
|
|
515
|
+
"relaySlug": null,
|
|
516
|
+
"genesisHash": "0xd54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b",
|
|
517
|
+
"addressPrefix": 51,
|
|
518
|
+
"crowdloanUrl": null,
|
|
519
|
+
"chainType": "PARACHAIN",
|
|
520
|
+
"blockExplorer": null,
|
|
521
|
+
|
|
522
|
+
"symbol": "TUR",
|
|
523
|
+
"existentialDeposit": "100000000",
|
|
524
|
+
"decimals": 10,
|
|
525
|
+
|
|
526
|
+
"hasNativeNft": false,
|
|
527
|
+
"supportStaking": true,
|
|
528
|
+
"supportSmartContract": null
|
|
529
|
+
},
|
|
530
|
+
"evmInfo": null
|
|
531
|
+
},
|
|
532
|
+
"turing": {
|
|
533
|
+
"slug": "turing",
|
|
534
|
+
"name": "Turing",
|
|
535
|
+
"isTestnet": false,
|
|
536
|
+
"chainStatus": "ACTIVE",
|
|
537
|
+
"providers": {
|
|
538
|
+
"Turing": "wss://rpc.turing.oak.tech",
|
|
539
|
+
"Dwellir": "wss://turing-rpc.dwellir.com"
|
|
540
|
+
},
|
|
541
|
+
"substrateInfo": {
|
|
542
|
+
"paraId": 2114,
|
|
543
|
+
"relaySlug": "kusama",
|
|
544
|
+
"genesisHash": "0x0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d",
|
|
545
|
+
"addressPrefix": 51,
|
|
546
|
+
"crowdloanUrl": null,
|
|
547
|
+
"chainType": "PARACHAIN",
|
|
548
|
+
"blockExplorer": "https://turing.subscan.io/",
|
|
549
|
+
|
|
550
|
+
"symbol": "TUR",
|
|
551
|
+
"existentialDeposit": "100000000",
|
|
552
|
+
"decimals": 10,
|
|
553
|
+
|
|
554
|
+
"hasNativeNft": false,
|
|
555
|
+
"supportStaking": true,
|
|
556
|
+
"supportSmartContract": null
|
|
557
|
+
},
|
|
558
|
+
"evmInfo": null
|
|
559
|
+
},
|
|
560
|
+
"bifrost": {
|
|
561
|
+
"slug": "bifrost",
|
|
562
|
+
"name": "Bifrost Kusama",
|
|
563
|
+
"isTestnet": false,
|
|
564
|
+
"chainStatus": "ACTIVE",
|
|
565
|
+
"providers": {
|
|
566
|
+
"Liebi 0": "wss://bifrost-rpc.liebi.com/ws",
|
|
567
|
+
"Dwellir": "wss://bifrost-rpc.dwellir.com",
|
|
568
|
+
"OnFinality": "wss://bifrost-parachain.api.onfinality.io/public-ws"
|
|
569
|
+
},
|
|
570
|
+
"substrateInfo": {
|
|
571
|
+
"paraId": 2001,
|
|
572
|
+
"relaySlug": "kusama",
|
|
573
|
+
"genesisHash": "0x9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed",
|
|
574
|
+
"addressPrefix": 6,
|
|
575
|
+
"crowdloanUrl": "https://bifrost.app/vcrowdloan",
|
|
576
|
+
"chainType": "PARACHAIN",
|
|
577
|
+
"blockExplorer": "https://bifrost-kusama.subscan.io",
|
|
578
|
+
|
|
579
|
+
"symbol": "BNC",
|
|
580
|
+
"existentialDeposit": "10000000000",
|
|
581
|
+
"decimals": 12,
|
|
582
|
+
|
|
583
|
+
"hasNativeNft": false,
|
|
584
|
+
"supportStaking": true,
|
|
585
|
+
"supportSmartContract": null
|
|
586
|
+
},
|
|
587
|
+
"evmInfo": null
|
|
588
|
+
},
|
|
589
|
+
"bifrost_dot": {
|
|
590
|
+
"slug": "bifrost_dot",
|
|
591
|
+
"name": "Bifrost Polkadot",
|
|
592
|
+
"isTestnet": false,
|
|
593
|
+
"chainStatus": "ACTIVE",
|
|
594
|
+
"providers": {
|
|
595
|
+
"Liebi": "wss://hk.p.bifrost-rpc.liebi.com/ws",
|
|
596
|
+
"OnFinality": "wss://bifrost-polkadot.api.onfinality.io/public-ws"
|
|
597
|
+
},
|
|
598
|
+
"substrateInfo": {
|
|
599
|
+
"paraId": 2030,
|
|
600
|
+
"relaySlug": "polkadot",
|
|
601
|
+
"genesisHash": "0x262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b",
|
|
602
|
+
"addressPrefix": 6,
|
|
603
|
+
"crowdloanUrl": "https://bifrost.app/vcrowdloan",
|
|
604
|
+
"chainType": "PARACHAIN",
|
|
605
|
+
"blockExplorer": "https://bifrost.subscan.io",
|
|
606
|
+
|
|
607
|
+
"symbol": "BNC",
|
|
608
|
+
"existentialDeposit": "10000000000",
|
|
609
|
+
"decimals": 12,
|
|
610
|
+
|
|
611
|
+
"hasNativeNft": false,
|
|
612
|
+
"supportStaking": true,
|
|
613
|
+
"supportSmartContract": null
|
|
614
|
+
},
|
|
615
|
+
"evmInfo": null
|
|
616
|
+
},
|
|
617
|
+
"bifrost_testnet": {
|
|
618
|
+
"slug": "bifrost_testnet",
|
|
619
|
+
"name": "Bifrost Testnet",
|
|
620
|
+
"isTestnet": true,
|
|
621
|
+
"chainStatus": "ACTIVE",
|
|
622
|
+
"providers": {
|
|
623
|
+
"Liebi": "wss://bifrost-rpc.rococo.liebi.com/ws"
|
|
624
|
+
},
|
|
625
|
+
"substrateInfo": {
|
|
626
|
+
"paraId": 2030,
|
|
627
|
+
"relaySlug": "rococo",
|
|
628
|
+
"genesisHash": "0x8b290fa39a8808f29d7309ea99442c95bf964838aef14be5a6449ae48f8a5f1f",
|
|
629
|
+
"addressPrefix": 6,
|
|
630
|
+
"crowdloanUrl": null,
|
|
631
|
+
"chainType": "PARACHAIN",
|
|
632
|
+
"blockExplorer": "https://bifrost-testnet.subscan.io/",
|
|
633
|
+
|
|
634
|
+
"symbol": "BNC",
|
|
635
|
+
"existentialDeposit": "10000000000",
|
|
636
|
+
"decimals": 12,
|
|
637
|
+
|
|
638
|
+
"hasNativeNft": false,
|
|
639
|
+
"supportStaking": true,
|
|
640
|
+
"supportSmartContract": null
|
|
641
|
+
},
|
|
642
|
+
"evmInfo": null
|
|
643
|
+
},
|
|
644
|
+
"calamari": {
|
|
645
|
+
"slug": "calamari",
|
|
646
|
+
"name": "Calamari Parachain",
|
|
647
|
+
"isTestnet": false,
|
|
648
|
+
"chainStatus": "ACTIVE",
|
|
649
|
+
"providers": {
|
|
650
|
+
"Manta Network": "wss://ws.calamari.systems/",
|
|
651
|
+
"OnFinality": "wss://calamari.api.onfinality.io/public-ws"
|
|
652
|
+
},
|
|
653
|
+
"substrateInfo": {
|
|
654
|
+
"paraId": 2084,
|
|
655
|
+
"relaySlug": "kusama",
|
|
656
|
+
"genesisHash": "0x4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1",
|
|
657
|
+
"addressPrefix": 78,
|
|
658
|
+
"crowdloanUrl": "https://calamari.network/",
|
|
659
|
+
"chainType": "PARACHAIN",
|
|
660
|
+
"blockExplorer": "https://calamari.subscan.io/",
|
|
661
|
+
|
|
662
|
+
"symbol": "KMA",
|
|
663
|
+
"existentialDeposit": "100000000000",
|
|
664
|
+
"decimals": 12,
|
|
665
|
+
|
|
666
|
+
"hasNativeNft": false,
|
|
667
|
+
"supportStaking": true,
|
|
668
|
+
"supportSmartContract": null
|
|
669
|
+
},
|
|
670
|
+
"evmInfo": null
|
|
671
|
+
},
|
|
672
|
+
"amplitude": {
|
|
673
|
+
"slug": "amplitude",
|
|
674
|
+
"name": "Amplitude",
|
|
675
|
+
"isTestnet": false,
|
|
676
|
+
"chainStatus": "ACTIVE",
|
|
677
|
+
"providers": {
|
|
678
|
+
"Amplitude": "wss://rpc-amplitude.pendulumchain.tech"
|
|
679
|
+
},
|
|
680
|
+
"substrateInfo": {
|
|
681
|
+
"paraId": 2124,
|
|
682
|
+
"relaySlug": "kusama",
|
|
683
|
+
"genesisHash": "0xcceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf",
|
|
684
|
+
"addressPrefix": 57,
|
|
685
|
+
"crowdloanUrl": null,
|
|
686
|
+
"chainType": "PARACHAIN",
|
|
687
|
+
"blockExplorer": null,
|
|
688
|
+
|
|
689
|
+
"symbol": "AMPE",
|
|
690
|
+
"existentialDeposit": "1000000000",
|
|
691
|
+
"decimals": 12,
|
|
692
|
+
|
|
693
|
+
"hasNativeNft": false,
|
|
694
|
+
"supportStaking": true,
|
|
695
|
+
"supportSmartContract": null
|
|
696
|
+
},
|
|
697
|
+
"evmInfo": null
|
|
698
|
+
},
|
|
699
|
+
"amplitude_test": {
|
|
700
|
+
"slug": "amplitude_test",
|
|
701
|
+
"name": "Amplitude Testnet",
|
|
702
|
+
"isTestnet": true,
|
|
703
|
+
"chainStatus": "ACTIVE",
|
|
704
|
+
"providers": {
|
|
705
|
+
"Amplitude": "wss://rpc-foucoco.pendulumchain.tech"
|
|
706
|
+
},
|
|
707
|
+
"substrateInfo": {
|
|
708
|
+
"paraId": 2124,
|
|
709
|
+
"relaySlug": "rococo",
|
|
710
|
+
"genesisHash": "0x67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13",
|
|
711
|
+
"addressPrefix": 57,
|
|
712
|
+
"crowdloanUrl": null,
|
|
713
|
+
"chainType": "PARACHAIN",
|
|
714
|
+
"blockExplorer": null,
|
|
715
|
+
|
|
716
|
+
"symbol": "AMPE",
|
|
717
|
+
"existentialDeposit": "1000000000",
|
|
718
|
+
"decimals": 12,
|
|
719
|
+
|
|
720
|
+
"hasNativeNft": false,
|
|
721
|
+
"supportStaking": true,
|
|
722
|
+
"supportSmartContract": null
|
|
723
|
+
},
|
|
724
|
+
"evmInfo": null
|
|
725
|
+
},
|
|
726
|
+
"bobabase": {
|
|
727
|
+
"slug": "bobabase",
|
|
728
|
+
"name": "Bobabase Testnet",
|
|
729
|
+
"isTestnet": true,
|
|
730
|
+
"chainStatus": "ACTIVE",
|
|
731
|
+
"providers": {
|
|
732
|
+
"RPC": "https://bobabase.boba.network",
|
|
733
|
+
"Replica RPC": "https://replica.bobabase.boba.network"
|
|
734
|
+
},
|
|
735
|
+
"substrateInfo": null,
|
|
736
|
+
"evmInfo": {
|
|
737
|
+
"evmChainId": 1297,
|
|
738
|
+
"blockExplorer": null,
|
|
739
|
+
|
|
740
|
+
"symbol": "BOBA",
|
|
741
|
+
"decimals": 18,
|
|
742
|
+
"existentialDeposit": "0",
|
|
743
|
+
"supportSmartContract": ["ERC20", "ERC721"],
|
|
744
|
+
"abiExplorer": "https://blockexplorer.bobabase.boba.network"
|
|
745
|
+
}
|
|
462
746
|
}
|
|
463
747
|
}
|
|
@@ -61,5 +61,12 @@
|
|
|
61
61
|
"name": "Moonbase Dev",
|
|
62
62
|
"symbol": "DEV",
|
|
63
63
|
"priceId": null
|
|
64
|
+
},
|
|
65
|
+
"MOVR-Moonriver": {
|
|
66
|
+
"slug": "MOVR-Moonriver",
|
|
67
|
+
"originChainAsset": "moonriver-NATIVE-MOVR",
|
|
68
|
+
"name": "Moonriver",
|
|
69
|
+
"symbol": "MOVR",
|
|
70
|
+
"priceId": "moonriver"
|
|
64
71
|
}
|
|
65
72
|
}
|
package/package.json
CHANGED
package/packageInfo.js
CHANGED
|
@@ -7,5 +7,5 @@ export const packageInfo = {
|
|
|
7
7
|
name: '@subwallet/chain-list',
|
|
8
8
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
9
9
|
type: 'esm',
|
|
10
|
-
version: '0.0.
|
|
10
|
+
version: '0.0.11'
|
|
11
11
|
};
|
package/types.d.ts
CHANGED
|
@@ -32,7 +32,6 @@ export declare enum _SubstrateChainType {
|
|
|
32
32
|
export interface _ChainInfo {
|
|
33
33
|
slug: string;
|
|
34
34
|
name: string;
|
|
35
|
-
logo: string | null;
|
|
36
35
|
chainStatus: _ChainStatus;
|
|
37
36
|
isTestnet: boolean;
|
|
38
37
|
providers: Record<string, string>;
|
|
@@ -42,7 +41,6 @@ export interface _ChainInfo {
|
|
|
42
41
|
export interface _ChainAsset {
|
|
43
42
|
originChain: string;
|
|
44
43
|
slug: string;
|
|
45
|
-
logo: string | null;
|
|
46
44
|
name: string;
|
|
47
45
|
symbol: string;
|
|
48
46
|
decimals: number | null;
|
|
@@ -83,7 +81,6 @@ export interface _MultiChainAsset {
|
|
|
83
81
|
name: string;
|
|
84
82
|
symbol: string;
|
|
85
83
|
priceId: string;
|
|
86
|
-
logo: string | null;
|
|
87
84
|
}
|
|
88
85
|
export declare enum _AssetRefPath {
|
|
89
86
|
XCM = "XCM"
|