Skip to content

MintMemo

MintMemo = { Kyt: null; } | { ReimburseWithdrawal: { withdrawal_id: bigint; }; } | { KytFail: { associated_burn_index: [] | [bigint]; kyt_fee: [] | [bigint]; status: [] | [Status]; }; } | { Convert: { kyt_fee: [] | [bigint]; txid: [] | [Uint8Array]; vout: [] | [number]; }; }

Defined in: packages/canisters/src/declarations/ckbtc/minter.d.ts:363

{ Kyt: null; }

Kyt: null

[deprecated] The minter minted accumulated check fees to the KYT provider.

{ ReimburseWithdrawal: { withdrawal_id: bigint; }; }

ReimburseWithdrawal: object

withdrawal_id: bigint

The id corresponding to the withdrawal request, which corresponds to the ledger burn index.

{ KytFail: { associated_burn_index: [] | [bigint]; kyt_fee: [] | [bigint]; status: [] | [Status]; }; }

KytFail: object

[deprecated] The minter failed to check retrieve btc destination address or the destination address is tainted.

associated_burn_index: [] | [bigint]

kyt_fee: [] | [bigint]

The Bitcoin check fee.

status: [] | [Status]

The status of the Bitcoin check.

{ Convert: { kyt_fee: [] | [bigint]; txid: [] | [Uint8Array]; vout: [] | [number]; }; }

Convert: object

The minter converted a single UTXO to ckBTC.

kyt_fee: [] | [bigint]

The Bitcoin check fee.

txid: [] | [Uint8Array]

The transaction ID of the accepted UTXO.

vout: [] | [number]

UTXO’s output index within the BTC transaction.