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
Type Declaration
Section titled “Type Declaration”{ Kyt: null; }
Kyt:
null
[deprecated] The minter minted accumulated check fees to the KYT provider.
{ ReimburseWithdrawal: { withdrawal_id: bigint; }; }
ReimburseWithdrawal
Section titled “ReimburseWithdrawal”ReimburseWithdrawal:
object
ReimburseWithdrawal.withdrawal_id
Section titled “ReimburseWithdrawal.withdrawal_id”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
Section titled “KytFail”KytFail:
object
[deprecated] The minter failed to check retrieve btc destination address or the destination address is tainted.
KytFail.associated_burn_index
Section titled “KytFail.associated_burn_index”associated_burn_index: [] | [
bigint]
KytFail.kyt_fee
Section titled “KytFail.kyt_fee”kyt_fee: [] | [
bigint]
The Bitcoin check fee.
KytFail.status
Section titled “KytFail.status”status: [] | [
Status]
The status of the Bitcoin check.
{ Convert: { kyt_fee: [] | [bigint]; txid: [] | [Uint8Array]; vout: [] | [number]; }; }
Convert
Section titled “Convert”Convert:
object
The minter converted a single UTXO to ckBTC.
Convert.kyt_fee
Section titled “Convert.kyt_fee”kyt_fee: [] | [
bigint]
The Bitcoin check fee.
Convert.txid
Section titled “Convert.txid”txid: [] | [
Uint8Array]
The transaction ID of the accepted UTXO.
Convert.vout
Section titled “Convert.vout”vout: [] | [
number]
UTXO’s output index within the BTC transaction.