diff --git a/packages/assets-controllers/CHANGELOG.md b/packages/assets-controllers/CHANGELOG.md index 046e34cdf4f..ec5b7767c90 100644 --- a/packages/assets-controllers/CHANGELOG.md +++ b/packages/assets-controllers/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Add CHZ (0x15b38) mapping to eip155:88888/erc20:0x677F7e16C7Dd57be1D4C8aD1244883214953DC47 ([#7794](https://github.com/MetaMask/core/pull/7794)) + ## [99.2.0] ### Added @@ -17,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Bump `@metamask/transaction-controller` from `^62.11.0` to `^62.12.0` ([#7775](https://github.com/MetaMask/core/pull/7775)) - Simplify TokenListController initialization ([#7740](https://github.com/MetaMask/core/pull/7740)) - Bump `@metamask/storage-service` from `^0.0.1` to `^1.0.0` ([#7797](https://github.com/MetaMask/core/pull/7797)) - Bump `@metamask/transaction-controller` from `^62.11.0` to `^62.13.0` ([#7775](https://github.com/MetaMask/core/pull/7775), [#7802](https://github.com/MetaMask/core/pull/7802)) @@ -25,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Removed token-search-discovery-controller package ([#7789](https://github.com/MetaMask/core/pull/7789)) +- Adds CHZ (0x15b38) mapping to eip155:88888/erc20:0x677F7e16C7Dd57be1D4C8aD1244883214953DC47 ([#7794](https://github.com/MetaMask/core/pull/7794)) ## [99.1.0] diff --git a/packages/assets-controllers/src/multicall.ts b/packages/assets-controllers/src/multicall.ts index 00695d88757..5b81baac7af 100644 --- a/packages/assets-controllers/src/multicall.ts +++ b/packages/assets-controllers/src/multicall.ts @@ -173,7 +173,7 @@ const MULTICALL_CONTRACT_BY_CHAINID = { '0xb02113d3f': '0xcA11bde05977b3631167028862bE2a173976CA11', '0xdad': '0xcA11bde05977b3631167028862bE2a173976CA11', '0xdae': '0xcA11bde05977b3631167028862bE2a173976CA11', - '0x15b38': '0xcA11bde05977b3631167028862bE2a173976CA11', + '0x15b38': '0x0E6a1Df694c4be9BFFC4D76f2B936bB1A1df7fAC', '0x15b32': '0xcA11bde05977b3631167028862bE2a173976CA11', '0x45c': '0xcA11bde05977b3631167028862bE2a173976CA11', '0x45b': '0xcA11bde05977b3631167028862bE2a173976CA11', diff --git a/packages/assets-controllers/src/token-prices-service/codefi-v2.ts b/packages/assets-controllers/src/token-prices-service/codefi-v2.ts index 9496053cab2..433ed0ccdb2 100644 --- a/packages/assets-controllers/src/token-prices-service/codefi-v2.ts +++ b/packages/assets-controllers/src/token-prices-service/codefi-v2.ts @@ -233,6 +233,7 @@ const chainIdToNativeTokenAddress: Record = { '0x64': '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d', // Gnosis '0x1e': '0x542fda317318ebf1d3deaf76e0b632741a7e677d', // Rootstock Mainnet - Native symbol: RBTC '0x2611': '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee', // Plasma mainnet - native symbol: XPL + '0x15b38': '0x677F7e16C7Dd57be1D4C8aD1244883214953DC47', // Chiliz Mainnet - Native symbol: CHZ }; /** @@ -311,6 +312,7 @@ export const SPOT_PRICES_SUPPORT_INFO = { '0x15f900': 'eip155:1440000/erc20:0x0000000000000000000000000000000000000000', // xrpl-evm - native symbol: XRP '0x4e454152': 'eip155:1313161554/slip44:60', // Aurora Mainnet (Ethereum L2 on NEAR) - Native symbol: ETH '0x63564c40': 'eip155:1666600000/slip44:1023', // Harmony Mainnet Shard 0 - Native symbol: ONE + '0x15b38': 'eip155:88888/erc20:0x677F7e16C7Dd57be1D4C8aD1244883214953DC47', // Chiliz Mainnet - Native symbol: CHZ } as const; // MISSING CHAINS WITH NO NATIVE ASSET PRICES