Skip to content

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

{ Erc20Convert: { ckerc20_withdrawal_id: bigint; to_address: string; }; }

Erc20Convert: object

The minter processed a ckERC20 withdrawal request.

ckerc20_withdrawal_id: bigint

ckETH ledger burn index identifying the burn to pay for the transaction fee.

to_address: string

The destination of the withdrawal request.

{ Erc20GasFee: { ckerc20_token_symbol: string; ckerc20_withdrawal_amount: bigint; to_address: string; }; }

Erc20GasFee: object

The minter processed a ckERC20 withdrawal request and that burn pays the transaction fee.

ckerc20_token_symbol: string

ckERC20 token symbol of the withdrawal request.

ckerc20_withdrawal_amount: bigint

The amount of the ckERC20 withdrawal request.

to_address: string

The destination of the withdrawal request.

{ Convert: { to_address: string; }; }

Convert: object

The minter processed a withdrawal request.

to_address: string

The destination of the withdrawal request.