Skip to content

Commit

Permalink
add tokens (#1871)
Browse files Browse the repository at this point in the history
* add tokens

* 12.20.0

* update names

* update name
  • Loading branch information
matteenm authored Oct 8, 2024
1 parent 650c4ca commit e7515e4
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 1 deletion.
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"
}
]

0 comments on commit e7515e4

Please sign in to comment.