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
Type Declaration
Section titled “Type Declaration”{ ReimburseWithdrawal: { withdrawal_id: bigint; }; }
ReimburseWithdrawal
Section titled “ReimburseWithdrawal”ReimburseWithdrawal:
object
The minter failed to process a withdrawal request, so no transaction was issued, but some reimbursement was made.
ReimburseWithdrawal.withdrawal_id
Section titled “ReimburseWithdrawal.withdrawal_id”withdrawal_id:
bigint
The id corresponding to the withdrawal request.
{ ReimburseTransaction: { tx_hash: string; withdrawal_id: bigint; }; }
ReimburseTransaction
Section titled “ReimburseTransaction”ReimburseTransaction:
object
ReimburseTransaction.tx_hash
Section titled “ReimburseTransaction.tx_hash”tx_hash:
string
Hash of the failed transaction.
ReimburseTransaction.withdrawal_id
Section titled “ReimburseTransaction.withdrawal_id”withdrawal_id:
bigint
The id corresponding to the withdrawal request.
{ Convert: { from_address: string; log_index: bigint; tx_hash: string; }; }
Convert
Section titled “Convert”Convert:
object
The minter received some ETH or ERC20 token.
Convert.from_address
Section titled “Convert.from_address”from_address:
string
The sender of the ETH or ERC20 token.
Convert.log_index
Section titled “Convert.log_index”log_index:
bigint
Integer of the log index position in the block.
Convert.tx_hash
Section titled “Convert.tx_hash”tx_hash:
string
Hash of the transaction.