Skip to content

Commit

Permalink
[CHIA-593] - Add bridge CATs to known CAT list (#18064)
Browse files Browse the repository at this point in the history
* [CHIA-593] - Add bridge CATs to known CAT list

* Fix typo
  • Loading branch information
emlowe authored May 23, 2024
1 parent 8a7e023 commit 9f207c2
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions chia/wallet/cat_wallet/cat_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,44 @@
"symbol": "CH21",
}

BASE_WARPED_USDC = {
"asset_id": "fa4a180ac326e67ea289b869e3448256f6af05721f7cf934cb9901baa6b7a99d",
"name": "Base Warped USDC ",
"symbol": "wUSDC.b",
}

BASE_WARPED_MILLIETH = {
"asset_id": "f322a205c034fe28681829fa5a2e483ac421f0952eb1292945c8db06e0a471a6",
"name": "Base Warped milliETH",
"symbol": "wmilliETH.b",
}

ETH_WARPED_USDC = {
"asset_id": "bbb51b246fbec1da1305be31dcf17151ccd0b8231a1ec306d7ce9f5b8c742b9e",
"name": "Ethereum Warped USDC",
"symbol": "wUSDC",
}

ETH_WARPED_MILLIETH = {
"asset_id": "4cb15a8ecc85068fb1f98c09a5e489d1ad61b2af79690ce00f9fc4803c8b597f",
"name": "Ethereum Warped milliETH",
"symbol": "wmilliETH",
}

ETH_WARPED_USDT = {
"asset_id": "634f9f0de1a6c39a2189948b8e61b6852fbf774f73b0e36e143e841c49a0798c",
"name": "Ethereum Warped USDT",
"symbol": "wUSDT",
}

DEFAULT_CATS = {
SPACEBUCKS["asset_id"]: SPACEBUCKS,
MARMOT["asset_id"]: MARMOT,
STABLY_USDS["asset_id"]: STABLY_USDS,
CHIA_HOLIDAY_TOKEN["asset_id"]: CHIA_HOLIDAY_TOKEN,
BASE_WARPED_USDC["asset_id"]: BASE_WARPED_USDC,
BASE_WARPED_MILLIETH["asset_id"]: BASE_WARPED_MILLIETH,
ETH_WARPED_USDC["asset_id"]: ETH_WARPED_USDC,
ETH_WARPED_MILLIETH["asset_id"]: ETH_WARPED_MILLIETH,
ETH_WARPED_USDT["asset_id"]: ETH_WARPED_USDT,
}

0 comments on commit 9f207c2

Please sign in to comment.