Skip to content

Commit

Permalink
Add cbbtc (#1860)
Browse files Browse the repository at this point in the history
* add cbBTC

* 12.17.0

* bump unit test timeout

* bump test timeout more
  • Loading branch information
matteenm committed Sep 12, 2024
1 parent 98f20e7 commit ff893b4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 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.16.0",
"version": "12.17.0",
"description": "The Uniswap default token list",
"main": "build/uniswap-default.tokenlist.json",
"scripts": {
Expand Down
21 changes: 18 additions & 3 deletions src/tokens/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2320,13 +2320,28 @@
"symbol": "LIT",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/13825/large/logo_200x200.png"
},
},
{
"chainId": 1,
"chainId": 1,
"address": "0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6",
"name": "Polygon Ecosystem Token",
"symbol": "POL",
"symbol": "POL",
"decimals": 18,
"logoURI": "https://assets.coingecko.com/coins/images/32440/large/polygon.png?1698233684"
},
{
"chainId": 1,
"address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
"name": "Coinbase Wrapped BTC",
"symbol": "cbBTC",
"decimals": 8,
"logoURI": "https://assets.coingecko.com/coins/images/40143/large/cbbtc.webp?1726136727",
"extensions": {
"bridgeInfo": {
"8453": {
"tokenAddress": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf"
}
}
}
}
]
2 changes: 1 addition & 1 deletion test/uniswap-default.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const validator = ajv.compile(schema);
let defaultTokenList;

before(async function () {
this.timeout(120000);
this.timeout(250000);
defaultTokenList = await buildList();
});

Expand Down

0 comments on commit ff893b4

Please sign in to comment.