interface GenericSubstrateApi<Rv> {
    call: GenericRuntimeApis<Rv>;
    consts: GenericChainConsts<Rv>;
    errors: GenericChainErrors<Rv>;
    events: GenericChainEvents<Rv, string, string, any>;
    query: GenericChainStorage<Rv>;
    rpc: GenericJsonRpcApis<Rv>;
    tx: GenericChainTx<Rv, AnyFunc>;
}

Type Parameters

Properties

events: GenericChainEvents<Rv, string, string, any>