Polkadot Apps
    Preparing search index...

    Interface TxResult

    Successful transaction result.

    interface TxResult {
        block: { hash: string; index: number; number: number };
        dispatchError?: unknown;
        events: unknown[];
        ok: boolean;
        txHash: string;
    }
    Index

    Properties

    block: { hash: string; index: number; number: number }

    Block where the transaction was included.

    dispatchError?: unknown

    Dispatch error details when ok is false.

    events: unknown[]

    Raw events emitted by the transaction.

    ok: boolean

    Whether the on-chain dispatch succeeded.

    txHash: string

    Transaction hash.