Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tokens #1871

Merged
merged 4 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uniswap/default-token-list",
"version": "12.19.0",
"version": "12.20.0",
"description": "The Uniswap default token list",
"main": "build/uniswap-default.tokenlist.json",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/buildList.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const sepolia = require("./tokens/sepolia.json");
const avalanche = require("./tokens/avalanche.json");
const base = require("./tokens/base.json");
const blast = require("./tokens/blast.json");
const zksync = require("./tokens/zksync.json");

const bridgeUtils = require("@uniswap/token-list-bridge-utils");

Expand Down Expand Up @@ -46,6 +47,7 @@ module.exports = function buildList() {
...avalanche,
...base,
...blast,
...zksync,
]
// sort them by symbol for easy readability
.sort((t1, t2) => {
Expand Down
8 changes: 8 additions & 0 deletions src/tokens/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,13 @@
"symbol": "cbBTC",
"decimals": 8,
"logoURI": "https://assets.coingecko.com/coins/images/40143/standard/cbbtc.webp"
},
{
"chainId": 8453,
"address": "0xA88594D404727625A9437C3f886C7643872296AE",
"name": "Moonwell",
"symbol": "WELL",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/26133/large/WELL.png?1696525221"
}
]
24 changes: 24 additions & 0 deletions src/tokens/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2336,5 +2336,29 @@
"symbol": "cbBTC",
"decimals": 8,
"logoURI": "https://assets.coingecko.com/coins/images/40143/standard/cbbtc.webp"
},
{
"chainId": 1,
"address": "0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB",
"name": "CoW Protocol",
"symbol": "COW",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/24384/large/CoW-token_logo.png?1719524382"
},
{
"chainId": 1,
"address": "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
"name": "USDS Stablecoin",
"symbol": "USDS",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/39926/large/usds.webp?1726666683"
},
{
"chainId": 1,
"address": "0x56072C95FAA701256059aa122697B133aDEd9279",
"name": "SKY Governance Token",
"symbol": "SKY",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/39925/large/sky.jpg?1724827980"
}
]
10 changes: 10 additions & 0 deletions src/tokens/zksync.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"chainId": 324,
"address": "0x5A7d6b2F92C77FAD6CCaBd7EE0624E64907Eaf3E",
"name": "ZKsync",
"symbol": "ZK",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/38043/large/ZKTokenBlack.png?17186145029"
}
]
Loading