@contractjs/erc20
Version:
A TypeScript utility library for ERC20 contracts.
6 lines • 305 B
TypeScript
import { Chain } from "viem";
import { supportedChains } from "../constants";
export type ViemChainName = keyof typeof supportedChains;
export type ChainIdentifier = number | ViemChainName | Chain;
export declare const normalizeChain: (chain: ChainIdentifier) => Chain;
//# sourceMappingURL=index.d.ts.map