@swapkit/tokens 1.0.0-rc.0 → 1.0.0-rc.2
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/index.cjs +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.es.js +2 -1
- package/package.json +3 -3
- package/src/tokenLists/Maya.ts +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -21361,6 +21361,10 @@ export declare const MayaList: {
|
|
|
21361
21361
|
readonly chain: "KUJI";
|
|
21362
21362
|
readonly identifier: "KUJI.KUJI";
|
|
21363
21363
|
readonly decimals: 6;
|
|
21364
|
+
}, {
|
|
21365
|
+
readonly chain: "KUJI";
|
|
21366
|
+
readonly identifier: "KUJI.USK";
|
|
21367
|
+
readonly decimals: 6;
|
|
21364
21368
|
}, {
|
|
21365
21369
|
readonly chain: "THOR";
|
|
21366
21370
|
readonly identifier: "THOR.RUNE";
|
|
@@ -21374,7 +21378,7 @@ export declare const MayaList: {
|
|
|
21374
21378
|
readonly identifier: "ETH.USDT-0XDAC17F958D2EE523A2206206994597C13D831EC7";
|
|
21375
21379
|
readonly decimals: 6;
|
|
21376
21380
|
}];
|
|
21377
|
-
readonly count:
|
|
21381
|
+
readonly count: 8;
|
|
21378
21382
|
readonly logo: "https://static.thorswap.finance/logo.png";
|
|
21379
21383
|
};
|
|
21380
21384
|
|
package/dist/index.es.js
CHANGED
|
@@ -25854,6 +25854,7 @@ const e = {
|
|
|
25854
25854
|
{ chain: "DASH", identifier: "DASH.DASH", decimals: 8 },
|
|
25855
25855
|
{ chain: "ETH", identifier: "ETH.ETH", decimals: 18 },
|
|
25856
25856
|
{ chain: "KUJI", identifier: "KUJI.KUJI", decimals: 6 },
|
|
25857
|
+
{ chain: "KUJI", identifier: "KUJI.USK", decimals: 6 },
|
|
25857
25858
|
{ chain: "THOR", identifier: "THOR.RUNE", decimals: 8 },
|
|
25858
25859
|
{
|
|
25859
25860
|
chain: "ETH",
|
|
@@ -25866,7 +25867,7 @@ const e = {
|
|
|
25866
25867
|
decimals: 6
|
|
25867
25868
|
}
|
|
25868
25869
|
],
|
|
25869
|
-
count:
|
|
25870
|
+
count: 8,
|
|
25870
25871
|
logo: "https://static.thorswap.finance/logo.png"
|
|
25871
25872
|
}, i = {
|
|
25872
25873
|
name: "native-l1",
|
package/package.json
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"vite": "4.4.9",
|
|
9
9
|
"vitest": "0.34.4",
|
|
10
10
|
"@internal/config": "0.0.0-internal.0",
|
|
11
|
-
"@swapkit/api": "1.0.0-rc.
|
|
12
|
-
"@swapkit/types": "1.0.0-rc.
|
|
11
|
+
"@swapkit/api": "1.0.0-rc.2",
|
|
12
|
+
"@swapkit/types": "1.0.0-rc.2"
|
|
13
13
|
},
|
|
14
14
|
"eslintConfig": {
|
|
15
15
|
"extends": "../../../internal/eslint-config"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"repository": "https://github.com/thorswap/SwapKit.git",
|
|
38
38
|
"type": "module",
|
|
39
39
|
"types": "./dist/index.d.ts",
|
|
40
|
-
"version": "1.0.0-rc.
|
|
40
|
+
"version": "1.0.0-rc.2",
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "vite build",
|
|
43
43
|
"generate-tokens": "node ./scripts/fetchTokenLists.js",
|
package/src/tokenLists/Maya.ts
CHANGED
|
@@ -8,6 +8,7 @@ export const list = {
|
|
|
8
8
|
{ chain: 'DASH', identifier: 'DASH.DASH', decimals: 8 },
|
|
9
9
|
{ chain: 'ETH', identifier: 'ETH.ETH', decimals: 18 },
|
|
10
10
|
{ chain: 'KUJI', identifier: 'KUJI.KUJI', decimals: 6 },
|
|
11
|
+
{ chain: 'KUJI', identifier: 'KUJI.USK', decimals: 6 },
|
|
11
12
|
{ chain: 'THOR', identifier: 'THOR.RUNE', decimals: 8 },
|
|
12
13
|
{
|
|
13
14
|
chain: 'ETH',
|
|
@@ -20,6 +21,6 @@ export const list = {
|
|
|
20
21
|
decimals: 6,
|
|
21
22
|
},
|
|
22
23
|
],
|
|
23
|
-
count:
|
|
24
|
+
count: 8,
|
|
24
25
|
logo: 'https://static.thorswap.finance/logo.png',
|
|
25
26
|
} as const;
|