mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
The `network` store of the network controller crams two types of data into one place. It roughly tracks whether we have enough information to make requests to the network and whether the network is capable of receiving requests, but it also stores the ID of the network (as obtained via `net_version`). Generally we shouldn't be using the network ID for anything, as it has been completely replaced by chain ID, which all custom RPC endpoints have been required to support for over a year now. However, as the network ID is used in various places within the extension codebase, removing it entirely would be a non-trivial effort. So, minimally, this commit splits `network` into two stores: `networkId` and `networkStatus`. But it also expands the concept of network status. Previously, the network was in one of two states: "loading" and "not-loading". But now it can be in one of four states: - `available`: The network is able to receive and respond to requests. - `unavailable`: The network is not able to receive and respond to requests for unknown reasons. - `blocked`: The network is actively blocking requests based on the user's geolocation. (This is specific to Infura.) - `unknown`: We don't know whether the network can receive and respond to requests, either because we haven't checked or we tried to check and were unsuccessful. This commit also changes how the network status is determined — specifically, how many requests are used to determine that status, when they occur, and whether they are awaited. Previously, the network controller would make 2 to 3 requests during the course of running `lookupNetwork`. * First, if it was an Infura network, it would make a request for `eth_blockNumber` to determine whether Infura was blocking requests or not, then emit an appropriate event. This operation was not awaited. * Then, regardless of the network, it would fetch the network ID via `net_version`. This operation was awaited. * Finally, regardless of the network, it would fetch the latest block via `eth_getBlockByNumber`, then use the result to determine whether the network supported EIP-1559. This operation was awaited. Now: * One fewer request is made, specifically `eth_blockNumber`, as we don't need to make an extra request to determine whether Infura is blocking requests; we can reuse `eth_getBlockByNumber`; * All requests are awaited, which makes `lookupNetwork` run fully in-band instead of partially out-of-band; and * Both requests for `net_version` and `eth_getBlockByNumber` are performed in parallel to make `lookupNetwork` run slightly faster.
177 lines
3.0 KiB
JavaScript
177 lines
3.0 KiB
JavaScript
// Migrations must start at version 1 or later.
|
|
// They are objects with a `version` number
|
|
// and a `migrate` function.
|
|
//
|
|
// The `migrate` function receives the previous
|
|
// config data format, and returns the new one.
|
|
|
|
import m002 from './002';
|
|
import m003 from './003';
|
|
import m004 from './004';
|
|
import m005 from './005';
|
|
import m006 from './006';
|
|
import m007 from './007';
|
|
import m008 from './008';
|
|
import m009 from './009';
|
|
import m010 from './010';
|
|
import m011 from './011';
|
|
import m012 from './012';
|
|
import m013 from './013';
|
|
import m014 from './014';
|
|
import m015 from './015';
|
|
import m016 from './016';
|
|
import m017 from './017';
|
|
import m018 from './018';
|
|
import m019 from './019';
|
|
import m020 from './020';
|
|
import m021 from './021';
|
|
import m022 from './022';
|
|
import m023 from './023';
|
|
import m024 from './024';
|
|
import m025 from './025';
|
|
import m026 from './026';
|
|
import m027 from './027';
|
|
import m028 from './028';
|
|
import m029 from './029';
|
|
import m030 from './030';
|
|
import m031 from './031';
|
|
import m032 from './032';
|
|
import m033 from './033';
|
|
import m034 from './034';
|
|
import m035 from './035';
|
|
import m036 from './036';
|
|
import m037 from './037';
|
|
import m038 from './038';
|
|
import m039 from './039';
|
|
import m040 from './040';
|
|
import m041 from './041';
|
|
import m042 from './042';
|
|
import m043 from './043';
|
|
import m044 from './044';
|
|
import m045 from './045';
|
|
import m046 from './046';
|
|
import m047 from './047';
|
|
import m048 from './048';
|
|
import m049 from './049';
|
|
import m050 from './050';
|
|
import m051 from './051';
|
|
import m052 from './052';
|
|
import m053 from './053';
|
|
import m054 from './054';
|
|
import m055 from './055';
|
|
import m056 from './056';
|
|
import m057 from './057';
|
|
import m058 from './058';
|
|
import m059 from './059';
|
|
import m060 from './060';
|
|
import m061 from './061';
|
|
import m062 from './062';
|
|
import m063 from './063';
|
|
import m064 from './064';
|
|
import m065 from './065';
|
|
import m066 from './066';
|
|
import m067 from './067';
|
|
import m068 from './068';
|
|
import m069 from './069';
|
|
import m070 from './070';
|
|
import m071 from './071';
|
|
import m072 from './072';
|
|
import m073 from './073';
|
|
import m074 from './074';
|
|
import m075 from './075';
|
|
import m076 from './076';
|
|
import m077 from './077';
|
|
import * as m078 from './078';
|
|
import m079 from './079';
|
|
import m080 from './080';
|
|
import * as m081 from './081';
|
|
import * as m082 from './082';
|
|
import * as m083 from './083';
|
|
|
|
const migrations = [
|
|
m002,
|
|
m003,
|
|
m004,
|
|
m005,
|
|
m006,
|
|
m007,
|
|
m008,
|
|
m009,
|
|
m010,
|
|
m011,
|
|
m012,
|
|
m013,
|
|
m014,
|
|
m015,
|
|
m016,
|
|
m017,
|
|
m018,
|
|
m019,
|
|
m020,
|
|
m021,
|
|
m022,
|
|
m023,
|
|
m024,
|
|
m025,
|
|
m026,
|
|
m027,
|
|
m028,
|
|
m029,
|
|
m030,
|
|
m031,
|
|
m032,
|
|
m033,
|
|
m034,
|
|
m035,
|
|
m036,
|
|
m037,
|
|
m038,
|
|
m039,
|
|
m040,
|
|
m041,
|
|
m042,
|
|
m043,
|
|
m044,
|
|
m045,
|
|
m046,
|
|
m047,
|
|
m048,
|
|
m049,
|
|
m050,
|
|
m051,
|
|
m052,
|
|
m053,
|
|
m054,
|
|
m055,
|
|
m056,
|
|
m057,
|
|
m058,
|
|
m059,
|
|
m060,
|
|
m061,
|
|
m062,
|
|
m063,
|
|
m064,
|
|
m065,
|
|
m066,
|
|
m067,
|
|
m068,
|
|
m069,
|
|
m070,
|
|
m071,
|
|
m072,
|
|
m073,
|
|
m074,
|
|
m075,
|
|
m076,
|
|
m077,
|
|
m078,
|
|
m079,
|
|
m080,
|
|
m081,
|
|
m082,
|
|
m083,
|
|
];
|
|
|
|
export default migrations;
|