UNPKG

viem

Version:

TypeScript Interface for Ethereum

9 lines 460 B
import { type ChainDoesNotSupportContractErrorType } from '../../errors/chain.js'; import type { Chain } from '../../types/chain.js'; export type GetChainContractAddressErrorType = ChainDoesNotSupportContractErrorType; export declare function getChainContractAddress({ blockNumber, chain, contract: name, }: { blockNumber?: bigint | undefined; chain: Chain; contract: string; }): `0x${string}`; //# sourceMappingURL=getChainContractAddress.d.ts.map