@swapkit/tokens 2.0.0 → 2.2.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/dist/index.js +2 -2
- package/dist/index.js.map +17 -17
- package/package.json +1 -1
- package/src/helpers.ts +8 -4
- package/src/index.ts +2 -50
- package/src/lists.ts +48 -0
- package/src/tokenLists/camelot_v3.ts +52 -2
- package/src/tokenLists/caviar_v1.ts +242 -2
- package/src/tokenLists/chainflip.ts +1 -1
- package/src/tokenLists/jupiter.ts +8096 -105
- package/src/tokenLists/kado.ts +354 -112
- package/src/tokenLists/mayachain.ts +12 -2
- package/src/tokenLists/oneinch.ts +132 -2
- package/src/tokenLists/pangolin_v1.ts +2 -32
- package/src/tokenLists/sushiswap_v2.ts +16 -36
- package/src/tokenLists/thorchain.ts +112 -12
- package/src/tokenLists/traderjoe_v2.ts +168 -248
- package/src/tokenLists/uniswap_v2.ts +182 -162
- package/src/tokenLists/uniswap_v3.ts +149 -149
- package/src/types.ts +30 -0
package/package.json
CHANGED
package/src/helpers.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import { tokenLists } from "./
|
|
1
|
+
import { tokenLists as defaultTokenLists } from "./lists";
|
|
2
|
+
import type { TokenList } from "./types";
|
|
2
3
|
|
|
3
|
-
export function getTokenIcon(
|
|
4
|
+
export function getTokenIcon(
|
|
5
|
+
identifier: string,
|
|
6
|
+
lists: Record<string, TokenList> = defaultTokenLists,
|
|
7
|
+
): string | undefined {
|
|
4
8
|
// Search through all lists for a matching token
|
|
5
|
-
for (const list of Object.values(
|
|
6
|
-
const token = list.tokens.find((
|
|
9
|
+
for (const list of Object.values(lists)) {
|
|
10
|
+
const token = list.tokens.find((token) => token.identifier === identifier);
|
|
7
11
|
if (token?.logoURI) {
|
|
8
12
|
return token.logoURI;
|
|
9
13
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,51 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { list as ChainflipList } from "./tokenLists/chainflip";
|
|
3
|
-
import { list as JupiterList } from "./tokenLists/jupiter";
|
|
4
|
-
import { list as KadoList } from "./tokenLists/kado";
|
|
5
|
-
import { list as MayaList } from "./tokenLists/mayachain";
|
|
6
|
-
// export { list as OciswapV1List } from "./tokenLists/ociswap_v1";
|
|
7
|
-
import { list as OneInchList } from "./tokenLists/oneinch";
|
|
8
|
-
import { list as OpenOceanV2List } from "./tokenLists/openocean_v2";
|
|
9
|
-
import { list as PancakeswapList } from "./tokenLists/pancakeswap";
|
|
10
|
-
import { list as PangolinList } from "./tokenLists/pangolin_v1";
|
|
11
|
-
import { list as SushiswapList } from "./tokenLists/sushiswap_v2";
|
|
12
|
-
import { list as ThorchainList } from "./tokenLists/thorchain";
|
|
13
|
-
import { list as TraderjoeV2List } from "./tokenLists/traderjoe_v2";
|
|
14
|
-
import { list as UniswapV2List } from "./tokenLists/uniswap_v2";
|
|
15
|
-
import { list as UniswapV3List } from "./tokenLists/uniswap_v3";
|
|
16
|
-
|
|
17
|
-
export const tokenLists: {
|
|
18
|
-
CaviarV1List: typeof CaviarV1List;
|
|
19
|
-
ChainflipList: typeof ChainflipList;
|
|
20
|
-
JupiterList: typeof JupiterList;
|
|
21
|
-
KadoList: typeof KadoList;
|
|
22
|
-
MayaList: typeof MayaList;
|
|
23
|
-
// OciswapV1List: typeof OciswapV1List
|
|
24
|
-
OneInchList: typeof OneInchList;
|
|
25
|
-
OpenOceanV2List: typeof OpenOceanV2List;
|
|
26
|
-
PancakeswapList: typeof PancakeswapList;
|
|
27
|
-
PangolinList: typeof PangolinList;
|
|
28
|
-
SushiswapList: typeof SushiswapList;
|
|
29
|
-
ThorchainList: typeof ThorchainList;
|
|
30
|
-
TraderjoeV2List: typeof TraderjoeV2List;
|
|
31
|
-
UniswapV2List: typeof UniswapV2List;
|
|
32
|
-
UniswapV3List: typeof UniswapV3List;
|
|
33
|
-
} = {
|
|
34
|
-
CaviarV1List,
|
|
35
|
-
ChainflipList,
|
|
36
|
-
JupiterList,
|
|
37
|
-
KadoList,
|
|
38
|
-
MayaList,
|
|
39
|
-
// OciswapV1List,
|
|
40
|
-
OneInchList,
|
|
41
|
-
OpenOceanV2List,
|
|
42
|
-
PancakeswapList,
|
|
43
|
-
PangolinList,
|
|
44
|
-
SushiswapList,
|
|
45
|
-
ThorchainList,
|
|
46
|
-
TraderjoeV2List,
|
|
47
|
-
UniswapV2List,
|
|
48
|
-
UniswapV3List,
|
|
49
|
-
};
|
|
50
|
-
|
|
1
|
+
export * from "./lists";
|
|
51
2
|
export * from "./helpers";
|
|
3
|
+
export * from "./types";
|
package/src/lists.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { list as caviarV1 } from "./tokenLists/caviar_v1";
|
|
2
|
+
import { list as chainflip } from "./tokenLists/chainflip";
|
|
3
|
+
import { list as jupiter } from "./tokenLists/jupiter";
|
|
4
|
+
import { list as kado } from "./tokenLists/kado";
|
|
5
|
+
import { list as maya } from "./tokenLists/mayachain";
|
|
6
|
+
import { list as oneInch } from "./tokenLists/oneinch";
|
|
7
|
+
import { list as openOceanV2 } from "./tokenLists/openocean_v2";
|
|
8
|
+
import { list as pancakeswap } from "./tokenLists/pancakeswap";
|
|
9
|
+
import { list as pangolin } from "./tokenLists/pangolin_v1";
|
|
10
|
+
import { list as sushiswap } from "./tokenLists/sushiswap_v2";
|
|
11
|
+
import { list as thorchain } from "./tokenLists/thorchain";
|
|
12
|
+
import { list as traderjoeV2 } from "./tokenLists/traderjoe_v2";
|
|
13
|
+
import { list as uniswapV2 } from "./tokenLists/uniswap_v2";
|
|
14
|
+
import { list as uniswapV3 } from "./tokenLists/uniswap_v3";
|
|
15
|
+
|
|
16
|
+
import type { TokenList } from "./types";
|
|
17
|
+
|
|
18
|
+
export const CaviarV1List = caviarV1;
|
|
19
|
+
export const ChainflipList = chainflip;
|
|
20
|
+
export const JupiterList = jupiter;
|
|
21
|
+
export const KadoList = kado;
|
|
22
|
+
export const MayaList = maya;
|
|
23
|
+
export const OneInchList = oneInch;
|
|
24
|
+
export const OpenOceanV2List = openOceanV2;
|
|
25
|
+
export const PancakeswapList = pancakeswap;
|
|
26
|
+
export const PangolinList = pangolin;
|
|
27
|
+
export const SushiswapList = sushiswap;
|
|
28
|
+
export const ThorchainList = thorchain;
|
|
29
|
+
export const TraderjoeV2List = traderjoeV2;
|
|
30
|
+
export const UniswapV2List = uniswapV2;
|
|
31
|
+
export const UniswapV3List = uniswapV3;
|
|
32
|
+
|
|
33
|
+
export const tokenLists: Record<string, TokenList> = {
|
|
34
|
+
CaviarV1List,
|
|
35
|
+
ChainflipList,
|
|
36
|
+
JupiterList,
|
|
37
|
+
KadoList,
|
|
38
|
+
MayaList,
|
|
39
|
+
OneInchList,
|
|
40
|
+
OpenOceanV2List,
|
|
41
|
+
PancakeswapList,
|
|
42
|
+
PangolinList,
|
|
43
|
+
SushiswapList,
|
|
44
|
+
ThorchainList,
|
|
45
|
+
TraderjoeV2List,
|
|
46
|
+
UniswapV2List,
|
|
47
|
+
UniswapV3List,
|
|
48
|
+
};
|
|
@@ -2,8 +2,8 @@ export const list = {
|
|
|
2
2
|
provider: "CAMELOT_V3",
|
|
3
3
|
chainId: "42161",
|
|
4
4
|
name: "Camelot V3",
|
|
5
|
-
timestamp: "
|
|
6
|
-
count:
|
|
5
|
+
timestamp: "1736334167052",
|
|
6
|
+
count: 1581,
|
|
7
7
|
tokens: [
|
|
8
8
|
{
|
|
9
9
|
address: "0xda39A32c9c5Bb2C9E99d4e2a24bc55A418599F90",
|
|
@@ -105,6 +105,26 @@ export const list = {
|
|
|
105
105
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.-0x64e5df8ac6e38e2742e5564f7e09f94063bd781e.png",
|
|
106
106
|
ticker: "",
|
|
107
107
|
},
|
|
108
|
+
{
|
|
109
|
+
address: "0x440017336bf1944f7152f48e53ba22af0c4E31F1",
|
|
110
|
+
chain: "ARB",
|
|
111
|
+
chainId: "42161",
|
|
112
|
+
decimals: 18,
|
|
113
|
+
identifier: "ARB.@G-0x440017336bf1944f7152f48e53ba22af0c4E31F1",
|
|
114
|
+
logoURI:
|
|
115
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.@g-0x440017336bf1944f7152f48e53ba22af0c4e31f1.png",
|
|
116
|
+
ticker: "@G",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
address: "0x440017A1b021006d556d7fc06A54c32E42Eb745B",
|
|
120
|
+
chain: "ARB",
|
|
121
|
+
chainId: "42161",
|
|
122
|
+
decimals: 18,
|
|
123
|
+
identifier: "ARB.@G-0x440017A1b021006d556d7fc06A54c32E42Eb745B",
|
|
124
|
+
logoURI:
|
|
125
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.@g-0x440017a1b021006d556d7fc06a54c32e42eb745b.png",
|
|
126
|
+
ticker: "@G",
|
|
127
|
+
},
|
|
108
128
|
{
|
|
109
129
|
address: "0x194CCAa78Bf1746AF6c22b829233587E01132754",
|
|
110
130
|
chain: "ARB",
|
|
@@ -5745,6 +5765,16 @@ export const list = {
|
|
|
5745
5765
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.e404-0x7427a37cc8b5b20e606aeded5c9ce539acad6954.png",
|
|
5746
5766
|
ticker: "E404",
|
|
5747
5767
|
},
|
|
5768
|
+
{
|
|
5769
|
+
address: "0xDB8C67e6CA293F43C75e106c70b97033cC2909E3",
|
|
5770
|
+
chain: "ARB",
|
|
5771
|
+
chainId: "42161",
|
|
5772
|
+
decimals: 18,
|
|
5773
|
+
identifier: "ARB.EAI-0xDB8C67e6CA293F43C75e106c70b97033cC2909E3",
|
|
5774
|
+
logoURI:
|
|
5775
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.eai-0xdb8c67e6ca293f43c75e106c70b97033cc2909e3.png",
|
|
5776
|
+
ticker: "EAI",
|
|
5777
|
+
},
|
|
5748
5778
|
{
|
|
5749
5779
|
address: "0xFB111dcCDd259BF7417731e30C2f8296023549F5",
|
|
5750
5780
|
chain: "ARB",
|
|
@@ -13466,6 +13496,16 @@ export const list = {
|
|
|
13466
13496
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.supr-0xf8393c8de20953b83db1be7ca42cd242563d8fe7.png",
|
|
13467
13497
|
ticker: "SUPR",
|
|
13468
13498
|
},
|
|
13499
|
+
{
|
|
13500
|
+
address: "0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92",
|
|
13501
|
+
chain: "ARB",
|
|
13502
|
+
chainId: "42161",
|
|
13503
|
+
decimals: 18,
|
|
13504
|
+
identifier: "ARB.sUSDX-0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92",
|
|
13505
|
+
logoURI:
|
|
13506
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.susdx-0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png",
|
|
13507
|
+
ticker: "sUSDX",
|
|
13508
|
+
},
|
|
13469
13509
|
{
|
|
13470
13510
|
address: "0xeEE18334c414A47FB886a7317E1885b2Bfb8c2A6",
|
|
13471
13511
|
chain: "ARB",
|
|
@@ -14456,6 +14496,16 @@ export const list = {
|
|
|
14456
14496
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.usdv-0x323665443cef804a3b5206103304bd4872ea4253.png",
|
|
14457
14497
|
ticker: "USDV",
|
|
14458
14498
|
},
|
|
14499
|
+
{
|
|
14500
|
+
address: "0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef",
|
|
14501
|
+
chain: "ARB",
|
|
14502
|
+
chainId: "42161",
|
|
14503
|
+
decimals: 18,
|
|
14504
|
+
identifier: "ARB.USDX-0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef",
|
|
14505
|
+
logoURI:
|
|
14506
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.usdx-0xf3527ef8de265eaa3716fb312c12847bfba66cef.png",
|
|
14507
|
+
ticker: "USDX",
|
|
14508
|
+
},
|
|
14459
14509
|
{
|
|
14460
14510
|
address: "0x35e050d3C0eC2d29D269a8EcEa763a183bDF9A9D",
|
|
14461
14511
|
chain: "ARB",
|
|
@@ -2,15 +2,25 @@ export const list = {
|
|
|
2
2
|
provider: "CAVIAR_V1",
|
|
3
3
|
chainId: "radix-mainnet",
|
|
4
4
|
name: "CAVIAR_V1",
|
|
5
|
-
timestamp: "
|
|
5
|
+
timestamp: "2025-01-08T11:01:45.683Z",
|
|
6
6
|
version: {
|
|
7
7
|
major: 1,
|
|
8
8
|
minor: 0,
|
|
9
9
|
patch: 0,
|
|
10
10
|
},
|
|
11
11
|
keywords: [],
|
|
12
|
-
count:
|
|
12
|
+
count: 166,
|
|
13
13
|
tokens: [
|
|
14
|
+
{
|
|
15
|
+
address: "resource_rdx1th04p2c55884yytgj0e8nq79ze9wjnvu4rpg9d7nh3t698cxdt0cr9",
|
|
16
|
+
chain: "XRD",
|
|
17
|
+
chainId: "radix-mainnet",
|
|
18
|
+
decimals: 18,
|
|
19
|
+
identifier: "XRD.$CVX-resource_rdx1th04p2c55884yytgj0e8nq79ze9wjnvu4rpg9d7nh3t698cxdt0cr9",
|
|
20
|
+
logoURI:
|
|
21
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.$cvx-resource_rdx1th04p2c55884yytgj0e8nq79ze9wjnvu4rpg9d7nh3t698cxdt0cr9.png",
|
|
22
|
+
ticker: "$CVX",
|
|
23
|
+
},
|
|
14
24
|
{
|
|
15
25
|
address: "resource_rdx1t4hw37aufauds7h7cwq24h25rxtzwe5gl7pz9qvrls2m3a7dmhh0v5",
|
|
16
26
|
chain: "XRD",
|
|
@@ -51,6 +61,16 @@ export const list = {
|
|
|
51
61
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.astrl-resource_rdx1t4tjx4g3qzd98nayqxm7qdpj0a0u8ns6a0jrchq49dyfevgh6u0gj3.png",
|
|
52
62
|
ticker: "ASTRL",
|
|
53
63
|
},
|
|
64
|
+
{
|
|
65
|
+
address: "resource_rdx1tkqqz8zs5u4l8l27wvggyke23x7fn27tu6t3d5mgeq2cuqu0vjz3vu",
|
|
66
|
+
chain: "XRD",
|
|
67
|
+
chainId: "radix-mainnet",
|
|
68
|
+
decimals: 18,
|
|
69
|
+
identifier: "XRD.BANANA-resource_rdx1tkqqz8zs5u4l8l27wvggyke23x7fn27tu6t3d5mgeq2cuqu0vjz3vu",
|
|
70
|
+
logoURI:
|
|
71
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.banana-resource_rdx1tkqqz8zs5u4l8l27wvggyke23x7fn27tu6t3d5mgeq2cuqu0vjz3vu.png",
|
|
72
|
+
ticker: "BANANA",
|
|
73
|
+
},
|
|
54
74
|
{
|
|
55
75
|
address: "resource_rdx1tkn5jcul0fdrtua60kkaasxl8592c2d0g2whas78eeqx8wur9tlzql",
|
|
56
76
|
chain: "XRD",
|
|
@@ -241,6 +261,16 @@ export const list = {
|
|
|
241
261
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.daxter-resource_rdx1tklk9zrjqaqwmjq2qkf5due8wsn96zvffj2jr3tpgs7u00we4rds8u.png",
|
|
242
262
|
ticker: "daxter",
|
|
243
263
|
},
|
|
264
|
+
{
|
|
265
|
+
address: "resource_rdx1t4dsaa07eaytq0asfe774maqzhrakfjkpxyng2ud4j6y2tdm5l7a76",
|
|
266
|
+
chain: "XRD",
|
|
267
|
+
chainId: "radix-mainnet",
|
|
268
|
+
decimals: 18,
|
|
269
|
+
identifier: "XRD.DELAY-resource_rdx1t4dsaa07eaytq0asfe774maqzhrakfjkpxyng2ud4j6y2tdm5l7a76",
|
|
270
|
+
logoURI:
|
|
271
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.delay-resource_rdx1t4dsaa07eaytq0asfe774maqzhrakfjkpxyng2ud4j6y2tdm5l7a76.png",
|
|
272
|
+
ticker: "DELAY",
|
|
273
|
+
},
|
|
244
274
|
{
|
|
245
275
|
address: "resource_rdx1tkktjr0ew96se7wpsqxxvhp2vr67jc8anq04r5xkgxq3f0rg9pcj0c",
|
|
246
276
|
chain: "XRD",
|
|
@@ -691,6 +721,16 @@ export const list = {
|
|
|
691
721
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.kyw-resource_rdx1tkccph69k52vhwlj7lgxaect2vs7txvrm88lws74685a4quu5ughg2.png",
|
|
692
722
|
ticker: "KYW",
|
|
693
723
|
},
|
|
724
|
+
{
|
|
725
|
+
address: "resource_rdx1tk4juxzn2c64khzv3dtku9kl96h77g45ul6kwrp0ul9ddfvkm4hqyv",
|
|
726
|
+
chain: "XRD",
|
|
727
|
+
chainId: "radix-mainnet",
|
|
728
|
+
decimals: 18,
|
|
729
|
+
identifier: "XRD.LOCK-resource_rdx1tk4juxzn2c64khzv3dtku9kl96h77g45ul6kwrp0ul9ddfvkm4hqyv",
|
|
730
|
+
logoURI:
|
|
731
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.lock-resource_rdx1tk4juxzn2c64khzv3dtku9kl96h77g45ul6kwrp0ul9ddfvkm4hqyv.png",
|
|
732
|
+
ticker: "LOCK",
|
|
733
|
+
},
|
|
694
734
|
{
|
|
695
735
|
address: "resource_rdx1tktu6gxvty5j0w0pkp3j8lv3wk348856w9wxk0ccsh0mz5sn5m92e8",
|
|
696
736
|
chain: "XRD",
|
|
@@ -801,6 +841,16 @@ export const list = {
|
|
|
801
841
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.naka-resource_rdx1tk4xpe0ghq3f66n3a3tn62n3zy7xps33ne2j8sts2jaf8nqgvlkc2s.png",
|
|
802
842
|
ticker: "NAKA",
|
|
803
843
|
},
|
|
844
|
+
{
|
|
845
|
+
address: "resource_rdx1thmq2j4eczsqlhtmv0sqcwphn7r4r0mwxat65q3frpsfrx3056f3sx",
|
|
846
|
+
chain: "XRD",
|
|
847
|
+
chainId: "radix-mainnet",
|
|
848
|
+
decimals: 18,
|
|
849
|
+
identifier: "XRD.NEARLY-resource_rdx1thmq2j4eczsqlhtmv0sqcwphn7r4r0mwxat65q3frpsfrx3056f3sx",
|
|
850
|
+
logoURI:
|
|
851
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.nearly-resource_rdx1thmq2j4eczsqlhtmv0sqcwphn7r4r0mwxat65q3frpsfrx3056f3sx.png",
|
|
852
|
+
ticker: "NEARLY",
|
|
853
|
+
},
|
|
804
854
|
{
|
|
805
855
|
address: "resource_rdx1t58dla7ykxzxe5es89wlhgzatqla0gceukg0eeduzvtj4cxd55etn8",
|
|
806
856
|
chain: "XRD",
|
|
@@ -861,6 +911,16 @@ export const list = {
|
|
|
861
911
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.now-resource_rdx1th42ay5yjg6ujak3ygnc6yerzx0ld622chz5tlnwjr7elcp3u48l2q.png",
|
|
862
912
|
ticker: "NOW",
|
|
863
913
|
},
|
|
914
|
+
{
|
|
915
|
+
address: "resource_rdx1thgcx3nez5gm8zgyvekvs9rr7vk3wu3a477lrzlwpqhmdz5r5m7r3c",
|
|
916
|
+
chain: "XRD",
|
|
917
|
+
chainId: "radix-mainnet",
|
|
918
|
+
decimals: 18,
|
|
919
|
+
identifier: "XRD.NRLY-resource_rdx1thgcx3nez5gm8zgyvekvs9rr7vk3wu3a477lrzlwpqhmdz5r5m7r3c",
|
|
920
|
+
logoURI:
|
|
921
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.nrly-resource_rdx1thgcx3nez5gm8zgyvekvs9rr7vk3wu3a477lrzlwpqhmdz5r5m7r3c.png",
|
|
922
|
+
ticker: "NRLY",
|
|
923
|
+
},
|
|
864
924
|
{
|
|
865
925
|
address: "resource_rdx1t52pvtk5wfhltchwh3rkzls2x0r98fw9cjhpyrf3vsykhkuwrf7jg8",
|
|
866
926
|
chain: "XRD",
|
|
@@ -1341,6 +1401,86 @@ export const list = {
|
|
|
1341
1401
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.wowo-resource_rdx1t4m7udxhunuxnyjnufr3zqyreuwy2u5fw0gnf8zg522p20na4390f9.png",
|
|
1342
1402
|
ticker: "WOWO",
|
|
1343
1403
|
},
|
|
1404
|
+
{
|
|
1405
|
+
address: "resource_rdx1tkyw4z4dxx8zwzg9qyu2fxjj9my5pdmzhs75unt03yxrrufvs3d786",
|
|
1406
|
+
chain: "XRD",
|
|
1407
|
+
chainId: "radix-mainnet",
|
|
1408
|
+
decimals: 18,
|
|
1409
|
+
identifier: "XRD.xAAVE-resource_rdx1tkyw4z4dxx8zwzg9qyu2fxjj9my5pdmzhs75unt03yxrrufvs3d786",
|
|
1410
|
+
logoURI:
|
|
1411
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xaave-resource_rdx1tkyw4z4dxx8zwzg9qyu2fxjj9my5pdmzhs75unt03yxrrufvs3d786.png",
|
|
1412
|
+
ticker: "xAAVE",
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
address: "resource_rdx1t49ukgsdsfv0232vez5nr2z9a0cwd6vjrzsssgxt9zlqglr5kxwpr9",
|
|
1416
|
+
chain: "XRD",
|
|
1417
|
+
chainId: "radix-mainnet",
|
|
1418
|
+
decimals: 6,
|
|
1419
|
+
identifier: "XRD.xADA-resource_rdx1t49ukgsdsfv0232vez5nr2z9a0cwd6vjrzsssgxt9zlqglr5kxwpr9",
|
|
1420
|
+
logoURI:
|
|
1421
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xada-resource_rdx1t49ukgsdsfv0232vez5nr2z9a0cwd6vjrzsssgxt9zlqglr5kxwpr9.png",
|
|
1422
|
+
ticker: "xADA",
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
address: "resource_rdx1t53mhl75r05r5x2cyty8l04fuh8nfukjkan3sswsvcrcj8v0d0yf6d",
|
|
1426
|
+
chain: "XRD",
|
|
1427
|
+
chainId: "radix-mainnet",
|
|
1428
|
+
decimals: 8,
|
|
1429
|
+
identifier: "XRD.xBCH-resource_rdx1t53mhl75r05r5x2cyty8l04fuh8nfukjkan3sswsvcrcj8v0d0yf6d",
|
|
1430
|
+
logoURI:
|
|
1431
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xbch-resource_rdx1t53mhl75r05r5x2cyty8l04fuh8nfukjkan3sswsvcrcj8v0d0yf6d.png",
|
|
1432
|
+
ticker: "xBCH",
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
address: "resource_rdx1thcmmknq2mlhxzy20pd0kh4w2runhqhhax9tf99n50l9ylg8wf4sne",
|
|
1436
|
+
chain: "XRD",
|
|
1437
|
+
chainId: "radix-mainnet",
|
|
1438
|
+
decimals: 18,
|
|
1439
|
+
identifier: "XRD.xBNB-resource_rdx1thcmmknq2mlhxzy20pd0kh4w2runhqhhax9tf99n50l9ylg8wf4sne",
|
|
1440
|
+
logoURI:
|
|
1441
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xbnb-resource_rdx1thcmmknq2mlhxzy20pd0kh4w2runhqhhax9tf99n50l9ylg8wf4sne.png",
|
|
1442
|
+
ticker: "xBNB",
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
address: "resource_rdx1t5lwaxl3f6f88mtxvhhq6jd6dmv6u0hr9ssrqhvg3a8vw92yau4w8a",
|
|
1446
|
+
chain: "XRD",
|
|
1447
|
+
chainId: "radix-mainnet",
|
|
1448
|
+
decimals: 8,
|
|
1449
|
+
identifier: "XRD.xCRO-resource_rdx1t5lwaxl3f6f88mtxvhhq6jd6dmv6u0hr9ssrqhvg3a8vw92yau4w8a",
|
|
1450
|
+
logoURI:
|
|
1451
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xcro-resource_rdx1t5lwaxl3f6f88mtxvhhq6jd6dmv6u0hr9ssrqhvg3a8vw92yau4w8a.png",
|
|
1452
|
+
ticker: "xCRO",
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
address: "resource_rdx1thc7mxrzd3u2v9nfd8zm52juswrsk9f74gqmzk5z46ap2vqk6cut3e",
|
|
1456
|
+
chain: "XRD",
|
|
1457
|
+
chainId: "radix-mainnet",
|
|
1458
|
+
decimals: 18,
|
|
1459
|
+
identifier: "XRD.xDAI-resource_rdx1thc7mxrzd3u2v9nfd8zm52juswrsk9f74gqmzk5z46ap2vqk6cut3e",
|
|
1460
|
+
logoURI:
|
|
1461
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xdai-resource_rdx1thc7mxrzd3u2v9nfd8zm52juswrsk9f74gqmzk5z46ap2vqk6cut3e.png",
|
|
1462
|
+
ticker: "xDAI",
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
address: "resource_rdx1t5d2qch32njedqpa204yswpxmxea5wazqf7tavptcxgq5j77suuxlr",
|
|
1466
|
+
chain: "XRD",
|
|
1467
|
+
chainId: "radix-mainnet",
|
|
1468
|
+
decimals: 18,
|
|
1469
|
+
identifier: "XRD.xENA-resource_rdx1t5d2qch32njedqpa204yswpxmxea5wazqf7tavptcxgq5j77suuxlr",
|
|
1470
|
+
logoURI:
|
|
1471
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xena-resource_rdx1t5d2qch32njedqpa204yswpxmxea5wazqf7tavptcxgq5j77suuxlr.png",
|
|
1472
|
+
ticker: "xENA",
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
address: "resource_rdx1t5qhyvgr5mh2nrwwntkk9q3nuy9e9rddgps68shalucr0cyx9fwrwv",
|
|
1476
|
+
chain: "XRD",
|
|
1477
|
+
chainId: "radix-mainnet",
|
|
1478
|
+
decimals: 18,
|
|
1479
|
+
identifier: "XRD.xETC-resource_rdx1t5qhyvgr5mh2nrwwntkk9q3nuy9e9rddgps68shalucr0cyx9fwrwv",
|
|
1480
|
+
logoURI:
|
|
1481
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xetc-resource_rdx1t5qhyvgr5mh2nrwwntkk9q3nuy9e9rddgps68shalucr0cyx9fwrwv.png",
|
|
1482
|
+
ticker: "xETC",
|
|
1483
|
+
},
|
|
1344
1484
|
{
|
|
1345
1485
|
address: "resource_rdx1th88qcj5syl9ghka2g9l7tw497vy5x6zaatyvgfkwcfe8n9jt2npww",
|
|
1346
1486
|
chain: "XRD",
|
|
@@ -1351,6 +1491,26 @@ export const list = {
|
|
|
1351
1491
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xeth-resource_rdx1th88qcj5syl9ghka2g9l7tw497vy5x6zaatyvgfkwcfe8n9jt2npww.png",
|
|
1352
1492
|
ticker: "xETH",
|
|
1353
1493
|
},
|
|
1494
|
+
{
|
|
1495
|
+
address: "resource_rdx1t56xvxq96c02vxsmp0uzq7r4zk2wqam5mjjg98ytv7aadgwagj60p7",
|
|
1496
|
+
chain: "XRD",
|
|
1497
|
+
chainId: "radix-mainnet",
|
|
1498
|
+
decimals: 18,
|
|
1499
|
+
identifier: "XRD.xGRT-resource_rdx1t56xvxq96c02vxsmp0uzq7r4zk2wqam5mjjg98ytv7aadgwagj60p7",
|
|
1500
|
+
logoURI:
|
|
1501
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xgrt-resource_rdx1t56xvxq96c02vxsmp0uzq7r4zk2wqam5mjjg98ytv7aadgwagj60p7.png",
|
|
1502
|
+
ticker: "xGRT",
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
address: "resource_rdx1tk3rs0wmsja4sldml4tkj993s7669heulw57jva777h5eqmg6xf8mx",
|
|
1506
|
+
chain: "XRD",
|
|
1507
|
+
chainId: "radix-mainnet",
|
|
1508
|
+
decimals: 18,
|
|
1509
|
+
identifier: "XRD.xIMX-resource_rdx1tk3rs0wmsja4sldml4tkj993s7669heulw57jva777h5eqmg6xf8mx",
|
|
1510
|
+
logoURI:
|
|
1511
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.ximx-resource_rdx1tk3rs0wmsja4sldml4tkj993s7669heulw57jva777h5eqmg6xf8mx.png",
|
|
1512
|
+
ticker: "xIMX",
|
|
1513
|
+
},
|
|
1354
1514
|
{
|
|
1355
1515
|
address: "resource_rdx1t4l27zjw5hhejrsztcee4sltrrgm7hzw9xmz9sw486kmrmumfyxzp7",
|
|
1356
1516
|
chain: "XRD",
|
|
@@ -1361,6 +1521,46 @@ export const list = {
|
|
|
1361
1521
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xj-resource_rdx1t4l27zjw5hhejrsztcee4sltrrgm7hzw9xmz9sw486kmrmumfyxzp7.png",
|
|
1362
1522
|
ticker: "XJ",
|
|
1363
1523
|
},
|
|
1524
|
+
{
|
|
1525
|
+
address: "resource_rdx1t58k9jlygcw27sx7peza34jtk65qhe8y7qxmyp9l09pz5sjgadkcq3",
|
|
1526
|
+
chain: "XRD",
|
|
1527
|
+
chainId: "radix-mainnet",
|
|
1528
|
+
decimals: 18,
|
|
1529
|
+
identifier: "XRD.xLINK-resource_rdx1t58k9jlygcw27sx7peza34jtk65qhe8y7qxmyp9l09pz5sjgadkcq3",
|
|
1530
|
+
logoURI:
|
|
1531
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xlink-resource_rdx1t58k9jlygcw27sx7peza34jtk65qhe8y7qxmyp9l09pz5sjgadkcq3.png",
|
|
1532
|
+
ticker: "xLINK",
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
address: "resource_rdx1tkc8uhc3frpveynthwzh0675zlv9cxzd68dvs6lcu6x5hc0wxkdw34",
|
|
1536
|
+
chain: "XRD",
|
|
1537
|
+
chainId: "radix-mainnet",
|
|
1538
|
+
decimals: 18,
|
|
1539
|
+
identifier: "XRD.xMKR-resource_rdx1tkc8uhc3frpveynthwzh0675zlv9cxzd68dvs6lcu6x5hc0wxkdw34",
|
|
1540
|
+
logoURI:
|
|
1541
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xmkr-resource_rdx1tkc8uhc3frpveynthwzh0675zlv9cxzd68dvs6lcu6x5hc0wxkdw34.png",
|
|
1542
|
+
ticker: "xMKR",
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
address: "resource_rdx1t4lqx3pzazlfp0e449ued6mmmfysevc8r2tzrcj70kpnlwt9kdpgf8",
|
|
1546
|
+
chain: "XRD",
|
|
1547
|
+
chainId: "radix-mainnet",
|
|
1548
|
+
decimals: 18,
|
|
1549
|
+
identifier: "XRD.xPEPE-resource_rdx1t4lqx3pzazlfp0e449ued6mmmfysevc8r2tzrcj70kpnlwt9kdpgf8",
|
|
1550
|
+
logoURI:
|
|
1551
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xpepe-resource_rdx1t4lqx3pzazlfp0e449ued6mmmfysevc8r2tzrcj70kpnlwt9kdpgf8.png",
|
|
1552
|
+
ticker: "xPEPE",
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
address: "resource_rdx1tk0ma9ngnle2jka3j33d5d7072ywy033x0d6fkvc3x9sz6ts3nvxmz",
|
|
1556
|
+
chain: "XRD",
|
|
1557
|
+
chainId: "radix-mainnet",
|
|
1558
|
+
decimals: 18,
|
|
1559
|
+
identifier: "XRD.xPOL-resource_rdx1tk0ma9ngnle2jka3j33d5d7072ywy033x0d6fkvc3x9sz6ts3nvxmz",
|
|
1560
|
+
logoURI:
|
|
1561
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xpol-resource_rdx1tk0ma9ngnle2jka3j33d5d7072ywy033x0d6fkvc3x9sz6ts3nvxmz.png",
|
|
1562
|
+
ticker: "xPOL",
|
|
1563
|
+
},
|
|
1364
1564
|
{
|
|
1365
1565
|
address: "resource_rdx1tknxxxxxxxxxradxrdxxxxxxxxx009923554798xxxxxxxxxradxrd",
|
|
1366
1566
|
chain: "XRD",
|
|
@@ -1380,6 +1580,26 @@ export const list = {
|
|
|
1380
1580
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xse-resource_rdx1tkkzy2zg4na22kskk00q50v0kghw89akeh84u60xczxsr0ynes80d5.png",
|
|
1381
1581
|
ticker: "xse",
|
|
1382
1582
|
},
|
|
1583
|
+
{
|
|
1584
|
+
address: "resource_rdx1t55ja5ser4g8rkh2qm6jhr44zej9h6yd2z9n34e3wffrhnth6e5awe",
|
|
1585
|
+
chain: "XRD",
|
|
1586
|
+
chainId: "radix-mainnet",
|
|
1587
|
+
decimals: 18,
|
|
1588
|
+
identifier: "XRD.xSHIB-resource_rdx1t55ja5ser4g8rkh2qm6jhr44zej9h6yd2z9n34e3wffrhnth6e5awe",
|
|
1589
|
+
logoURI:
|
|
1590
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xshib-resource_rdx1t55ja5ser4g8rkh2qm6jhr44zej9h6yd2z9n34e3wffrhnth6e5awe.png",
|
|
1591
|
+
ticker: "xSHIB",
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
address: "resource_rdx1t5ytfqwtqjfyq2ku0n5r4d275h2uc9cx0s4l6fghaffgnvsatjw6hk",
|
|
1595
|
+
chain: "XRD",
|
|
1596
|
+
chainId: "radix-mainnet",
|
|
1597
|
+
decimals: 18,
|
|
1598
|
+
identifier: "XRD.xUNI-resource_rdx1t5ytfqwtqjfyq2ku0n5r4d275h2uc9cx0s4l6fghaffgnvsatjw6hk",
|
|
1599
|
+
logoURI:
|
|
1600
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xuni-resource_rdx1t5ytfqwtqjfyq2ku0n5r4d275h2uc9cx0s4l6fghaffgnvsatjw6hk.png",
|
|
1601
|
+
ticker: "xUNI",
|
|
1602
|
+
},
|
|
1383
1603
|
{
|
|
1384
1604
|
address: "resource_rdx1t4upr78guuapv5ept7d7ptekk9mqhy605zgms33mcszen8l9fac8vf",
|
|
1385
1605
|
chain: "XRD",
|
|
@@ -1410,6 +1630,26 @@ export const list = {
|
|
|
1410
1630
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xwbtc-resource_rdx1t580qxc7upat7lww4l2c4jckacafjeudxj5wpjrrct0p3e82sq4y75.png",
|
|
1411
1631
|
ticker: "xwBTC",
|
|
1412
1632
|
},
|
|
1633
|
+
{
|
|
1634
|
+
address: "resource_rdx1t5jlk3wlxrvml2a0aa59h8cjt59utuku8qt5mlt8s8590qt024km3y",
|
|
1635
|
+
chain: "XRD",
|
|
1636
|
+
chainId: "radix-mainnet",
|
|
1637
|
+
decimals: 18,
|
|
1638
|
+
identifier: "XRD.xWLD-resource_rdx1t5jlk3wlxrvml2a0aa59h8cjt59utuku8qt5mlt8s8590qt024km3y",
|
|
1639
|
+
logoURI:
|
|
1640
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xwld-resource_rdx1t5jlk3wlxrvml2a0aa59h8cjt59utuku8qt5mlt8s8590qt024km3y.png",
|
|
1641
|
+
ticker: "xWLD",
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
address: "resource_rdx1tk35r6nlyjnt0aqjv7re27gu72ly7d3dwehe9e5k2nwjaue8fxtpkv",
|
|
1645
|
+
chain: "XRD",
|
|
1646
|
+
chainId: "radix-mainnet",
|
|
1647
|
+
decimals: 6,
|
|
1648
|
+
identifier: "XRD.xXRP-resource_rdx1tk35r6nlyjnt0aqjv7re27gu72ly7d3dwehe9e5k2nwjaue8fxtpkv",
|
|
1649
|
+
logoURI:
|
|
1650
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xxrp-resource_rdx1tk35r6nlyjnt0aqjv7re27gu72ly7d3dwehe9e5k2nwjaue8fxtpkv.png",
|
|
1651
|
+
ticker: "xXRP",
|
|
1652
|
+
},
|
|
1413
1653
|
{
|
|
1414
1654
|
address: "resource_rdx1t4lkvwqd7wxqcatatelre2svxy04fn6980ydzld0faqamv8nrxhzm5",
|
|
1415
1655
|
chain: "XRD",
|