UNPKG

iso-filecoin

Version:

Isomorphic filecoin abstractions for RPC, signatures, address, token and wallet

38 lines 1.07 kB
/** * Converts a Chain to an Ethereum chain (Metamask) * * @param {import('./types.js').Chain} chain * @returns {import('./types.js').EthereumChain} */ export function toEthereumChain(chain: import("./types.js").Chain): import("./types.js").EthereumChain; /** * Filecoin EVM Mainnet chain * * @type {import('./types.js').Chain<number>} */ export const mainnet: import("./types.js").Chain<number>; /** * Filecoin EVM Calibration testnet chain * * @type {import('./types.js').Chain<number>} */ export const testnet: import("./types.js").Chain<number>; /** * Filecoin EVM Calibration testnet chain * * @type {import('./types.js').Chain<number>} */ export const calibration: import("./types.js").Chain<number>; /** * Filecoin Native chain * * @type {import('./types.js').Chain<string>} */ export const filecoinNative: import("./types.js").Chain<string>; /** * Filecoin Calibration chain * * @type {import('./types.js').Chain<string>} */ export const filecoinNativeCalibration: import("./types.js").Chain<string>; //# sourceMappingURL=chains.d.ts.map