@swapkit/tokens 1.10.0 → 2.0.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 -14
- package/package.json +1 -1
- package/src/helpers.ts +13 -0
- package/src/index.ts +50 -13
- package/src/tokenLists/camelot_v3.ts +112 -2
- package/src/tokenLists/caviar_v1.ts +92 -2
- package/src/tokenLists/chainflip.ts +1 -1
- package/src/tokenLists/jupiter.ts +1469 -129
- package/src/tokenLists/kado.ts +276 -0
- package/src/tokenLists/mayachain.ts +1 -1
- package/src/tokenLists/oneinch.ts +172 -2
- package/src/tokenLists/pangolin_v1.ts +12 -2
- package/src/tokenLists/sushiswap_v2.ts +76 -36
- package/src/tokenLists/thorchain.ts +12 -2
- package/src/tokenLists/traderjoe_v2.ts +230 -120
- package/src/tokenLists/uniswap_v2.ts +155 -75
- package/src/tokenLists/uniswap_v3.ts +203 -103
package/package.json
CHANGED
package/src/helpers.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { tokenLists } from "./index";
|
|
2
|
+
|
|
3
|
+
export function getTokenIcon(identifier: string): string | undefined {
|
|
4
|
+
// Search through all lists for a matching token
|
|
5
|
+
for (const list of Object.values(tokenLists)) {
|
|
6
|
+
const token = list.tokens.find((t) => t.identifier === identifier);
|
|
7
|
+
if (token?.logoURI) {
|
|
8
|
+
return token.logoURI;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
return undefined;
|
|
13
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,51 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { list as CaviarV1List } from "./tokenLists/caviar_v1";
|
|
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";
|
|
5
6
|
// export { list as OciswapV1List } from "./tokenLists/ociswap_v1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
+
|
|
51
|
+
export * from "./helpers";
|
|
@@ -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: "1733832129156",
|
|
6
|
+
count: 1576,
|
|
7
7
|
tokens: [
|
|
8
8
|
{
|
|
9
9
|
address: "0xda39A32c9c5Bb2C9E99d4e2a24bc55A418599F90",
|
|
@@ -2165,6 +2165,16 @@ export const list = {
|
|
|
2165
2165
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.apboop-0x5e5ca34c64e2deeead7d33f71345699c52a8e5ba.png",
|
|
2166
2166
|
ticker: "apBoop",
|
|
2167
2167
|
},
|
|
2168
|
+
{
|
|
2169
|
+
address: "0x47442DAdA6D72381C3bcfe31445Eebc199165ABe",
|
|
2170
|
+
chain: "ARB",
|
|
2171
|
+
chainId: "42161",
|
|
2172
|
+
decimals: 18,
|
|
2173
|
+
identifier: "ARB.apDEFI-0x47442DAdA6D72381C3bcfe31445Eebc199165ABe",
|
|
2174
|
+
logoURI:
|
|
2175
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.apdefi-0x47442dada6d72381c3bcfe31445eebc199165abe.png",
|
|
2176
|
+
ticker: "apDEFI",
|
|
2177
|
+
},
|
|
2168
2178
|
{
|
|
2169
2179
|
address: "0x95fBf30F240914752f5033e156E035cD65276949",
|
|
2170
2180
|
chain: "ARB",
|
|
@@ -2515,6 +2525,16 @@ export const list = {
|
|
|
2515
2525
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.aprs-0x86a2aaa2a36b5b836671636f48a7e5e0bfa581dd.png",
|
|
2516
2526
|
ticker: "APRS",
|
|
2517
2527
|
},
|
|
2528
|
+
{
|
|
2529
|
+
address: "0x0a51da0cb302792415A08F0a83C34E4ab0a235F9",
|
|
2530
|
+
chain: "ARB",
|
|
2531
|
+
chainId: "42161",
|
|
2532
|
+
decimals: 18,
|
|
2533
|
+
identifier: "ARB.apSINDEX-0x0a51da0cb302792415A08F0a83C34E4ab0a235F9",
|
|
2534
|
+
logoURI:
|
|
2535
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.apsindex-0x0a51da0cb302792415a08f0a83c34e4ab0a235f9.png",
|
|
2536
|
+
ticker: "apSINDEX",
|
|
2537
|
+
},
|
|
2518
2538
|
{
|
|
2519
2539
|
address: "0x28656c22D22C82C4869578672D05E48F0cB7D611",
|
|
2520
2540
|
chain: "ARB",
|
|
@@ -3325,6 +3345,16 @@ export const list = {
|
|
|
3325
3345
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.bakio-0xbe31e0890a7dbed5d107101f809c2fd53059e0b8.png",
|
|
3326
3346
|
ticker: "BAKIO",
|
|
3327
3347
|
},
|
|
3348
|
+
{
|
|
3349
|
+
address: "0x1343Ab9D0b134de0e5a7ce9F0197393C30921C22",
|
|
3350
|
+
chain: "ARB",
|
|
3351
|
+
chainId: "42161",
|
|
3352
|
+
decimals: 18,
|
|
3353
|
+
identifier: "ARB.BALD ED-0x1343Ab9D0b134de0e5a7ce9F0197393C30921C22",
|
|
3354
|
+
logoURI:
|
|
3355
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.bald ed-0x1343ab9d0b134de0e5a7ce9f0197393c30921c22.png",
|
|
3356
|
+
ticker: "BALD ED",
|
|
3357
|
+
},
|
|
3328
3358
|
{
|
|
3329
3359
|
address: "0xA613F0624362460A1C8ca0F7684185f9A2A37EFf",
|
|
3330
3360
|
chain: "ARB",
|
|
@@ -6545,6 +6575,16 @@ export const list = {
|
|
|
6545
6575
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.ftd-0xe1a0bb0d42d623b95fb3b38e0ea3cbfb6e69fe55.png",
|
|
6546
6576
|
ticker: "FTD",
|
|
6547
6577
|
},
|
|
6578
|
+
{
|
|
6579
|
+
address: "0x130096aF9163B185cae4a833f856760199Fc6cEB",
|
|
6580
|
+
chain: "ARB",
|
|
6581
|
+
chainId: "42161",
|
|
6582
|
+
decimals: 18,
|
|
6583
|
+
identifier: "ARB.FU-0x130096aF9163B185cae4a833f856760199Fc6cEB",
|
|
6584
|
+
logoURI:
|
|
6585
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.fu-0x130096af9163b185cae4a833f856760199fc6ceb.png",
|
|
6586
|
+
ticker: "FU",
|
|
6587
|
+
},
|
|
6548
6588
|
{
|
|
6549
6589
|
address: "0x9aee3C99934C88832399D6C6E08ad802112eBEab",
|
|
6550
6590
|
chain: "ARB",
|
|
@@ -6845,6 +6885,16 @@ export const list = {
|
|
|
6845
6885
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.glizzies-0xae35e2f40f24754135d85e01773732f706291500.png",
|
|
6846
6886
|
ticker: "GLIZZIES",
|
|
6847
6887
|
},
|
|
6888
|
+
{
|
|
6889
|
+
address: "0x4d48d503ed04d50418C9aBF163b1168FF834E47c",
|
|
6890
|
+
chain: "ARB",
|
|
6891
|
+
chainId: "42161",
|
|
6892
|
+
decimals: 18,
|
|
6893
|
+
identifier: "ARB.GLOOP-0x4d48d503ed04d50418C9aBF163b1168FF834E47c",
|
|
6894
|
+
logoURI:
|
|
6895
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.gloop-0x4d48d503ed04d50418c9abf163b1168ff834e47c.png",
|
|
6896
|
+
ticker: "GLOOP",
|
|
6897
|
+
},
|
|
6848
6898
|
{
|
|
6849
6899
|
address: "0x98AFEdaaCFfca3200817a643cc9a1A7Bca643E38",
|
|
6850
6900
|
chain: "ARB",
|
|
@@ -6915,6 +6965,16 @@ export const list = {
|
|
|
6915
6965
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.gme.dw-0x43333771e8d5fd74e5491d10aeac2bfdc23d19c8.png",
|
|
6916
6966
|
ticker: "GME.dw",
|
|
6917
6967
|
},
|
|
6968
|
+
{
|
|
6969
|
+
address: "0xAad4187a81689AF72d91966c8119756E425cD7CF",
|
|
6970
|
+
chain: "ARB",
|
|
6971
|
+
chainId: "42161",
|
|
6972
|
+
decimals: 18,
|
|
6973
|
+
identifier: "ARB.GMI-0xAad4187a81689AF72d91966c8119756E425cD7CF",
|
|
6974
|
+
logoURI:
|
|
6975
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.gmi-0xaad4187a81689af72d91966c8119756e425cd7cf.png",
|
|
6976
|
+
ticker: "GMI",
|
|
6977
|
+
},
|
|
6918
6978
|
{
|
|
6919
6979
|
address: "0xBFcc79720c6e1a684DBE099f6A68D18711b3C9a3",
|
|
6920
6980
|
chain: "ARB",
|
|
@@ -7075,6 +7135,16 @@ export const list = {
|
|
|
7075
7135
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.grome-0x3c090b7c53fecca12ee102d0171579af3b469677.png",
|
|
7076
7136
|
ticker: "gROME",
|
|
7077
7137
|
},
|
|
7138
|
+
{
|
|
7139
|
+
address: "0x9623063377AD1B27544C965cCd7342f7EA7e88C7",
|
|
7140
|
+
chain: "ARB",
|
|
7141
|
+
chainId: "42161",
|
|
7142
|
+
decimals: 18,
|
|
7143
|
+
identifier: "ARB.GRT-0x9623063377AD1B27544C965cCd7342f7EA7e88C7",
|
|
7144
|
+
logoURI:
|
|
7145
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.grt-0x9623063377ad1b27544c965ccd7342f7ea7e88c7.png",
|
|
7146
|
+
ticker: "GRT",
|
|
7147
|
+
},
|
|
7078
7148
|
{
|
|
7079
7149
|
address: "0x9fb02066094daAA478C879b0c4640B2d2866Dd9b",
|
|
7080
7150
|
chain: "ARB",
|
|
@@ -7095,6 +7165,16 @@ export const list = {
|
|
|
7095
7165
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.grv-0x10031e7cff689de64f1a5a8ecf4fbbc7aa068927.png",
|
|
7096
7166
|
ticker: "GRV",
|
|
7097
7167
|
},
|
|
7168
|
+
{
|
|
7169
|
+
address: "0xb08D8BeCAB1bf76A9Ce3d2d5fa946F65EC1d3e83",
|
|
7170
|
+
chain: "ARB",
|
|
7171
|
+
chainId: "42161",
|
|
7172
|
+
decimals: 18,
|
|
7173
|
+
identifier: "ARB.GS-0xb08D8BeCAB1bf76A9Ce3d2d5fa946F65EC1d3e83",
|
|
7174
|
+
logoURI:
|
|
7175
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.gs-0xb08d8becab1bf76a9ce3d2d5fa946f65ec1d3e83.png",
|
|
7176
|
+
ticker: "GS",
|
|
7177
|
+
},
|
|
7098
7178
|
{
|
|
7099
7179
|
address: "0x580E933D90091b9cE380740E3a4A39c67eB85B4c",
|
|
7100
7180
|
chain: "ARB",
|
|
@@ -9255,6 +9335,16 @@ export const list = {
|
|
|
9255
9335
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.merlin-0x9a4f2bfc4ef58b875098e0e087d144c654eb9a0b.png",
|
|
9256
9336
|
ticker: "MERLIN",
|
|
9257
9337
|
},
|
|
9338
|
+
{
|
|
9339
|
+
address: "0x89a44961D7AEfC6F10C379ece6663a7A6E6a91b2",
|
|
9340
|
+
chain: "ARB",
|
|
9341
|
+
chainId: "42161",
|
|
9342
|
+
decimals: 18,
|
|
9343
|
+
identifier: "ARB.mert-0x89a44961D7AEfC6F10C379ece6663a7A6E6a91b2",
|
|
9344
|
+
logoURI:
|
|
9345
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.mert-0x89a44961d7aefc6f10c379ece6663a7a6e6a91b2.png",
|
|
9346
|
+
ticker: "mert",
|
|
9347
|
+
},
|
|
9258
9348
|
{
|
|
9259
9349
|
address: "0x1D0543849bf53cDf736267fFF3BFb58b2ae76CF1",
|
|
9260
9350
|
chain: "ARB",
|
|
@@ -12315,6 +12405,16 @@ export const list = {
|
|
|
12315
12405
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.sat-0xb9804790572c7e9c43694ef66fd2022cbe324c57.png",
|
|
12316
12406
|
ticker: "SAT",
|
|
12317
12407
|
},
|
|
12408
|
+
{
|
|
12409
|
+
address: "0xd2262724641504cE0d3064B3dbfE2e8387f3d939",
|
|
12410
|
+
chain: "ARB",
|
|
12411
|
+
chainId: "42161",
|
|
12412
|
+
decimals: 18,
|
|
12413
|
+
identifier: "ARB.sbf-0xd2262724641504cE0d3064B3dbfE2e8387f3d939",
|
|
12414
|
+
logoURI:
|
|
12415
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.sbf-0xd2262724641504ce0d3064b3dbfe2e8387f3d939.png",
|
|
12416
|
+
ticker: "sbf",
|
|
12417
|
+
},
|
|
12318
12418
|
{
|
|
12319
12419
|
address: "0x177EeCa8E98CF18EA4D405009530038f4C823B8e",
|
|
12320
12420
|
chain: "ARB",
|
|
@@ -14466,6 +14566,16 @@ export const list = {
|
|
|
14466
14566
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.vin-0xb544ea96cb338894e27f28ddaf5478adde5db2da.png",
|
|
14467
14567
|
ticker: "VIN",
|
|
14468
14568
|
},
|
|
14569
|
+
{
|
|
14570
|
+
address: "0x1B7AD346b6Ff2D196DaA8E78AEd86Baa6D7e3B02",
|
|
14571
|
+
chain: "ARB",
|
|
14572
|
+
chainId: "42161",
|
|
14573
|
+
decimals: 18,
|
|
14574
|
+
identifier: "ARB.VITAI-0x1B7AD346b6Ff2D196DaA8E78AEd86Baa6D7e3B02",
|
|
14575
|
+
logoURI:
|
|
14576
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.vitai-0x1b7ad346b6ff2d196daa8e78aed86baa6d7e3b02.png",
|
|
14577
|
+
ticker: "VITAI",
|
|
14578
|
+
},
|
|
14469
14579
|
{
|
|
14470
14580
|
address: "0x417a1aFD44250314BffB11ff68E989775e990ab6",
|
|
14471
14581
|
chain: "ARB",
|
|
@@ -2,14 +2,14 @@ export const list = {
|
|
|
2
2
|
provider: "CAVIAR_V1",
|
|
3
3
|
chainId: "radix-mainnet",
|
|
4
4
|
name: "CAVIAR_V1",
|
|
5
|
-
timestamp: "2024-
|
|
5
|
+
timestamp: "2024-12-10T12:01:50.180Z",
|
|
6
6
|
version: {
|
|
7
7
|
major: 1,
|
|
8
8
|
minor: 0,
|
|
9
9
|
patch: 0,
|
|
10
10
|
},
|
|
11
11
|
keywords: [],
|
|
12
|
-
count:
|
|
12
|
+
count: 142,
|
|
13
13
|
tokens: [
|
|
14
14
|
{
|
|
15
15
|
address: "resource_rdx1t4hw37aufauds7h7cwq24h25rxtzwe5gl7pz9qvrls2m3a7dmhh0v5",
|
|
@@ -121,6 +121,16 @@ export const list = {
|
|
|
121
121
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.c.usdc-resource_rdx1t4rqwrg5psl55nnxpqq3jz4jvhf6rhl90j6nxnav3yzxrcqr627zuz.png",
|
|
122
122
|
ticker: "c.USDC",
|
|
123
123
|
},
|
|
124
|
+
{
|
|
125
|
+
address: "resource_rdx1tk7g72c0uv2g83g3dqtkg6jyjwkre6qnusgjhrtz0cj9u54djgnk3c",
|
|
126
|
+
chain: "XRD",
|
|
127
|
+
chainId: "radix-mainnet",
|
|
128
|
+
decimals: 18,
|
|
129
|
+
identifier: "XRD.cassie-resource_rdx1tk7g72c0uv2g83g3dqtkg6jyjwkre6qnusgjhrtz0cj9u54djgnk3c",
|
|
130
|
+
logoURI:
|
|
131
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.cassie-resource_rdx1tk7g72c0uv2g83g3dqtkg6jyjwkre6qnusgjhrtz0cj9u54djgnk3c.png",
|
|
132
|
+
ticker: "cassie",
|
|
133
|
+
},
|
|
124
134
|
{
|
|
125
135
|
address: "resource_rdx1thdd8kqdcg0vyqh77dpyksuxsan5y9ry2u9d00pewx6mkeug7r92qz",
|
|
126
136
|
chain: "XRD",
|
|
@@ -321,6 +331,16 @@ export const list = {
|
|
|
321
331
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.dt-resource_rdx1tkwry20l2xddpjkvk07xj6mq3n6g6fv3rtpm799ay6upwrfvefvypn.png",
|
|
322
332
|
ticker: "DT",
|
|
323
333
|
},
|
|
334
|
+
{
|
|
335
|
+
address: "resource_rdx1thah6ym2afv9l75fxm5sfdepkcerehyxlyw5uu3yrq86vr480848z5",
|
|
336
|
+
chain: "XRD",
|
|
337
|
+
chainId: "radix-mainnet",
|
|
338
|
+
decimals: 18,
|
|
339
|
+
identifier: "XRD.DUCKK-resource_rdx1thah6ym2afv9l75fxm5sfdepkcerehyxlyw5uu3yrq86vr480848z5",
|
|
340
|
+
logoURI:
|
|
341
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.duckk-resource_rdx1thah6ym2afv9l75fxm5sfdepkcerehyxlyw5uu3yrq86vr480848z5.png",
|
|
342
|
+
ticker: "DUCKK",
|
|
343
|
+
},
|
|
324
344
|
{
|
|
325
345
|
address: "resource_rdx1t5xv44c0u99z096q00mv74emwmxwjw26m98lwlzq6ddlpe9f5cuc7s",
|
|
326
346
|
chain: "XRD",
|
|
@@ -361,6 +381,16 @@ export const list = {
|
|
|
361
381
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.em-resource_rdx1t5ddr2kll2vlwaw70lsl2uhl0p2xs57a85zy53hhwpjkag5qgfka62.png",
|
|
362
382
|
ticker: "EM",
|
|
363
383
|
},
|
|
384
|
+
{
|
|
385
|
+
address: "resource_rdx1t4dxe0hg8xu26uxm4eueqcgxn8h3yf4ue48acap4wfwarp0fl8kyed",
|
|
386
|
+
chain: "XRD",
|
|
387
|
+
chainId: "radix-mainnet",
|
|
388
|
+
decimals: 18,
|
|
389
|
+
identifier: "XRD.FADE-resource_rdx1t4dxe0hg8xu26uxm4eueqcgxn8h3yf4ue48acap4wfwarp0fl8kyed",
|
|
390
|
+
logoURI:
|
|
391
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.fade-resource_rdx1t4dxe0hg8xu26uxm4eueqcgxn8h3yf4ue48acap4wfwarp0fl8kyed.png",
|
|
392
|
+
ticker: "FADE",
|
|
393
|
+
},
|
|
364
394
|
{
|
|
365
395
|
address: "resource_rdx1thwnkqulk4jtj9gyf2glt9ulrn9mhk8vzutjgce6a9d6m6z6lna8s5",
|
|
366
396
|
chain: "XRD",
|
|
@@ -471,6 +501,16 @@ export const list = {
|
|
|
471
501
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.gold-resource_rdx1tha6wyf7jms3uset6wzmgnp9uncy46ulnv2avxl9jpzxwv3el4wc5x.png",
|
|
472
502
|
ticker: "GOLD",
|
|
473
503
|
},
|
|
504
|
+
{
|
|
505
|
+
address: "resource_rdx1t4kh5zjslqjfl5r4u28khsdrpuqgpqptdrjx7f0d24sncz6xnrqa3e",
|
|
506
|
+
chain: "XRD",
|
|
507
|
+
chainId: "radix-mainnet",
|
|
508
|
+
decimals: 18,
|
|
509
|
+
identifier: "XRD.GROWW-resource_rdx1t4kh5zjslqjfl5r4u28khsdrpuqgpqptdrjx7f0d24sncz6xnrqa3e",
|
|
510
|
+
logoURI:
|
|
511
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.groww-resource_rdx1t4kh5zjslqjfl5r4u28khsdrpuqgpqptdrjx7f0d24sncz6xnrqa3e.png",
|
|
512
|
+
ticker: "GROWW",
|
|
513
|
+
},
|
|
474
514
|
{
|
|
475
515
|
address: "resource_rdx1tke67956ms5528k9qc89m0n8wm0yjmhhx06xl7k6dv4k4jkmnt986h",
|
|
476
516
|
chain: "XRD",
|
|
@@ -491,6 +531,16 @@ export const list = {
|
|
|
491
531
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.hhug-resource_rdx1tk3097l484387jxzp6dt6su4yruc3g4wacwpm68wk72a6h50z6kxzl.png",
|
|
492
532
|
ticker: "HHUG",
|
|
493
533
|
},
|
|
534
|
+
{
|
|
535
|
+
address: "resource_rdx1t4v2jke9xkcrqra9sf3lzgpxwdr590npkt03vufty4pwuu205q03az",
|
|
536
|
+
chain: "XRD",
|
|
537
|
+
chainId: "radix-mainnet",
|
|
538
|
+
decimals: 18,
|
|
539
|
+
identifier: "XRD.HIT-resource_rdx1t4v2jke9xkcrqra9sf3lzgpxwdr590npkt03vufty4pwuu205q03az",
|
|
540
|
+
logoURI:
|
|
541
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.hit-resource_rdx1t4v2jke9xkcrqra9sf3lzgpxwdr590npkt03vufty4pwuu205q03az.png",
|
|
542
|
+
ticker: "HIT",
|
|
543
|
+
},
|
|
494
544
|
{
|
|
495
545
|
address: "resource_rdx1t5ahxgjglsvj4dah68el8vp5pdedmwrd4lp9ems6sjrkp3dycy0d7x",
|
|
496
546
|
chain: "XRD",
|
|
@@ -941,6 +991,16 @@ export const list = {
|
|
|
941
991
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.rst-resource_rdx1t56e5z78yxa5shrhu352pk9uczkwj2zqe6fdhy9hgj9058a028knul.png",
|
|
942
992
|
ticker: "rst",
|
|
943
993
|
},
|
|
994
|
+
{
|
|
995
|
+
address: "resource_rdx1t5dhems644u276k9xukahwqjjtaf5wuchde0c7dkvhlss877d6wp3f",
|
|
996
|
+
chain: "XRD",
|
|
997
|
+
chainId: "radix-mainnet",
|
|
998
|
+
decimals: 18,
|
|
999
|
+
identifier: "XRD.RUGI-resource_rdx1t5dhems644u276k9xukahwqjjtaf5wuchde0c7dkvhlss877d6wp3f",
|
|
1000
|
+
logoURI:
|
|
1001
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.rugi-resource_rdx1t5dhems644u276k9xukahwqjjtaf5wuchde0c7dkvhlss877d6wp3f.png",
|
|
1002
|
+
ticker: "RUGI",
|
|
1003
|
+
},
|
|
944
1004
|
{
|
|
945
1005
|
address: "resource_rdx1t4k6qmpv7krl9gxc5v7ss6fl4j7uuelkaftfz4p49ejd0zj0xs2pwn",
|
|
946
1006
|
chain: "XRD",
|
|
@@ -1051,6 +1111,16 @@ export const list = {
|
|
|
1051
1111
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.slg-resource_rdx1t4mtpqwly2p8pes0camm8zsalknyaag2qee9ks34y990zrcjqnmpal.png",
|
|
1052
1112
|
ticker: "SLG",
|
|
1053
1113
|
},
|
|
1114
|
+
{
|
|
1115
|
+
address: "resource_rdx1t5y9jrqywckfuqwj589l9cpfmgqlc2zajm2szwhyn460mv2zyxs5j8",
|
|
1116
|
+
chain: "XRD",
|
|
1117
|
+
chainId: "radix-mainnet",
|
|
1118
|
+
decimals: 18,
|
|
1119
|
+
identifier: "XRD.SPACE-resource_rdx1t5y9jrqywckfuqwj589l9cpfmgqlc2zajm2szwhyn460mv2zyxs5j8",
|
|
1120
|
+
logoURI:
|
|
1121
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.space-resource_rdx1t5y9jrqywckfuqwj589l9cpfmgqlc2zajm2szwhyn460mv2zyxs5j8.png",
|
|
1122
|
+
ticker: "SPACE",
|
|
1123
|
+
},
|
|
1054
1124
|
{
|
|
1055
1125
|
address: "resource_rdx1tka3kqqkjxcpddvcx0u300qt66z3tlzv7swqx9rklp60m5yqry6yzk",
|
|
1056
1126
|
chain: "XRD",
|
|
@@ -1241,6 +1311,16 @@ export const list = {
|
|
|
1241
1311
|
"https://storage.googleapis.com/token-list-swapkit/images/xrd.wif-resource_rdx1tkc3arnc6fdhlc9c9nf39y6mvz4uydwaaws5rl2942atcv90ulw23a.png",
|
|
1242
1312
|
ticker: "WIF",
|
|
1243
1313
|
},
|
|
1314
|
+
{
|
|
1315
|
+
address: "resource_rdx1thy62de5yspm7v3dsqjyc3t24h2j5kf2gcx7lmvnrv26h8dhhp0ryx",
|
|
1316
|
+
chain: "XRD",
|
|
1317
|
+
chainId: "radix-mainnet",
|
|
1318
|
+
decimals: 18,
|
|
1319
|
+
identifier: "XRD.WOLF-resource_rdx1thy62de5yspm7v3dsqjyc3t24h2j5kf2gcx7lmvnrv26h8dhhp0ryx",
|
|
1320
|
+
logoURI:
|
|
1321
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.wolf-resource_rdx1thy62de5yspm7v3dsqjyc3t24h2j5kf2gcx7lmvnrv26h8dhhp0ryx.png",
|
|
1322
|
+
ticker: "WOLF",
|
|
1323
|
+
},
|
|
1244
1324
|
{
|
|
1245
1325
|
address: "resource_rdx1t4kc5ljyrwlxvg54s6gnctt7nwwgx89h9r2gvrpm369s23yhzyyzlx",
|
|
1246
1326
|
chain: "XRD",
|
|
@@ -1290,6 +1370,16 @@ export const list = {
|
|
|
1290
1370
|
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/xrd.xrd.png",
|
|
1291
1371
|
ticker: "XRD",
|
|
1292
1372
|
},
|
|
1373
|
+
{
|
|
1374
|
+
address: "resource_rdx1tkkzy2zg4na22kskk00q50v0kghw89akeh84u60xczxsr0ynes80d5",
|
|
1375
|
+
chain: "XRD",
|
|
1376
|
+
chainId: "radix-mainnet",
|
|
1377
|
+
decimals: 18,
|
|
1378
|
+
identifier: "XRD.xse-resource_rdx1tkkzy2zg4na22kskk00q50v0kghw89akeh84u60xczxsr0ynes80d5",
|
|
1379
|
+
logoURI:
|
|
1380
|
+
"https://storage.googleapis.com/token-list-swapkit/images/xrd.xse-resource_rdx1tkkzy2zg4na22kskk00q50v0kghw89akeh84u60xczxsr0ynes80d5.png",
|
|
1381
|
+
ticker: "xse",
|
|
1382
|
+
},
|
|
1293
1383
|
{
|
|
1294
1384
|
address: "resource_rdx1t4upr78guuapv5ept7d7ptekk9mqhy605zgms33mcszen8l9fac8vf",
|
|
1295
1385
|
chain: "XRD",
|