The base smart contract info

interface ContractInfoFields<T> {
    address: string;
    chainId: string;
    results?: T;
}

Type Parameters

  • T extends Record<string, unknown> = Record<string, unknown>

Properties

address: string

The address of the smart contract

chainId: string

The chain id of the smart contract

results?: T

The ABI of the smart contract

Generated using TypeDoc