Type alias AnchoringTransactionWithReceipt

AnchoringTransactionWithReceipt: TransactionWithReceipt & {
    systemConfirmationProof: ((blockchainRid) => Promise<Operation>);
}

Type declaration

  • systemConfirmationProof: ((blockchainRid) => Promise<Operation>)

    Used to create a proof that this operation happened on this blockchain

    Returns

    a proof that this operation happened on the blockchain.

      • (blockchainRid): Promise<Operation>
      • Parameters

        • blockchainRid: BufferId

          the rid of the blockchain on which the produced proof will be validated

        Returns Promise<Operation>