interface ApiClient {
    getContract: (address: string) => Promise<ContractSchema>;
    getContracts: (opts?: GetContractsOptions) => Promise<ContractSchema[]>;
}

Properties

getContract: (address: string) => Promise<ContractSchema>
getContracts: (opts?: GetContractsOptions) => Promise<ContractSchema[]>