Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/assets-controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,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))
- Add CHZ (0x15b38) mapping to eip155:88888/erc20:0x677F7e16C7Dd57be1D4C8aD1244883214953DC47 ([#7794]())

## [99.1.0]

Expand Down
2 changes: 1 addition & 1 deletion packages/assets-controllers/src/multicall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const MULTICALL_CONTRACT_BY_CHAINID = {
'0xb02113d3f': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0xdad': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0xdae': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0x15b38': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0x15b38': '0x0E6a1Df694c4be9BFFC4D76f2B936bB1A1df7fAC',
'0x15b32': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0x45c': '0xcA11bde05977b3631167028862bE2a173976CA11',
'0x45b': '0xcA11bde05977b3631167028862bE2a173976CA11',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ const chainIdToNativeTokenAddress: Record<Hex, Hex> = {
'0x64': '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d', // Gnosis
'0x1e': '0x542fda317318ebf1d3deaf76e0b632741a7e677d', // Rootstock Mainnet - Native symbol: RBTC
'0x2611': '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee', // Plasma mainnet - native symbol: XPL
'0x15b38': '0x677F7e16C7Dd57be1D4C8aD1244883214953DC47', // Chiliz Mainnet - Native symbol: CHZ
};

/**
Expand Down Expand Up @@ -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
Expand Down
Loading