Skip to content

Commit 6b851a8

Browse files
committed
feat: 🎸 updated popular ts list
1 parent 2be3e18 commit 6b851a8

File tree

1 file changed

+66
-18
lines changed

1 file changed

+66
-18
lines changed

javascript/tokenscript-viewer/src/constants/knownTokenScripts.ts

Lines changed: 66 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@ import {TokenScriptsMeta} from "../providers/databaseProvider";
22

33
export const knownTokenScripts: TokenScriptsMeta[] = [
44
{
5-
tokenScriptId: "ENS",
5+
tokenScriptId: "137-0xB48f53010Acbc0E24D3D12D892E2215879e6fD13",
66
loadType: "resolve",
7-
name: "ENS",
8-
iconUrl: "/assets/tokenscript-icons/ENS.png"
7+
name: "MORCHI",
8+
iconUrl: "https://cdn.jsdelivr.net/gh/SmartTokenLabs/resources/images/logos/MORCHI.png"
99
},
1010
{
11-
tokenScriptId: "DAI",
11+
tokenScriptId: "8217-0x4e3f3a3dba12cec714cba0508a1bab8ead85af31",
1212
loadType: "resolve",
13-
name: "DAI",
14-
iconUrl: "/assets/tokenscript-icons/DAI.png"
13+
name: "Seven Dragons",
14+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/seven-dragon/market-tile.png"
15+
},
16+
{
17+
tokenScriptId: "185-0x80A6da00140C4798bAba3b3f362839b6f87b6fc6",
18+
loadType: "resolve",
19+
name: "Mint Cats",
20+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/mint/market-tile-2.png"
1521
},
1622
{
1723
tokenScriptId: "137-0xD5cA946AC1c1F24Eb26dae9e1A53ba6a02bd97Fe",
@@ -25,6 +31,60 @@ export const knownTokenScripts: TokenScriptsMeta[] = [
2531
name: "SmartCat Loot",
2632
iconUrl: "/assets/tokenscripts/smart-cat/loot-meta/contract.png"
2733
},
34+
// {
35+
// tokenScriptId: "1-0x3c7e352481f4b2fdec1e642a3f0018661c77513d",
36+
// loadType: "resolve",
37+
// name: "DevconVI",
38+
// iconUrl: "https://cdn.jsdelivr.net/gh/SmartTokenLabs/resources/images/logos/devcon-vi.png"
39+
// },
40+
// {
41+
// tokenScriptId: "1-0x0c8b0e8f975bf3dfb99904005385e825a391af81",
42+
// loadType: "resolve",
43+
// name: "Nifty Tailor Suit Up",
44+
// iconUrl: "https://cdn.jsdelivr.net/gh/SmartTokenLabs/resources/images/logos/nifty-tailor-suit-up.png"
45+
// },
46+
{
47+
tokenScriptId: "1-0xDb82c0d91E057E05600C8F8dc836bEb41da6df14",
48+
loadType: "resolve",
49+
name: "SLN Ethereum",
50+
iconUrl: "https://cdn.jsdelivr.net/gh/SmartTokenLabs/resources/images/sln/sln-front-facing-logo-ts.webp"
51+
},
52+
{
53+
tokenScriptId: "137-0x1fe78e67ad10ba3a9583e672cac0480737d1b9f7",
54+
loadType: "resolve",
55+
name: "SLN Polygon",
56+
iconUrl: "https://cdn.jsdelivr.net/gh/SmartTokenLabs/resources/images/sln/sln-front-facing-logo-ts.webp"
57+
},
58+
{
59+
tokenScriptId: "ENS",
60+
loadType: "resolve",
61+
name: "ENS",
62+
iconUrl: "/assets/tokenscript-icons/ENS.png"
63+
},
64+
{
65+
tokenScriptId: "1-0x6b175474e89094c44da98b954eedeac495271d0f",
66+
loadType: "resolve",
67+
name: "DAI",
68+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/dai-logo.svg"
69+
},
70+
{
71+
tokenScriptId: "1-0xdac17f958d2ee523a2206206994597c13d831ec7",
72+
loadType: "resolve",
73+
name: "USDT",
74+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/tether-logo.svg"
75+
},
76+
{
77+
tokenScriptId: "1-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
78+
loadType: "resolve",
79+
name: "USDC",
80+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/usdc-logo.svg"
81+
},
82+
{
83+
tokenScriptId: "1-0x514910771af9ca656af840dff83e8264ecf986ca",
84+
loadType: "resolve",
85+
name: "LINK",
86+
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/chainlink-logo.svg"
87+
},
2888
{
2989
tokenScriptId: "1-0xAFb979d9afAd1aD27C5eFf4E27226E3AB9e5dCC9",
3090
loadType: "resolve",
@@ -43,18 +103,6 @@ export const knownTokenScripts: TokenScriptsMeta[] = [
43103
name: "Redbrick",
44104
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/seven-dragon/market-tile.png"
45105
},*/
46-
{
47-
tokenScriptId: "8217-0x4e3f3a3dba12cec714cba0508a1bab8ead85af31",
48-
loadType: "resolve",
49-
name: "Seven Dragons",
50-
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/seven-dragon/market-tile.png"
51-
},
52-
{
53-
tokenScriptId: "185-0x80A6da00140C4798bAba3b3f362839b6f87b6fc6",
54-
loadType: "resolve",
55-
name: "Mint Cats",
56-
iconUrl: "https://resources.smartlayer.network/smart-token-store/images/mint/market-tile-2.png"
57-
},
58106
];
59107

60108
export const getKnownTokenScriptMetaById = (tsId: string) => {

0 commit comments

Comments
 (0)