mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
Specify that Base is a multilayer network (#20097)
This commit is contained in:
parent
838c8e1aa7
commit
88f294664f
@ -138,6 +138,8 @@ export const CHAIN_IDS = {
|
||||
BSC_TESTNET: '0x61',
|
||||
OPTIMISM: '0xa',
|
||||
OPTIMISM_TESTNET: '0x1a4',
|
||||
BASE: '0x2105',
|
||||
BASE_TESTNET: '0x14a33',
|
||||
POLYGON: '0x89',
|
||||
POLYGON_TESTNET: '0x13881',
|
||||
AVALANCHE: '0xa86a',
|
||||
@ -542,6 +544,8 @@ export const BUYABLE_CHAINS_MAP: {
|
||||
ChainId,
|
||||
| typeof CHAIN_IDS.LOCALHOST
|
||||
| typeof CHAIN_IDS.OPTIMISM_TESTNET
|
||||
| typeof CHAIN_IDS.BASE_TESTNET
|
||||
| typeof CHAIN_IDS.BASE
|
||||
| typeof CHAIN_IDS.BSC_TESTNET
|
||||
| typeof CHAIN_IDS.POLYGON_TESTNET
|
||||
| typeof CHAIN_IDS.AVALANCHE_TESTNET
|
||||
|
@ -1291,11 +1291,22 @@ export function getIsOptimism(state) {
|
||||
);
|
||||
}
|
||||
|
||||
export function getIsBase(state) {
|
||||
return (
|
||||
getCurrentChainId(state) === CHAIN_IDS.BASE ||
|
||||
getCurrentChainId(state) === CHAIN_IDS.BASE_TESTNET
|
||||
);
|
||||
}
|
||||
|
||||
export function getIsOpStack(state) {
|
||||
return getIsOptimism(state) || getIsBase(state);
|
||||
}
|
||||
|
||||
export function getIsMultiLayerFeeNetwork(state) {
|
||||
return getIsOptimism(state);
|
||||
return getIsOpStack(state);
|
||||
}
|
||||
/**
|
||||
* To retrieve the maxBaseFee and priotitFee teh user has set as default
|
||||
* To retrieve the maxBaseFee and priorityFee the user has set as default
|
||||
*
|
||||
* @param {*} state
|
||||
* @returns Boolean
|
||||
|
Loading…
Reference in New Issue
Block a user