BurnMemo
BurnMemo = {
Erc20Convert: {ckerc20_withdrawal_id:bigint;to_address:string; }; } | {Erc20GasFee: {ckerc20_token_symbol:string;ckerc20_withdrawal_amount:bigint;to_address:string; }; } | {Convert: {to_address:string; }; }
Defined in: packages/canisters/src/declarations/cketh/minter.d.ts:57
Type Declaration
Section titled “Type Declaration”{ Erc20Convert: { ckerc20_withdrawal_id: bigint; to_address: string; }; }
Erc20Convert
Section titled “Erc20Convert”Erc20Convert:
object
The minter processed a ckERC20 withdrawal request.
Erc20Convert.ckerc20_withdrawal_id
Section titled “Erc20Convert.ckerc20_withdrawal_id”ckerc20_withdrawal_id:
bigint
ckETH ledger burn index identifying the burn to pay for the transaction fee.
Erc20Convert.to_address
Section titled “Erc20Convert.to_address”to_address:
string
The destination of the withdrawal request.
{ Erc20GasFee: { ckerc20_token_symbol: string; ckerc20_withdrawal_amount: bigint; to_address: string; }; }
Erc20GasFee
Section titled “Erc20GasFee”Erc20GasFee:
object
The minter processed a ckERC20 withdrawal request and that burn pays the transaction fee.
Erc20GasFee.ckerc20_token_symbol
Section titled “Erc20GasFee.ckerc20_token_symbol”ckerc20_token_symbol:
string
ckERC20 token symbol of the withdrawal request.
Erc20GasFee.ckerc20_withdrawal_amount
Section titled “Erc20GasFee.ckerc20_withdrawal_amount”ckerc20_withdrawal_amount:
bigint
The amount of the ckERC20 withdrawal request.
Erc20GasFee.to_address
Section titled “Erc20GasFee.to_address”to_address:
string
The destination of the withdrawal request.
{ Convert: { to_address: string; }; }
Convert
Section titled “Convert”Convert:
object
The minter processed a withdrawal request.
Convert.to_address
Section titled “Convert.to_address”to_address:
string
The destination of the withdrawal request.