Skip to content

Commit

Permalink
chore: list cbBTC on eth and base (#10675)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR adds a new ERC20 token `cbBTC` with ChainId.BASE in `base.ts`
and ChainId.ETHEREUM in `eth.ts`.

### Detailed summary
- Added `cbBTC` ERC20 token with ChainId.BASE in `base.ts`
- Added `cbBTC` ERC20 token with ChainId.ETHEREUM in `eth.ts`

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
ChefBingbong authored Sep 13, 2024
1 parent 0110b4e commit c02750d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,12 @@ export const baseTokens = {
'eUSD',
'https://reserve.org',
),
cbBTC: new ERC20Token(
ChainId.BASE,
'0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf',
8,
'Coinbase Wrapped BTC',
'cbBTC',
'https://www.coinbase.com/',
),
}
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,4 +561,12 @@ export const ethereumTokens = {
'Orderly Network',
'https://orderly.network/',
),
cbBTC: new ERC20Token(
ChainId.ETHEREUM,
'0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf',
8,
'cbBTC',
'Coinbase Wrapped BTC',
'https://www.coinbase.com/',
),
}

0 comments on commit c02750d

Please sign in to comment.