iso-filecoin
Version:
Isomorphic filecoin abstractions for RPC, signatures, address, token and wallet
32 lines • 845 B
TypeScript
/**
* 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}
*/
export const mainnet: import("./types.js").Chain;
/**
* Filecoin EVM Calibration testnet chain
*
* @type {import('./types.js').Chain}
*/
export const testnet: import("./types.js").Chain;
/**
* Filecoin Native chain
*
* @type {import('./types.js').Chain}
*/
export const filecoinNative: import("./types.js").Chain;
/**
* Filecoin Calibration chain
*
* @type {import('./types.js').Chain}
*/
export const filecoinNativeCalibration: import("./types.js").Chain;
//# sourceMappingURL=chains.d.ts.map