Interface BroadcastedTransaction

interface BroadcastedTransaction {
    error?: string;
    identifier: string | bigint;
    peers?: number;
    result?: string;
    success: boolean;
}

Properties

error?: string

The error message if the transaction was not successfully broadcasted.

identifier: string | bigint

The identifier of the transaction.

peers?: number

The number of peers that the transaction was broadcasted to.

result?: string

The result of the broadcasted transaction.

success: boolean

Whether the transaction was successfully broadcasted.