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
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 `pepu` to list of `SUPPORTED_CURRENCIES` and PEPE unchained v2 network chainId to `SUPPORTED_CHAIN_IDS` in `codefi-v2.ts` to allow the `tokenRatesController`to fetch native prices. ([#6803](https://github.com/MetaMask/core/pull/6803))

## [80.0.0]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ export const SUPPORTED_CURRENCIES = [
'bits',
// Satoshi
'sats',
// PEPE Unchained v2
'pepu',
] as const;

/**
Expand Down Expand Up @@ -261,6 +263,8 @@ export const SUPPORTED_CHAIN_IDS = [
'0x92',
// Monad Mainnet
'0x8f',
// PEPE unchained v2
'0x17dcd',
] as const;

/**
Expand Down
Loading