Interface GenericContractApi<Rv, ChainApi>

interface GenericContractApi<Rv, ChainApi> {
    constructorQuery: GenericConstructorQuery<ChainApi[Rv]>;
    constructorTx: GenericConstructorTx<ChainApi[Rv]>;
    events: GenericContractEvents<ChainApi[Rv]>;
    query: GenericContractQuery<ChainApi[Rv]>;
    tx: GenericContractTx<ChainApi[Rv]>;
    types: {
        ChainApi: ChainApi[Rv];
        LangError: any;
    };
}

Type Parameters

Properties

constructorQuery: GenericConstructorQuery<ChainApi[Rv]>
types: {
    ChainApi: ChainApi[Rv];
    LangError: any;
}