Skip to content

MintMemo

MintMemo = { ReimburseWithdrawal: { withdrawal_id: bigint; }; } | { ReimburseTransaction: { tx_hash: string; withdrawal_id: bigint; }; } | { Convert: { from_address: string; log_index: bigint; tx_hash: string; }; }

Defined in: packages/canisters/src/declarations/cketh/minter.d.ts:485

{ ReimburseWithdrawal: { withdrawal_id: bigint; }; }

ReimburseWithdrawal: object

The minter failed to process a withdrawal request, so no transaction was issued, but some reimbursement was made.

withdrawal_id: bigint

The id corresponding to the withdrawal request.

{ ReimburseTransaction: { tx_hash: string; withdrawal_id: bigint; }; }

ReimburseTransaction: object

tx_hash: string

Hash of the failed transaction.

withdrawal_id: bigint

The id corresponding to the withdrawal request.

{ Convert: { from_address: string; log_index: bigint; tx_hash: string; }; }

Convert: object

The minter received some ETH or ERC20 token.

from_address: string

The sender of the ETH or ERC20 token.

log_index: bigint

Integer of the log index position in the block.

tx_hash: string

Hash of the transaction.