@subwallet/chain-list 0.2.13-beta.1 → 0.2.14-beta.0
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 +45 -3
- package/cjs/data/AssetLogoMap.json +1 -0
- package/cjs/data/ChainAsset.json +14 -0
- package/cjs/data/ChainInfo.json +24 -1
- package/cjs/data/ChainLogoMap.json +2 -1
- package/cjs/packageInfo.js +1 -1
- package/data/AssetLogoMap.json +1 -0
- package/data/ChainAsset.json +14 -0
- package/data/ChainInfo.json +24 -1
- package/data/ChainLogoMap.json +2 -1
- package/logo/unicorn-ultra.png +0 -0
- package/package.json +2 -1
- package/packageInfo.js +1 -1
|
@@ -288,6 +288,7 @@
|
|
|
288
288
|
var avax = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png";
|
|
289
289
|
var xcastr = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/astar-network.png";
|
|
290
290
|
var sdot = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/polkadot.png";
|
|
291
|
+
var u2u = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png";
|
|
291
292
|
var cp = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/cp.png";
|
|
292
293
|
var zpf = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/zpf.png";
|
|
293
294
|
const _AssetLogoMap = {
|
|
@@ -581,6 +582,7 @@
|
|
|
581
582
|
avax: avax,
|
|
582
583
|
xcastr: xcastr,
|
|
583
584
|
sdot: sdot,
|
|
585
|
+
u2u: u2u,
|
|
584
586
|
cp: cp,
|
|
585
587
|
zpf: zpf
|
|
586
588
|
};
|
|
@@ -7837,6 +7839,20 @@
|
|
|
7837
7839
|
multiChainAsset: "DOT-Polkadot",
|
|
7838
7840
|
hasValue: true,
|
|
7839
7841
|
icon: "polkadot.png"
|
|
7842
|
+
},
|
|
7843
|
+
"u2u_test-NATIVE-U2U": {
|
|
7844
|
+
originChain: "u2u_test",
|
|
7845
|
+
slug: "u2u_test-NATIVE-U2U",
|
|
7846
|
+
name: "U2U",
|
|
7847
|
+
symbol: "U2U",
|
|
7848
|
+
decimals: 18,
|
|
7849
|
+
priceId: null,
|
|
7850
|
+
minAmount: "0",
|
|
7851
|
+
assetType: "NATIVE",
|
|
7852
|
+
metadata: null,
|
|
7853
|
+
multiChainAsset: null,
|
|
7854
|
+
hasValue: false,
|
|
7855
|
+
icon: "unicorn-ultra.png"
|
|
7840
7856
|
}
|
|
7841
7857
|
};
|
|
7842
7858
|
|
|
@@ -12140,7 +12156,7 @@
|
|
|
12140
12156
|
substrateInfo: null,
|
|
12141
12157
|
evmInfo: {
|
|
12142
12158
|
evmChainId: 43114,
|
|
12143
|
-
blockExplorer: "https://
|
|
12159
|
+
blockExplorer: "https://subnets.avax.network/c-chain/",
|
|
12144
12160
|
symbol: "AVAX",
|
|
12145
12161
|
decimals: 18,
|
|
12146
12162
|
existentialDeposit: "0",
|
|
@@ -12178,6 +12194,29 @@
|
|
|
12178
12194
|
evmInfo: null,
|
|
12179
12195
|
icon: "crust.png"
|
|
12180
12196
|
};
|
|
12197
|
+
var u2u_test$1 = {
|
|
12198
|
+
slug: "u2u_test",
|
|
12199
|
+
name: "Unicorn Ultra Nebulas Testnet",
|
|
12200
|
+
isTestnet: true,
|
|
12201
|
+
chainStatus: "ACTIVE",
|
|
12202
|
+
providers: {
|
|
12203
|
+
U2U: "https://rpc-nebulas-testnet.uniultra.xyz/"
|
|
12204
|
+
},
|
|
12205
|
+
substrateInfo: null,
|
|
12206
|
+
evmInfo: {
|
|
12207
|
+
evmChainId: 2484,
|
|
12208
|
+
blockExplorer: "https://testnet.u2uscan.xyz/",
|
|
12209
|
+
symbol: "U2U",
|
|
12210
|
+
decimals: 18,
|
|
12211
|
+
existentialDeposit: "0",
|
|
12212
|
+
supportSmartContract: [
|
|
12213
|
+
"ERC20",
|
|
12214
|
+
"ERC721"
|
|
12215
|
+
],
|
|
12216
|
+
abiExplorer: "https://testnet.u2uscan.xyz/"
|
|
12217
|
+
},
|
|
12218
|
+
icon: "unicorn-ultra.png"
|
|
12219
|
+
};
|
|
12181
12220
|
const _ChainInfoMap = {
|
|
12182
12221
|
polkadot: polkadot$1,
|
|
12183
12222
|
kusama: kusama$1,
|
|
@@ -12367,7 +12406,8 @@
|
|
|
12367
12406
|
jur_network: jur_network$1,
|
|
12368
12407
|
base_mainnet: base_mainnet$1,
|
|
12369
12408
|
avalanche_c: avalanche_c$1,
|
|
12370
|
-
crust_mainnet: crust_mainnet$1
|
|
12409
|
+
crust_mainnet: crust_mainnet$1,
|
|
12410
|
+
u2u_test: u2u_test$1
|
|
12371
12411
|
};
|
|
12372
12412
|
|
|
12373
12413
|
var polkadot = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/polkadot.png";
|
|
@@ -12534,6 +12574,7 @@
|
|
|
12534
12574
|
var base_mainnet = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/base-mainnet.png";
|
|
12535
12575
|
var avalanche_c = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png";
|
|
12536
12576
|
var crust_mainnet = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/crust.png";
|
|
12577
|
+
var u2u_test = "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png";
|
|
12537
12578
|
const _ChainLogoMap = {
|
|
12538
12579
|
"default": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/default.png",
|
|
12539
12580
|
polkadot: polkadot,
|
|
@@ -12700,7 +12741,8 @@
|
|
|
12700
12741
|
jur_network: jur_network,
|
|
12701
12742
|
base_mainnet: base_mainnet,
|
|
12702
12743
|
avalanche_c: avalanche_c,
|
|
12703
|
-
crust_mainnet: crust_mainnet
|
|
12744
|
+
crust_mainnet: crust_mainnet,
|
|
12745
|
+
u2u_test: u2u_test
|
|
12704
12746
|
};
|
|
12705
12747
|
|
|
12706
12748
|
const _MultiChainAssetMap = {
|
|
@@ -289,6 +289,7 @@
|
|
|
289
289
|
"avax": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png",
|
|
290
290
|
"xcastr": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/astar-network.png",
|
|
291
291
|
"sdot": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/polkadot.png",
|
|
292
|
+
"u2u": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png",
|
|
292
293
|
"cp": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/cp.png",
|
|
293
294
|
"zpf": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/zpf.png"
|
|
294
295
|
}
|
package/cjs/data/ChainAsset.json
CHANGED
|
@@ -6990,5 +6990,19 @@
|
|
|
6990
6990
|
"multiChainAsset": "DOT-Polkadot",
|
|
6991
6991
|
"hasValue": true,
|
|
6992
6992
|
"icon": "polkadot.png"
|
|
6993
|
+
},
|
|
6994
|
+
"u2u_test-NATIVE-U2U": {
|
|
6995
|
+
"originChain": "u2u_test",
|
|
6996
|
+
"slug": "u2u_test-NATIVE-U2U",
|
|
6997
|
+
"name": "U2U",
|
|
6998
|
+
"symbol": "U2U",
|
|
6999
|
+
"decimals": 18,
|
|
7000
|
+
"priceId": null,
|
|
7001
|
+
"minAmount": "0",
|
|
7002
|
+
"assetType": "NATIVE",
|
|
7003
|
+
"metadata": null,
|
|
7004
|
+
"multiChainAsset": null,
|
|
7005
|
+
"hasValue": false,
|
|
7006
|
+
"icon": "unicorn-ultra.png"
|
|
6993
7007
|
}
|
|
6994
7008
|
}
|
package/cjs/data/ChainInfo.json
CHANGED
|
@@ -4323,7 +4323,7 @@
|
|
|
4323
4323
|
"substrateInfo": null,
|
|
4324
4324
|
"evmInfo": {
|
|
4325
4325
|
"evmChainId": 43114,
|
|
4326
|
-
"blockExplorer": "https://
|
|
4326
|
+
"blockExplorer": "https://subnets.avax.network/c-chain/",
|
|
4327
4327
|
"symbol": "AVAX",
|
|
4328
4328
|
"decimals": 18,
|
|
4329
4329
|
"existentialDeposit": "0",
|
|
@@ -4360,5 +4360,28 @@
|
|
|
4360
4360
|
},
|
|
4361
4361
|
"evmInfo": null,
|
|
4362
4362
|
"icon": "crust.png"
|
|
4363
|
+
},
|
|
4364
|
+
"u2u_test": {
|
|
4365
|
+
"slug": "u2u_test",
|
|
4366
|
+
"name": "Unicorn Ultra Nebulas Testnet",
|
|
4367
|
+
"isTestnet": true,
|
|
4368
|
+
"chainStatus": "ACTIVE",
|
|
4369
|
+
"providers": {
|
|
4370
|
+
"U2U": "https://rpc-nebulas-testnet.uniultra.xyz/"
|
|
4371
|
+
},
|
|
4372
|
+
"substrateInfo": null,
|
|
4373
|
+
"evmInfo": {
|
|
4374
|
+
"evmChainId": 2484,
|
|
4375
|
+
"blockExplorer": "https://testnet.u2uscan.xyz/",
|
|
4376
|
+
"symbol": "U2U",
|
|
4377
|
+
"decimals": 18,
|
|
4378
|
+
"existentialDeposit": "0",
|
|
4379
|
+
"supportSmartContract": [
|
|
4380
|
+
"ERC20",
|
|
4381
|
+
"ERC721"
|
|
4382
|
+
],
|
|
4383
|
+
"abiExplorer": "https://testnet.u2uscan.xyz/"
|
|
4384
|
+
},
|
|
4385
|
+
"icon": "unicorn-ultra.png"
|
|
4363
4386
|
}
|
|
4364
4387
|
}
|
|
@@ -164,5 +164,6 @@
|
|
|
164
164
|
"jur_network": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/jur-network.png",
|
|
165
165
|
"base_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/base-mainnet.png",
|
|
166
166
|
"avalanche_c": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png",
|
|
167
|
-
"crust_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/crust.png"
|
|
167
|
+
"crust_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/crust.png",
|
|
168
|
+
"u2u_test": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png"
|
|
168
169
|
}
|
package/cjs/packageInfo.js
CHANGED
package/data/AssetLogoMap.json
CHANGED
|
@@ -289,6 +289,7 @@
|
|
|
289
289
|
"avax": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png",
|
|
290
290
|
"xcastr": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/astar-network.png",
|
|
291
291
|
"sdot": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/polkadot.png",
|
|
292
|
+
"u2u": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png",
|
|
292
293
|
"cp": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/cp.png",
|
|
293
294
|
"zpf": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/zpf.png"
|
|
294
295
|
}
|
package/data/ChainAsset.json
CHANGED
|
@@ -6990,5 +6990,19 @@
|
|
|
6990
6990
|
"multiChainAsset": "DOT-Polkadot",
|
|
6991
6991
|
"hasValue": true,
|
|
6992
6992
|
"icon": "polkadot.png"
|
|
6993
|
+
},
|
|
6994
|
+
"u2u_test-NATIVE-U2U": {
|
|
6995
|
+
"originChain": "u2u_test",
|
|
6996
|
+
"slug": "u2u_test-NATIVE-U2U",
|
|
6997
|
+
"name": "U2U",
|
|
6998
|
+
"symbol": "U2U",
|
|
6999
|
+
"decimals": 18,
|
|
7000
|
+
"priceId": null,
|
|
7001
|
+
"minAmount": "0",
|
|
7002
|
+
"assetType": "NATIVE",
|
|
7003
|
+
"metadata": null,
|
|
7004
|
+
"multiChainAsset": null,
|
|
7005
|
+
"hasValue": false,
|
|
7006
|
+
"icon": "unicorn-ultra.png"
|
|
6993
7007
|
}
|
|
6994
7008
|
}
|
package/data/ChainInfo.json
CHANGED
|
@@ -4323,7 +4323,7 @@
|
|
|
4323
4323
|
"substrateInfo": null,
|
|
4324
4324
|
"evmInfo": {
|
|
4325
4325
|
"evmChainId": 43114,
|
|
4326
|
-
"blockExplorer": "https://
|
|
4326
|
+
"blockExplorer": "https://subnets.avax.network/c-chain/",
|
|
4327
4327
|
"symbol": "AVAX",
|
|
4328
4328
|
"decimals": 18,
|
|
4329
4329
|
"existentialDeposit": "0",
|
|
@@ -4360,5 +4360,28 @@
|
|
|
4360
4360
|
},
|
|
4361
4361
|
"evmInfo": null,
|
|
4362
4362
|
"icon": "crust.png"
|
|
4363
|
+
},
|
|
4364
|
+
"u2u_test": {
|
|
4365
|
+
"slug": "u2u_test",
|
|
4366
|
+
"name": "Unicorn Ultra Nebulas Testnet",
|
|
4367
|
+
"isTestnet": true,
|
|
4368
|
+
"chainStatus": "ACTIVE",
|
|
4369
|
+
"providers": {
|
|
4370
|
+
"U2U": "https://rpc-nebulas-testnet.uniultra.xyz/"
|
|
4371
|
+
},
|
|
4372
|
+
"substrateInfo": null,
|
|
4373
|
+
"evmInfo": {
|
|
4374
|
+
"evmChainId": 2484,
|
|
4375
|
+
"blockExplorer": "https://testnet.u2uscan.xyz/",
|
|
4376
|
+
"symbol": "U2U",
|
|
4377
|
+
"decimals": 18,
|
|
4378
|
+
"existentialDeposit": "0",
|
|
4379
|
+
"supportSmartContract": [
|
|
4380
|
+
"ERC20",
|
|
4381
|
+
"ERC721"
|
|
4382
|
+
],
|
|
4383
|
+
"abiExplorer": "https://testnet.u2uscan.xyz/"
|
|
4384
|
+
},
|
|
4385
|
+
"icon": "unicorn-ultra.png"
|
|
4363
4386
|
}
|
|
4364
4387
|
}
|
package/data/ChainLogoMap.json
CHANGED
|
@@ -164,5 +164,6 @@
|
|
|
164
164
|
"jur_network": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/jur-network.png",
|
|
165
165
|
"base_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/base-mainnet.png",
|
|
166
166
|
"avalanche_c": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/avalanche.png",
|
|
167
|
-
"crust_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/crust.png"
|
|
167
|
+
"crust_mainnet": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/crust.png",
|
|
168
|
+
"u2u_test": "https://raw.githubusercontent.com/Koniverse/SubWallet-Chain/dev/packages/chain-list/src/logo/unicorn-ultra.png"
|
|
168
169
|
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./cjs/detectPackage.js"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
-
"version": "0.2.
|
|
23
|
+
"version": "0.2.14-beta.0",
|
|
24
24
|
"main": "./cjs/index.js",
|
|
25
25
|
"module": "./index.js",
|
|
26
26
|
"types": "./index.d.ts",
|
|
@@ -691,6 +691,7 @@
|
|
|
691
691
|
"./logo/turing-network.png": "./logo/turing-network.png",
|
|
692
692
|
"./logo/ukraine.png": "./logo/ukraine.png",
|
|
693
693
|
"./logo/uniarts.png": "./logo/uniarts.png",
|
|
694
|
+
"./logo/unicorn-ultra.png": "./logo/unicorn-ultra.png",
|
|
694
695
|
"./logo/unilend.png": "./logo/unilend.png",
|
|
695
696
|
"./logo/unique-network.png": "./logo/unique-network.png",
|
|
696
697
|
"./logo/uniswap.png": "./logo/uniswap.png",
|
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.2.
|
|
10
|
+
version: '0.2.14-beta.0'
|
|
11
11
|
};
|