Interface PreparationProvider

Description

PrepareProvider is a utility class to output the prepared format of an operation

interface PreparationProvider {
    activate(params): Promise<PreparedOperation>;
    ballot(params): Promise<PreparedOperation>;
    batch(batchParams): Promise<PreparedOperation>;
    contractCall(contractMethod): Promise<PreparedOperation>;
    delegation(params): Promise<PreparedOperation>;
    drainDelegate(params): Promise<PreparedOperation>;
    increasePaidStorage(params): Promise<PreparedOperation>;
    originate(params): Promise<PreparedOperation>;
    proposals(params): Promise<PreparedOperation>;
    registerGlobalConstant(params): Promise<PreparedOperation>;
    reveal(params): Promise<PreparedOperation>;
    smartRollupAddMessages(params): Promise<PreparedOperation>;
    smartRollupOriginate(params): Promise<PreparedOperation>;
    toForge(param): ForgeParams;
    toPreapply(prepared): Promise<PreapplyParams>;
    transaction(params): Promise<PreparedOperation>;
    transferTicket(params): Promise<PreparedOperation>;
    updateConsensusKey(params): Promise<PreparedOperation>;
}

Implemented by

Methods

  • Parameters

    Returns Promise<PreapplyParams>

    a PreapplyParams object

    Description

    Method to convert a PreparedOperation to the params needed for the preapplyOperation method

Generated using TypeDoc