@parabolfi/core
Version:
Core utilities for Parabol SDK
9 lines • 457 B
TypeScript
import { Abi, Address } from "viem";
import { ContractTarget, SupportedChainId } from "../config/global";
export declare function getContractAddress(chainId: SupportedChainId, target: ContractTarget): Address;
export declare function getContractAbi(target: ContractTarget): Abi;
export declare function getContractInfo(chainId: SupportedChainId, target: ContractTarget): {
address: Address;
abi: Abi;
};
//# sourceMappingURL=contractHelpers.d.ts.map