-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathtokenList.ts
More file actions
79 lines (76 loc) · 1.93 KB
/
tokenList.ts
File metadata and controls
79 lines (76 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import ETHSvg from "@/assets/svgs/bridge/network-mainnet.svg?url"
const TOKEN_LIST = [
{
name: "SCR",
logoURI: "/imgs/token/scr.svg",
// href: "https://scrollscan.com/token/0xd29687c813d741e2f938f4ac377128810e217b1b",
href: "/SCR-sSCR",
},
{
name: "ETH/WETH",
logoURI: ETHSvg,
href: "/bridge?token=ETH",
},
{
name: "wstETH",
logoURI: "/imgs/sessions/tokens/wstETH.svg",
href: "/bridge?token=wstETH",
},
{
name: "weETH",
logoURI: "/imgs/sessions/tokens/weETH.png",
href: "https://app.ether.fi/weeth",
},
{
name: "wrsETH",
logoURI: "/imgs/sessions/tokens/wrsETH.svg",
href: "https://kelpdao.xyz/bridge-wrap/",
},
{
name: "USDC",
logoURI: "https://scroll-tech.github.io/token-list/data/USDC/logo.svg",
href: "/bridge?token=USDC",
},
{
name: "USDT",
logoURI: "https://scroll-tech.github.io/token-list/data/USDT/logo.svg",
href: "/bridge?token=USDT",
},
{
name: "USDQ",
logoURI: "/imgs/sessions/tokens/USDQ.svg",
href: "https://app.quill.finance/borrow",
},
{
name: "sUSDe/USDe",
logoURI: "/imgs/sessions/tokens/sUSDe.svg",
href: "https://app.ethena.fi/buy",
},
// {
// name: "WBTC",
// logoURI: "/imgs/sessions/tokens/WBTC.svg",
// href: "/bridge?token=WBTC",
// },
// {
// name: "SolvBTC",
// logoURI: "/imgs/sessions/tokens/solvBTC.png",
// href: "https://app.solv.finance/solvbtc?network=ethereum",
// },
{
name: "STONE",
logoURI: "/imgs/sessions/tokens/stone-white.svg",
href: "https://poc.routerintents.com/apps/stakestone",
},
// {
// name: "pufETH",
// logoURI: "https://scroll-tech.github.io/token-list/data/PufETH/logo.svg",
// href: "/bridge?token=PufETH",
// },
// {
// name: "agETH/ agETHWrapper",
// logoURI: "/imgs/sessions/tokens/agETH.png",
// href: "https://kelpdao.xyz/defi/",
// narrow: true,
// },
]
export default TOKEN_LIST