Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add berachain #5303

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
2 changes: 2 additions & 0 deletions packages/assets-controllers/src/AssetsContractController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export const SINGLE_CALL_BALANCES_ADDRESS_BY_CHAINID = {
'0x6aa75276052d96696134252587894ef5ffa520af',
[SupportedTokenDetectionNetworks.moonriver]:
'0x6aa75276052d96696134252587894ef5ffa520af',
[SupportedTokenDetectionNetworks.berachain]:
'0xdDD42f96648A1c1Fdd94b6d0a1A390bb9d85CCB3',
} as const satisfies Record<Hex, string>;

export const STAKING_CONTRACT_ADDRESS_BY_CHAINID = {
Expand Down
2 changes: 2 additions & 0 deletions packages/assets-controllers/src/assetsUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ export enum SupportedTokenDetectionNetworks {
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/naming-convention
moonriver = '0x505', // decimal: 1285
// bera chain
berachain = '0x138de',
}

/**
Expand Down
Loading