Skip to content

Commit

Permalink
Add usdzc (#1884)
Browse files Browse the repository at this point in the history
* add USDzC

* 12.24.0
  • Loading branch information
matteenm authored Nov 6, 2024
1 parent b6772fc commit 4067ee5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
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.23.0",
"version": "12.24.0",
"description": "The Uniswap default token list",
"main": "build/uniswap-default.tokenlist.json",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/buildList.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const base = require("./tokens/base.json");
const blast = require("./tokens/blast.json");
const zksync = require("./tokens/zksync.json");
const worldchain = require("./tokens/worldchain.json");

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

module.exports = function buildList() {
Expand Down Expand Up @@ -50,6 +50,7 @@ module.exports = function buildList() {
...blast,
...zksync,
...worldchain,
...zora,
]
// sort them by symbol for easy readability
.sort((t1, t2) => {
Expand Down
10 changes: 10 additions & 0 deletions src/tokens/zora.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"chainId": 7777777,
"address": "0xCccCCccc7021b32EBb4e8C08314bD62F7c653EC4",
"name": "USD Coin (Bridged from Ethereum)",
"symbol": "USDzC",
"decimals": 6,
"logoURI": "https://assets.coingecko.com/coins/images/35218/large/USDC_Icon.png?1707908537"
}
]

0 comments on commit 4067ee5

Please sign in to comment.