QueryContractInfoResponse is the response type for the Query/ContractInfo RPC method

interface QueryContractInfoResponse {
    address: string;
    contractInfo: undefined | ContractInfo;
}

Properties

address: string

address is the address of the contract

contractInfo: undefined | ContractInfo