@subwallet/chain-list 0.2.66-beta.3 → 0.2.66-beta.4
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 +2 -0
- package/cjs/data/ChainAsset.json +2 -0
- package/cjs/packageInfo.js +1 -1
- package/data/ChainAsset.json +2 -0
- package/package.json +1 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +14 -1
|
@@ -12502,6 +12502,7 @@
|
|
|
12502
12502
|
minAmount: "1000000000",
|
|
12503
12503
|
assetType: "LOCAL",
|
|
12504
12504
|
metadata: {
|
|
12505
|
+
isBridged: true,
|
|
12505
12506
|
multilocation: {
|
|
12506
12507
|
parents: 2,
|
|
12507
12508
|
interior: {
|
|
@@ -12525,6 +12526,7 @@
|
|
|
12525
12526
|
minAmount: "10000000",
|
|
12526
12527
|
assetType: "LOCAL",
|
|
12527
12528
|
metadata: {
|
|
12529
|
+
isBridged: true,
|
|
12528
12530
|
multilocation: {
|
|
12529
12531
|
parents: 2,
|
|
12530
12532
|
interior: {
|
package/cjs/data/ChainAsset.json
CHANGED
|
@@ -10175,6 +10175,7 @@
|
|
|
10175
10175
|
"minAmount": "1000000000",
|
|
10176
10176
|
"assetType": "LOCAL",
|
|
10177
10177
|
"metadata": {
|
|
10178
|
+
"isBridged": true,
|
|
10178
10179
|
"multilocation": {
|
|
10179
10180
|
"parents": 2,
|
|
10180
10181
|
"interior": {
|
|
@@ -10198,6 +10199,7 @@
|
|
|
10198
10199
|
"minAmount": "10000000",
|
|
10199
10200
|
"assetType": "LOCAL",
|
|
10200
10201
|
"metadata": {
|
|
10202
|
+
"isBridged": true,
|
|
10201
10203
|
"multilocation": {
|
|
10202
10204
|
"parents": 2,
|
|
10203
10205
|
"interior": {
|
package/cjs/packageInfo.js
CHANGED
package/data/ChainAsset.json
CHANGED
|
@@ -10175,6 +10175,7 @@
|
|
|
10175
10175
|
"minAmount": "1000000000",
|
|
10176
10176
|
"assetType": "LOCAL",
|
|
10177
10177
|
"metadata": {
|
|
10178
|
+
"isBridged": true,
|
|
10178
10179
|
"multilocation": {
|
|
10179
10180
|
"parents": 2,
|
|
10180
10181
|
"interior": {
|
|
@@ -10198,6 +10199,7 @@
|
|
|
10198
10199
|
"minAmount": "10000000",
|
|
10199
10200
|
"assetType": "LOCAL",
|
|
10200
10201
|
"metadata": {
|
|
10202
|
+
"isBridged": true,
|
|
10201
10203
|
"multilocation": {
|
|
10202
10204
|
"parents": 2,
|
|
10203
10205
|
"interior": {
|
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.2.66-beta.
|
|
10
|
+
version: '0.2.66-beta.4'
|
|
11
11
|
};
|
package/types.d.ts
CHANGED
|
@@ -54,7 +54,20 @@ export interface _ChainAsset {
|
|
|
54
54
|
priceId: string | null;
|
|
55
55
|
minAmount: string | null;
|
|
56
56
|
assetType: _AssetType;
|
|
57
|
-
metadata:
|
|
57
|
+
metadata: {
|
|
58
|
+
contractAddress?: string;
|
|
59
|
+
multilocation?: unknown;
|
|
60
|
+
onChainInfo?: unknown;
|
|
61
|
+
assetId?: string;
|
|
62
|
+
isBridged?: boolean;
|
|
63
|
+
assetType?: string;
|
|
64
|
+
canPayTxFee?: boolean;
|
|
65
|
+
runeId?: string;
|
|
66
|
+
alternativeSwapAsset?: string;
|
|
67
|
+
disableEvmTransfer?: boolean;
|
|
68
|
+
isDisableTransfer?: boolean;
|
|
69
|
+
autoEnable?: boolean;
|
|
70
|
+
};
|
|
58
71
|
multiChainAsset: string | null;
|
|
59
72
|
hasValue: boolean;
|
|
60
73
|
icon: string;
|