Skip to content

EventType

EventType = { received_utxos: { mint_txid: [] | [bigint]; to_account: Account; utxos: Utxo[]; }; } | { schedule_deposit_reimbursement: { account: Account; amount: bigint; burn_block_index: bigint; reason: ReimbursementReason; }; } | { sent_transaction: { change_output: [] | [{ value: bigint; vout: number; }]; fee: [] | [bigint]; requests: BigUint64Array; submitted_at: bigint; txid: Uint8Array; utxos: Utxo[]; withdrawal_fee: [] | [WithdrawalFee]; }; } | { distributed_kyt_fee: { amount: bigint; block_index: bigint; kyt_provider: Principal; }; } | { init: InitArgs; } | { upgrade: UpgradeArgs; } | { retrieve_btc_kyt_failed: { address: string; amount: bigint; block_index: bigint; kyt_provider: Principal; owner: Principal; uuid: string; }; } | { suspended_utxo: { account: Account; reason: SuspendedReason; utxo: Utxo; }; } | { accepted_retrieve_btc_request: { address: BitcoinAddress; amount: bigint; block_index: bigint; kyt_provider: [] | [Principal]; received_at: bigint; reimbursement_account: [] | [Account]; }; } | { checked_utxo: { clean: boolean; kyt_provider: [] | [Principal]; utxo: Utxo; uuid: string; }; } | { schedule_withdrawal_reimbursement: { account: Account; amount: bigint; burn_block_index: bigint; reason: WithdrawalReimbursementReason; }; } | { quarantined_withdrawal_reimbursement: { burn_block_index: bigint; }; } | { removed_retrieve_btc_request: { block_index: bigint; }; } | { confirmed_transaction: { txid: Uint8Array; }; } | { replaced_transaction: { change_output: { value: bigint; vout: number; }; fee: bigint; new_txid: Uint8Array; new_utxos: [] | [Utxo[]]; old_txid: Uint8Array; reason: [] | [ReplacedReason]; submitted_at: bigint; withdrawal_fee: [] | [WithdrawalFee]; }; } | { checked_utxo_v2: { account: Account; utxo: Utxo; }; } | { ignored_utxo: { utxo: Utxo; }; } | { checked_utxo_mint_unknown: { account: Account; utxo: Utxo; }; } | { reimbursed_failed_deposit: { burn_block_index: bigint; mint_block_index: bigint; }; } | { reimbursed_withdrawal: { burn_block_index: bigint; mint_block_index: bigint; }; }

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