TxFinalizedStatus
TxFinalizedStatus = {
Success: {effective_transaction_fee: [] | [bigint];transaction_hash:string; }; } | {Reimbursed: {reimbursed_amount:bigint;reimbursed_in_block:bigint;transaction_hash:string; }; } | {PendingReimbursement:EthTransaction; }
Defined in: packages/cketh/src/candid/minter.d.ts:546
Status of a finalized transaction.
Type Declaration
Section titled “Type Declaration”{ Success: { effective_transaction_fee: [] | [bigint]; transaction_hash: string; }; }
Success
Section titled “Success”Success:
object
Transaction was successful.
Success.effective_transaction_fee
Section titled “Success.effective_transaction_fee”effective_transaction_fee: [] | [
bigint]
Success.transaction_hash
Section titled “Success.transaction_hash”transaction_hash:
string
{ Reimbursed: { reimbursed_amount: bigint; reimbursed_in_block: bigint; transaction_hash: string; }; }
Reimbursed
Section titled “Reimbursed”Reimbursed:
object
Transaction failed, user got reimbursed.
Reimbursed.reimbursed_amount
Section titled “Reimbursed.reimbursed_amount”reimbursed_amount:
bigint
Reimbursed.reimbursed_in_block
Section titled “Reimbursed.reimbursed_in_block”reimbursed_in_block:
bigint
Reimbursed.transaction_hash
Section titled “Reimbursed.transaction_hash”transaction_hash:
string
{ PendingReimbursement: EthTransaction; }
PendingReimbursement
Section titled “PendingReimbursement”PendingReimbursement:
EthTransaction
Transaction failed and will be reimbursed,