263 lines
9.3 KiB
JavaScript
263 lines
9.3 KiB
JavaScript
import { accessListify } from "../transaction/index.js";
|
|
import { getStore, getBigInt, setStore, throwArgumentError } from "../utils/index.js";
|
|
import { EnsPlugin, GasCostPlugin } from "./plugins-network.js";
|
|
/* * * *
|
|
// Networks which operation against an L2 can use this plugin to
|
|
// specify how to access L1, for the purpose of resolving ENS,
|
|
// for example.
|
|
export class LayerOneConnectionPlugin extends NetworkPlugin {
|
|
readonly provider!: Provider;
|
|
// @TODO: Rename to ChainAccess and allow for connecting to any chain
|
|
constructor(provider: Provider) {
|
|
super("org.ethers.plugins.layer-one-connection");
|
|
defineProperties<LayerOneConnectionPlugin>(this, { provider });
|
|
}
|
|
|
|
clone(): LayerOneConnectionPlugin {
|
|
return new LayerOneConnectionPlugin(this.provider);
|
|
}
|
|
}
|
|
*/
|
|
/* * * *
|
|
export class PriceOraclePlugin extends NetworkPlugin {
|
|
readonly address!: string;
|
|
|
|
constructor(address: string) {
|
|
super("org.ethers.plugins.price-oracle");
|
|
defineProperties<PriceOraclePlugin>(this, { address });
|
|
}
|
|
|
|
clone(): PriceOraclePlugin {
|
|
return new PriceOraclePlugin(this.address);
|
|
}
|
|
}
|
|
*/
|
|
// Networks or clients with a higher need for security (such as clients
|
|
// that may automatically make CCIP requests without user interaction)
|
|
// can use this plugin to anonymize requests or intercept CCIP requests
|
|
// to notify and/or receive authorization from the user
|
|
/* * * *
|
|
export type FetchDataFunc = (req: Frozen<FetchRequest>) => Promise<FetchRequest>;
|
|
export class CcipPreflightPlugin extends NetworkPlugin {
|
|
readonly fetchData!: FetchDataFunc;
|
|
|
|
constructor(fetchData: FetchDataFunc) {
|
|
super("org.ethers.plugins.ccip-preflight");
|
|
defineProperties<CcipPreflightPlugin>(this, { fetchData });
|
|
}
|
|
|
|
clone(): CcipPreflightPlugin {
|
|
return new CcipPreflightPlugin(this.fetchData);
|
|
}
|
|
}
|
|
*/
|
|
const Networks = new Map();
|
|
// @TODO: Add a _ethersNetworkObj variable to better detect network ovjects
|
|
export class Network {
|
|
#props;
|
|
constructor(name, _chainId) {
|
|
const chainId = getBigInt(_chainId);
|
|
const plugins = new Map();
|
|
this.#props = { name, chainId, plugins };
|
|
}
|
|
toJSON() {
|
|
return { name: this.name, chainId: this.chainId };
|
|
}
|
|
get name() { return getStore(this.#props, "name"); }
|
|
set name(value) { setStore(this.#props, "name", value); }
|
|
get chainId() { return getStore(this.#props, "chainId"); }
|
|
set chainId(value) { setStore(this.#props, "chainId", getBigInt(value, "chainId")); }
|
|
get plugins() {
|
|
return Array.from(this.#props.plugins.values());
|
|
}
|
|
attachPlugin(plugin) {
|
|
if (this.#props.plugins.get(plugin.name)) {
|
|
throw new Error(`cannot replace existing plugin: ${plugin.name} `);
|
|
}
|
|
this.#props.plugins.set(plugin.name, plugin.clone());
|
|
return this;
|
|
}
|
|
getPlugin(name) {
|
|
return (this.#props.plugins.get(name)) || null;
|
|
}
|
|
// Gets a list of Plugins which match basename, ignoring any fragment
|
|
getPlugins(basename) {
|
|
return (this.plugins.filter((p) => (p.name.split("#")[0] === basename)));
|
|
}
|
|
clone() {
|
|
const clone = new Network(this.name, this.chainId);
|
|
this.plugins.forEach((plugin) => {
|
|
clone.attachPlugin(plugin.clone());
|
|
});
|
|
return clone;
|
|
}
|
|
/*
|
|
freeze(): Frozen<Network> {
|
|
Object.freeze(this.#props);
|
|
return this;
|
|
}
|
|
|
|
isFrozen(): boolean {
|
|
return Object.isFrozen(this.#props);
|
|
}
|
|
*/
|
|
computeIntrinsicGas(tx) {
|
|
const costs = this.getPlugin("org.ethers.gas-cost") || (new GasCostPlugin());
|
|
let gas = costs.txBase;
|
|
if (tx.to == null) {
|
|
gas += costs.txCreate;
|
|
}
|
|
if (tx.data) {
|
|
for (let i = 2; i < tx.data.length; i += 2) {
|
|
if (tx.data.substring(i, i + 2) === "00") {
|
|
gas += costs.txDataZero;
|
|
}
|
|
else {
|
|
gas += costs.txDataNonzero;
|
|
}
|
|
}
|
|
}
|
|
if (tx.accessList) {
|
|
const accessList = accessListify(tx.accessList);
|
|
for (const addr in accessList) {
|
|
gas += costs.txAccessListAddress + costs.txAccessListStorageKey * accessList[addr].storageKeys.length;
|
|
}
|
|
}
|
|
return gas;
|
|
}
|
|
/**
|
|
* Returns a new Network for the %%network%% name or chainId.
|
|
*/
|
|
static from(network) {
|
|
injectCommonNetworks();
|
|
// Default network
|
|
if (network == null) {
|
|
return Network.from("mainnet");
|
|
}
|
|
// Canonical name or chain ID
|
|
if (typeof (network) === "number") {
|
|
network = BigInt(network);
|
|
}
|
|
if (typeof (network) === "string" || typeof (network) === "bigint") {
|
|
const networkFunc = Networks.get(network);
|
|
if (networkFunc) {
|
|
return networkFunc();
|
|
}
|
|
if (typeof (network) === "bigint") {
|
|
return new Network("unknown", network);
|
|
}
|
|
throwArgumentError("unknown network", "network", network);
|
|
}
|
|
// Clonable with network-like abilities
|
|
if (typeof (network.clone) === "function") {
|
|
const clone = network.clone();
|
|
//if (typeof(network.name) !== "string" || typeof(network.chainId) !== "number") {
|
|
//}
|
|
return clone;
|
|
}
|
|
// Networkish
|
|
if (typeof (network) === "object") {
|
|
if (typeof (network.name) !== "string" || typeof (network.chainId) !== "number") {
|
|
throwArgumentError("invalid network object name or chainId", "network", network);
|
|
}
|
|
const custom = new Network((network.name), (network.chainId));
|
|
if (network.ensAddress || network.ensNetwork != null) {
|
|
custom.attachPlugin(new EnsPlugin(network.ensAddress, network.ensNetwork));
|
|
}
|
|
//if ((<any>network).layerOneConnection) {
|
|
// custom.attachPlugin(new LayerOneConnectionPlugin((<any>network).layerOneConnection));
|
|
//}
|
|
return custom;
|
|
}
|
|
return throwArgumentError("invalid network", "network", network);
|
|
}
|
|
/**
|
|
* Register %%nameOrChainId%% with a function which returns
|
|
* an instance of a Network representing that chain.
|
|
*/
|
|
static register(nameOrChainId, networkFunc) {
|
|
if (typeof (nameOrChainId) === "number") {
|
|
nameOrChainId = BigInt(nameOrChainId);
|
|
}
|
|
const existing = Networks.get(nameOrChainId);
|
|
if (existing) {
|
|
throwArgumentError(`conflicting network for ${JSON.stringify(existing.name)}`, "nameOrChainId", nameOrChainId);
|
|
}
|
|
Networks.set(nameOrChainId, networkFunc);
|
|
}
|
|
}
|
|
// See: https://chainlist.org
|
|
let injected = false;
|
|
function injectCommonNetworks() {
|
|
if (injected) {
|
|
return;
|
|
}
|
|
injected = true;
|
|
/// Register popular Ethereum networks
|
|
function registerEth(name, chainId, options) {
|
|
const func = function () {
|
|
const network = new Network(name, chainId);
|
|
// We use 0 to disable ENS
|
|
if (options.ensNetwork != null) {
|
|
network.attachPlugin(new EnsPlugin(null, options.ensNetwork));
|
|
}
|
|
if (options.priorityFee) {
|
|
// network.attachPlugin(new MaxPriorityFeePlugin(options.priorityFee));
|
|
}
|
|
/*
|
|
if (options.etherscan) {
|
|
const { url, apiKey } = options.etherscan;
|
|
network.attachPlugin(new EtherscanPlugin(url, apiKey));
|
|
}
|
|
*/
|
|
network.attachPlugin(new GasCostPlugin());
|
|
return network;
|
|
};
|
|
// Register the network by name and chain ID
|
|
Network.register(name, func);
|
|
Network.register(chainId, func);
|
|
if (options.altNames) {
|
|
options.altNames.forEach((name) => {
|
|
Network.register(name, func);
|
|
});
|
|
}
|
|
}
|
|
registerEth("mainnet", 1, { ensNetwork: 1, altNames: ["homestead"] });
|
|
registerEth("ropsten", 3, { ensNetwork: 3 });
|
|
registerEth("rinkeby", 4, { ensNetwork: 4 });
|
|
registerEth("goerli", 5, { ensNetwork: 5 });
|
|
registerEth("kovan", 42, { ensNetwork: 42 });
|
|
registerEth("classic", 61, {});
|
|
registerEth("classicKotti", 6, {});
|
|
registerEth("xdai", 100, { ensNetwork: 1 });
|
|
// Polygon has a 35 gwei maxPriorityFee requirement
|
|
registerEth("matic", 137, {
|
|
ensNetwork: 1,
|
|
// priorityFee: 35000000000,
|
|
etherscan: {
|
|
apiKey: "W6T8DJW654GNTQ34EFEYYP3EZD9DD27CT7",
|
|
url: "https:/\/api.polygonscan.com/"
|
|
}
|
|
});
|
|
registerEth("maticMumbai", 80001, {
|
|
// priorityFee: 35000000000,
|
|
etherscan: {
|
|
apiKey: "W6T8DJW654GNTQ34EFEYYP3EZD9DD27CT7",
|
|
url: "https:/\/api-testnet.polygonscan.com/"
|
|
}
|
|
});
|
|
registerEth("bnb", 56, {
|
|
ensNetwork: 1,
|
|
etherscan: {
|
|
apiKey: "EVTS3CU31AATZV72YQ55TPGXGMVIFUQ9M9",
|
|
url: "http:/\/api.bscscan.com"
|
|
}
|
|
});
|
|
registerEth("bnbt", 97, {
|
|
etherscan: {
|
|
apiKey: "EVTS3CU31AATZV72YQ55TPGXGMVIFUQ9M9",
|
|
url: "http:/\/api-testnet.bscscan.com"
|
|
}
|
|
});
|
|
}
|
|
//# sourceMappingURL=network.js.map
|