mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
0bc1eeaf37
* Deprecating Rinkeby, setting default debug network to Goerli * Deprecating Ropsten and Kovan * Conflict fix * Remove unused localization, test fixes * Add migration for moving used deprecated testnets to custom networks * Fix migrator test * Add more unit tests * Migration updates provider type to rpc if deprecated network is selected * Migration fully and correctly updates the provider if selected network is a deprecated testnet * Continue to show deprecation warning on each of rinkeby, ropsten and kovan * Add rpcUrl deprecation message to loading screen * Removing mayBeFauceting prop Co-authored-by: Dan Miller <danjm.com@gmail.com>
19 lines
918 B
JavaScript
19 lines
918 B
JavaScript
export const SINGLE_CALL_BALANCES_ADDRESS =
|
|
'0xb1f8e55c7f64d203c1400b9d8555d050f94adf39';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_GOERLI =
|
|
'0x9788C4E93f9002a7ad8e72633b11E8d1ecd51f9b';
|
|
// TODO(SEPOLIA) There is currently no balance call address for Sepolia
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_SEPOLIA = '';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_BSC =
|
|
'0x2352c63A83f9Fd126af8676146721Fa00924d7e4';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_OPTIMISM =
|
|
'0xB1c568e9C3E6bdaf755A60c7418C269eb11524FC';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_POLYGON =
|
|
'0x2352c63A83f9Fd126af8676146721Fa00924d7e4';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_AVALANCHE =
|
|
'0xD023D153a0DFa485130ECFdE2FAA7e612EF94818';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_FANTOM =
|
|
'0x07f697424ABe762bB808c109860c04eA488ff92B';
|
|
export const SINGLE_CALL_BALANCES_ADDRESS_ARBITRUM =
|
|
'0x151E24A486D7258dd7C33Fb67E4bB01919B7B32c';
|