⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
4 changes: 4 additions & 0 deletions packages/assets-controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True that we added an object property, but what we are doing from the perspective of a package consumer is changing the SPOT_PRICES_SUPPORT_INFO exported variable. Should this line go under the CHANGED category?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm actually, the constant I was referring to doesn't seem to be exported by the package, so in theory this change is transparent to consumers

Copy link
Contributor

@mcmire mcmire Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True. What effect does this have on the service class? Were there errors in attempting to use this chain before? Does it change the return type of something? etc.

Copy link
Contributor

@mcmire mcmire Feb 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to my comment in #7688 (comment), what do you think about this?

Suggested change
- Add CHZ (0x15b38) mapping to eip155:88888/erc20:0x677f7e16c7dd57be1d4c8ad1244883214953dc47 ([#7794](https://github.com/MetaMask/core/pull/7794))
- `CodefiTokenPricesServiceV2` now supports fetching prices of CHZ on Chiliz Mainnet (chain `0xdef1`) ([#7794](https://github.com/MetaMask/core/pull/7794))


### Changed

- Bump `@metamask/core-backend` from `^5.0.0` to `^5.1.0` ([#7817](https://github.com/MetaMask/core/pull/7817))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,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:0x0000000000000000000000000000000000000000', // Chiliz Mainnet - Native symbol: CHZ
} as const;

// MISSING CHAINS WITH NO NATIVE ASSET PRICES
Expand Down
Loading