@subwallet/chain-list 0.2.53-beta.1 → 0.2.54-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.
@@ -798,6 +798,13 @@
798
798
  srcChain: "astar",
799
799
  destChain: "statemint",
800
800
  path: "XCM"
801
+ },
802
+ "rococo-NATIVE-ROC___hydradx_rococo-NATIVE-HDX": {
803
+ srcAsset: "rococo-NATIVE-ROC",
804
+ destAsset: "hydradx_rococo-NATIVE-HDX",
805
+ srcChain: "rococo",
806
+ destChain: "hydradx_rococo",
807
+ path: "XCM"
801
808
  },
802
809
  "bifrost_dot-LOCAL-USDT___statemint-LOCAL-USDt": {
803
810
  srcAsset: "bifrost_dot-LOCAL-USDT",
@@ -1154,7 +1161,10 @@
1154
1161
  destAsset: "hydradx_rococo-LOCAL-DOT",
1155
1162
  srcChain: "hydradx_rococo",
1156
1163
  destChain: "hydradx_rococo",
1157
- path: "SWAP"
1164
+ path: "SWAP",
1165
+ metadata: {
1166
+ alternativeAsset: "rococo-NATIVE-ROC"
1167
+ }
1158
1168
  },
1159
1169
  "hydradx_rococo-NATIVE-HDX___hydradx_rococo-LOCAL-USDT": {
1160
1170
  srcAsset: "hydradx_rococo-NATIVE-HDX",
@@ -223,6 +223,13 @@
223
223
  "destChain": "statemint",
224
224
  "path": "XCM"
225
225
  },
226
+ "rococo-NATIVE-ROC___hydradx_rococo-NATIVE-HDX": {
227
+ "srcAsset": "rococo-NATIVE-ROC",
228
+ "destAsset": "hydradx_rococo-NATIVE-HDX",
229
+ "srcChain": "rococo",
230
+ "destChain": "hydradx_rococo",
231
+ "path": "XCM"
232
+ },
226
233
  "bifrost_dot-LOCAL-USDT___statemint-LOCAL-USDt": {
227
234
  "srcAsset": "bifrost_dot-LOCAL-USDT",
228
235
  "destAsset": "statemint-LOCAL-USDt",
@@ -578,7 +585,10 @@
578
585
  "destAsset": "hydradx_rococo-LOCAL-DOT",
579
586
  "srcChain": "hydradx_rococo",
580
587
  "destChain": "hydradx_rococo",
581
- "path": "SWAP"
588
+ "path": "SWAP",
589
+ "metadata": {
590
+ "alternativeAsset": "rococo-NATIVE-ROC"
591
+ }
582
592
  },
583
593
  "hydradx_rococo-NATIVE-HDX___hydradx_rococo-LOCAL-USDT": {
584
594
  "srcAsset": "hydradx_rococo-NATIVE-HDX",
@@ -13,6 +13,6 @@ const packageInfo = {
13
13
  name: '@subwallet/chain-list',
14
14
  path: typeof __dirname === 'string' ? __dirname : 'auto',
15
15
  type: 'cjs',
16
- version: '0.2.53-beta.1'
16
+ version: '0.2.54-beta.0'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
@@ -223,6 +223,13 @@
223
223
  "destChain": "statemint",
224
224
  "path": "XCM"
225
225
  },
226
+ "rococo-NATIVE-ROC___hydradx_rococo-NATIVE-HDX": {
227
+ "srcAsset": "rococo-NATIVE-ROC",
228
+ "destAsset": "hydradx_rococo-NATIVE-HDX",
229
+ "srcChain": "rococo",
230
+ "destChain": "hydradx_rococo",
231
+ "path": "XCM"
232
+ },
226
233
  "bifrost_dot-LOCAL-USDT___statemint-LOCAL-USDt": {
227
234
  "srcAsset": "bifrost_dot-LOCAL-USDT",
228
235
  "destAsset": "statemint-LOCAL-USDt",
@@ -578,7 +585,10 @@
578
585
  "destAsset": "hydradx_rococo-LOCAL-DOT",
579
586
  "srcChain": "hydradx_rococo",
580
587
  "destChain": "hydradx_rococo",
581
- "path": "SWAP"
588
+ "path": "SWAP",
589
+ "metadata": {
590
+ "alternativeAsset": "rococo-NATIVE-ROC"
591
+ }
582
592
  },
583
593
  "hydradx_rococo-NATIVE-HDX___hydradx_rococo-LOCAL-USDT": {
584
594
  "srcAsset": "hydradx_rococo-NATIVE-HDX",
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "./cjs/detectPackage.js"
21
21
  ],
22
22
  "type": "module",
23
- "version": "0.2.53-beta.1",
23
+ "version": "0.2.54-beta.0",
24
24
  "main": "./cjs/index.js",
25
25
  "module": "./index.js",
26
26
  "types": "./index.d.ts",
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.53-beta.1'
10
+ version: '0.2.54-beta.0'
11
11
  };
package/types.d.ts CHANGED
@@ -120,5 +120,6 @@ export interface _AssetRef {
120
120
  destAsset: string;
121
121
  srcChain: string;
122
122
  destChain: string;
123
+ metadata?: Record<string, any>;
123
124
  path: _AssetRefPath;
124
125
  }