Bitcoin Kernel
C header for interacting with the Bitcoin Kernel library.
Loading...
Searching...
No Matches
bitcoinkernel.h
Go to the documentation of this file.
1// Copyright (c) 2024-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_KERNEL_BITCOINKERNEL_H
6#define BITCOIN_KERNEL_BITCOINKERNEL_H
7
8#ifndef __cplusplus
9#include <stdbool.h>
10#include <stddef.h>
11#include <stdint.h>
12#else
13#include <cstddef>
14#include <cstdint>
15#endif // __cplusplus
16
17#ifndef BITCOINKERNEL_API
18#if defined(_WIN32)
19#ifdef BITCOINKERNEL_BUILD
20#define BITCOINKERNEL_API __declspec(dllexport)
21#else
22#define BITCOINKERNEL_API
23#endif
24#elif defined(__GNUC__) && (__GNUC__ >= 4) && defined(BITCOINKERNEL_BUILD)
25#define BITCOINKERNEL_API __attribute__((visibility("default")))
26#else
27#define BITCOINKERNEL_API
28#endif
29#endif
30
31#if !defined(BITCOINKERNEL_GNUC_PREREQ)
32#if defined(__GNUC__) && defined(__GNUC_MINOR__)
33#define BITCOINKERNEL_GNUC_PREREQ(_maj, _min) \
34 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((_maj) << 16) + (_min))
35#else
36#define BITCOINKERNEL_GNUC_PREREQ(_maj, _min) 0
37#endif
38#endif
39
40/* Warning attributes */
41#if defined(__GNUC__) && BITCOINKERNEL_GNUC_PREREQ(3, 4)
42#define BITCOINKERNEL_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
43#else
44#define BITCOINKERNEL_WARN_UNUSED_RESULT
45#endif
46#if !defined(BITCOINKERNEL_BUILD) && defined(__GNUC__) && BITCOINKERNEL_GNUC_PREREQ(3, 4)
47#define BITCOINKERNEL_ARG_NONNULL(...) __attribute__((__nonnull__(__VA_ARGS__)))
48#else
49#define BITCOINKERNEL_ARG_NONNULL(...)
50#endif
51
52#ifdef __cplusplus
53extern "C" {
54#endif // __cplusplus
55
115
120
125
138
147
158
174
183
192
206
211
217
225
237
244
250
257typedef void (*kernel_LogCallback)(void* user_data, const char* message, size_t message_len);
258
262typedef void (*kernel_NotifyBlockTip)(void* user_data, kernel_SynchronizationState state, const kernel_BlockIndex* index);
263typedef void (*kernel_NotifyHeaderTip)(void* user_data, kernel_SynchronizationState state, int64_t height, int64_t timestamp, bool presync);
264typedef void (*kernel_NotifyProgress)(void* user_data, const char* title, size_t title_len, int progress_percent, bool resume_possible);
265typedef void (*kernel_NotifyWarningSet)(void* user_data, kernel_Warning warning, const char* message, size_t message_len);
266typedef void (*kernel_NotifyWarningUnset)(void* user_data, kernel_Warning warning);
267typedef void (*kernel_NotifyFlushError)(void* user_data, const char* message, size_t message_len);
268typedef void (*kernel_NotifyFatalError)(void* user_data, const char* message, size_t message_len);
269
273typedef void (*kernel_ValidationInterfaceBlockChecked)(void* user_data, const kernel_BlockPointer* block, const kernel_BlockValidationState* state);
274
284
299
311
330
347
356
367
379
402
413
417typedef struct {
418 unsigned char hash[32];
420
424typedef struct {
425 unsigned char* data;
426 size_t size;
428
433
442 const unsigned char* raw_transaction, size_t raw_transaction_len
444
449
451
456
464 const unsigned char* script_pubkey, size_t script_pubkey_len
466
473 const kernel_ScriptPubkey* script_pubkey
475
480
482
487
495 const kernel_ScriptPubkey* script_pubkey,
496 int64_t amount
498
508
517
522
524
529
551 const kernel_ScriptPubkey* script_pubkey,
552 int64_t amount,
553 const kernel_Transaction* tx_to,
554 const kernel_TransactionOutput** spent_outputs, size_t spent_outputs_len,
555 unsigned int input_index,
556 unsigned int flags,
559
561
566
575
590
600
610
623 kernel_LogCallback callback,
624 const void* user_data,
625 const kernel_LoggingOptions options
627
632
634
639
648 const kernel_ChainType chain_type);
649
654
656
661
666
675 kernel_ContextOptions* context_options,
676 const kernel_ChainParameters* chain_parameters
678
687 kernel_ContextOptions* context_options,
690
702 kernel_ContextOptions* context_options,
703 kernel_ValidationInterfaceCallbacks validation_interface_callbacks
705
710
712
717
728 const kernel_ContextOptions* context_options);
729
738 kernel_Context* context
740
745
747
752
766 const kernel_Context* context,
767 const char* data_directory,
768 size_t data_directory_len,
769 const char* blocks_directory,
770 size_t blocks_directory_len
772
782 kernel_ChainstateManagerOptions* chainstate_manager_options,
783 int worker_threads
785
797 kernel_ChainstateManagerOptions* chainstate_manager_options,
798 bool wipe_block_tree_db,
799 bool wipe_chainstate_db
801
809 kernel_ChainstateManagerOptions* chainstate_manager_options,
810 bool block_tree_db_in_memory
812
820 kernel_ChainstateManagerOptions* chainstate_manager_options,
821 bool chainstate_db_in_memory
823
828
830
835
849 const kernel_Context* context,
850 const kernel_ChainstateManagerOptions* chainstate_manager_options
852
866 kernel_ChainstateManager* chainstate_manager,
867 const char** block_file_paths, size_t* block_file_paths_lens, size_t block_file_paths_len
869
884 const kernel_Context* context,
885 kernel_ChainstateManager* chainstate_manager,
886 kernel_Block* block,
887 bool* new_block
889
894
896
901
912 const kernel_Context* context,
913 kernel_ChainstateManager* chainstate_manager,
914 const kernel_BlockIndex* block_index
916
925 const unsigned char* raw_block, size_t raw_block_len
927
935 kernel_Block* block
937
945 const kernel_BlockPointer* block
947
955 kernel_Block* block
957
965 const kernel_BlockPointer* block
967
972
974
979
984
986
991
996 const kernel_BlockValidationState* block_validation_state
998
1003 const kernel_BlockValidationState* block_validation_state
1005
1007
1012
1022 const kernel_Context* context,
1023 kernel_ChainstateManager* chainstate_manager
1025
1034 const kernel_Context* context,
1035 kernel_ChainstateManager* chainstate_manager
1037
1047 const kernel_Context* context,
1048 kernel_ChainstateManager* chainstate_manager,
1049 kernel_BlockHash* block_hash
1050) BITCOINKERNEL_ARG_NONNULL(1, 2, 3);
1051
1062 const kernel_Context* context,
1063 kernel_ChainstateManager* chainstate_manager,
1064 int block_height
1066
1078 const kernel_Context* context,
1079 kernel_ChainstateManager* chainstate_manager,
1080 const kernel_BlockIndex* block_index
1081) BITCOINKERNEL_ARG_NONNULL(1, 2, 3);
1082
1091 const kernel_BlockIndex* block_index
1093
1101 const kernel_BlockIndex* block_index
1103
1104
1109
1111
1116
1127 const kernel_Context* context,
1128 kernel_ChainstateManager* chainstate_manager,
1129 const kernel_BlockIndex* block_index
1130) BITCOINKERNEL_ARG_NONNULL(1, 2, 3);
1131
1140 const kernel_BlockUndo* block_undo
1142
1152 const kernel_BlockUndo* block_undo,
1153 uint64_t transaction_undo_index
1155
1167 const kernel_BlockUndo* block_undo,
1168 uint64_t transaction_undo_index,
1169 uint64_t output_index
1171
1176
1178
1183
1191 const kernel_BlockIndex* block_index
1193
1198
1200
1201#ifdef __cplusplus
1202} // extern "C"
1203#endif // __cplusplus
1204
1205#endif // BITCOIN_KERNEL_BITCOINKERNEL_H
void(* kernel_NotifyWarningUnset)(void *user_data, kernel_Warning warning)
Definition bitcoinkernel.h:266
#define BITCOINKERNEL_API
Definition bitcoinkernel.h:27
BITCOINKERNEL_API kernel_BlockIndex BITCOINKERNEL_API kernel_BlockIndex * kernel_get_previous_block_index(const kernel_BlockIndex *block_index)
Returns the previous block index in the chain, or null if the current block index entry is the genesi...
struct kernel_LoggingConnection kernel_LoggingConnection
Definition bitcoinkernel.h:137
BITCOINKERNEL_API void kernel_context_options_set_validation_interface(kernel_ContextOptions *context_options, kernel_ValidationInterfaceCallbacks validation_interface_callbacks)
Set the validation interface callbacks for the context options. The context created with the options ...
BITCOINKERNEL_API void kernel_block_hash_destroy(kernel_BlockHash *block_hash)
BITCOINKERNEL_API kernel_TransactionOutput * kernel_transaction_output_create(const kernel_ScriptPubkey *script_pubkey, int64_t amount)
Create a transaction output from a script pubkey and an amount.
void(* kernel_NotifyWarningSet)(void *user_data, kernel_Warning warning, const char *message, size_t message_len)
Definition bitcoinkernel.h:265
struct kernel_Block kernel_Block
Definition bitcoinkernel.h:210
BITCOINKERNEL_API bool kernel_chainstate_manager_process_block(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, kernel_Block *block, bool *new_block) 2
Process and validate the passed in block with the chainstate manager. More detailed validation inform...
struct kernel_ContextOptions kernel_ContextOptions
Definition bitcoinkernel.h:157
void(* kernel_NotifyHeaderTip)(void *user_data, kernel_SynchronizationState state, int64_t height, int64_t timestamp, bool presync)
Definition bitcoinkernel.h:263
BITCOINKERNEL_API kernel_BlockValidationResult kernel_get_block_validation_result_from_block_validation_state(const kernel_BlockValidationState *block_validation_state)
BITCOINKERNEL_API uint64_t kernel_get_transaction_undo_size(const kernel_BlockUndo *block_undo, uint64_t transaction_undo_index)
Returns the number of previous transaction outputs contained in the transaction undo data.
kernel_ScriptFlags
Definition bitcoinkernel.h:384
@ kernel_SCRIPT_FLAGS_VERIFY_WITNESS
enable WITNESS (BIP141)
Definition bitcoinkernel.h:391
@ kernel_SCRIPT_FLAGS_VERIFY_ALL
Definition bitcoinkernel.h:394
@ kernel_SCRIPT_FLAGS_VERIFY_NULLDUMMY
enforce NULLDUMMY (BIP147)
Definition bitcoinkernel.h:388
@ kernel_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY
enable CHECKSEQUENCEVERIFY (BIP112)
Definition bitcoinkernel.h:390
@ kernel_SCRIPT_FLAGS_VERIFY_DERSIG
enforce strict DER (BIP66) compliance
Definition bitcoinkernel.h:387
@ kernel_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY
enable CHECKLOCKTIMEVERIFY (BIP65)
Definition bitcoinkernel.h:389
@ kernel_SCRIPT_FLAGS_VERIFY_NONE
Definition bitcoinkernel.h:385
@ kernel_SCRIPT_FLAGS_VERIFY_P2SH
evaluate P2SH (BIP16) subscripts
Definition bitcoinkernel.h:386
@ kernel_SCRIPT_FLAGS_VERIFY_TAPROOT
enable TAPROOT (BIPs 341 & 342)
Definition bitcoinkernel.h:393
#define BITCOINKERNEL_WARN_UNUSED_RESULT
Definition bitcoinkernel.h:44
BITCOINKERNEL_API int32_t kernel_block_index_get_height(const kernel_BlockIndex *block_index)
Return the height of a certain block index.
BITCOINKERNEL_API void kernel_disable_logging()
This disables the global internal logger. No log messages will be buffered internally anymore once th...
BITCOINKERNEL_API void kernel_chainstate_manager_options_set_block_tree_db_in_memory(kernel_ChainstateManagerOptions *chainstate_manager_options, bool block_tree_db_in_memory)
Sets block tree db in memory in the options.
kernel_SynchronizationState
Definition bitcoinkernel.h:239
@ kernel_INIT_DOWNLOAD
Definition bitcoinkernel.h:241
@ kernel_POST_INIT
Definition bitcoinkernel.h:242
@ kernel_INIT_REINDEX
Definition bitcoinkernel.h:240
kernel_ValidationMode
Definition bitcoinkernel.h:279
@ kernel_VALIDATION_STATE_INVALID
Definition bitcoinkernel.h:281
@ kernel_VALIDATION_STATE_ERROR
Definition bitcoinkernel.h:282
@ kernel_VALIDATION_STATE_VALID
Definition bitcoinkernel.h:280
void(* kernel_LogCallback)(void *user_data, const char *message, size_t message_len)
Definition bitcoinkernel.h:257
BITCOINKERNEL_API bool kernel_verify_script(const kernel_ScriptPubkey *script_pubkey, int64_t amount, const kernel_Transaction *tx_to, const kernel_TransactionOutput **spent_outputs, size_t spent_outputs_len, unsigned int input_index, unsigned int flags, kernel_ScriptVerifyStatus *status) 3)
Verify if the input at input_index of tx_to spends the script pubkey under the constraints specified ...
void(* kernel_NotifyBlockTip)(void *user_data, kernel_SynchronizationState state, const kernel_BlockIndex *index)
Definition bitcoinkernel.h:262
kernel_ChainType
Definition bitcoinkernel.h:406
@ kernel_CHAIN_TYPE_REGTEST
Definition bitcoinkernel.h:411
@ kernel_CHAIN_TYPE_TESTNET_4
Definition bitcoinkernel.h:409
@ kernel_CHAIN_TYPE_MAINNET
Definition bitcoinkernel.h:407
@ kernel_CHAIN_TYPE_SIGNET
Definition bitcoinkernel.h:410
@ kernel_CHAIN_TYPE_TESTNET
Definition bitcoinkernel.h:408
BITCOINKERNEL_API void kernel_transaction_destroy(kernel_Transaction *transaction)
BITCOINKERNEL_API kernel_ChainParameters * kernel_chain_parameters_create(const kernel_ChainType chain_type)
Creates a chain parameters struct with default parameters based on the passed in chain type.
struct kernel_ChainParameters kernel_ChainParameters
Definition bitcoinkernel.h:146
struct kernel_BlockValidationState kernel_BlockValidationState
Definition bitcoinkernel.h:224
void(* kernel_ValidationInterfaceBlockChecked)(void *user_data, const kernel_BlockPointer *block, const kernel_BlockValidationState *state)
Definition bitcoinkernel.h:273
BITCOINKERNEL_API kernel_ValidationMode kernel_get_validation_mode_from_block_validation_state(const kernel_BlockValidationState *block_validation_state)
BITCOINKERNEL_API kernel_Context * kernel_context_create(const kernel_ContextOptions *context_options)
Create a new kernel context. If the options have not been previously set, their corresponding fields ...
BITCOINKERNEL_API void kernel_enable_log_category(const kernel_LogCategory category)
Enable a specific log category for the global internal logger. This function is not thread safe....
BITCOINKERNEL_API kernel_Block BITCOINKERNEL_API kernel_Block * kernel_block_create(const unsigned char *raw_block, size_t raw_block_len)
Parse a serialized raw block into a new block object.
void(* kernel_NotifyProgress)(void *user_data, const char *title, size_t title_len, int progress_percent, bool resume_possible)
Definition bitcoinkernel.h:264
BITCOINKERNEL_API kernel_ChainstateManager * kernel_chainstate_manager_create(const kernel_Context *context, const kernel_ChainstateManagerOptions *chainstate_manager_options) 2)
Create a chainstate manager. This is the main object for many validation tasks as well as for retriev...
BITCOINKERNEL_API kernel_BlockHash * kernel_block_index_get_block_hash(const kernel_BlockIndex *block_index)
Return the block hash associated with a block index.
BITCOINKERNEL_API void kernel_context_options_destroy(kernel_ContextOptions *context_options)
BITCOINKERNEL_API void kernel_logging_connection_destroy(kernel_LoggingConnection *logging_connection)
BITCOINKERNEL_API kernel_BlockHash * kernel_block_pointer_get_hash(const kernel_BlockPointer *block)
struct kernel_BlockUndo kernel_BlockUndo
Definition bitcoinkernel.h:236
void(* kernel_NotifyFlushError)(void *user_data, const char *message, size_t message_len)
Definition bitcoinkernel.h:267
BITCOINKERNEL_API kernel_BlockIndex BITCOINKERNEL_API kernel_BlockIndex * kernel_get_block_index_from_height(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, int block_height) 2)
Retrieve a block index by its height in the currently active chain. Once retrieved there is no guaran...
BITCOINKERNEL_API bool kernel_import_blocks(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, const char **block_file_paths, size_t *block_file_paths_lens, size_t block_file_paths_len) 2)
May be called once the kernel_ChainstateManager is instantiated. Triggers the start of a reindex if t...
BITCOINKERNEL_API void kernel_chain_parameters_destroy(kernel_ChainParameters *chain_parameters)
struct kernel_TransactionOutput kernel_TransactionOutput
Definition bitcoinkernel.h:124
#define BITCOINKERNEL_ARG_NONNULL(...)
Definition bitcoinkernel.h:49
BITCOINKERNEL_API kernel_LoggingConnection * kernel_logging_connection_create(kernel_LogCallback callback, const void *user_data, const kernel_LoggingOptions options)
Start logging messages through the provided callback. Log messages produced before this function is f...
struct kernel_Transaction kernel_Transaction
Definition bitcoinkernel.h:114
BITCOINKERNEL_API void kernel_block_destroy(kernel_Block *block)
BITCOINKERNEL_API int64_t kernel_get_transaction_output_amount(kernel_TransactionOutput *transaction_output)
Gets the amount associated with this transaction output.
BITCOINKERNEL_API void kernel_context_destroy(kernel_Context *context)
BITCOINKERNEL_API bool kernel_chainstate_manager_options_set_wipe_dbs(kernel_ChainstateManagerOptions *chainstate_manager_options, bool wipe_block_tree_db, bool wipe_chainstate_db)
Sets wipe db in the options. In combination with calling kernel_import_blocks this triggers either a ...
BITCOINKERNEL_API void kernel_context_options_set_chainparams(kernel_ContextOptions *context_options, const kernel_ChainParameters *chain_parameters) 2)
Sets the chain params for the context options. The context created with the options will be configure...
BITCOINKERNEL_API kernel_Block * kernel_read_block_from_disk(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, const kernel_BlockIndex *block_index) 2
Reads the block the passed in block index points to from disk and returns it.
BITCOINKERNEL_API void kernel_transaction_output_destroy(kernel_TransactionOutput *transaction_output)
BITCOINKERNEL_API void kernel_chainstate_manager_options_set_chainstate_db_in_memory(kernel_ChainstateManagerOptions *chainstate_manager_options, bool chainstate_db_in_memory)
Sets chainstate db in memory in the options.
BITCOINKERNEL_API kernel_BlockUndo * kernel_read_block_undo_from_disk(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, const kernel_BlockIndex *block_index) 2
Reads the block undo data the passed in block index points to from disk and returns it.
BITCOINKERNEL_API kernel_TransactionOutput * kernel_get_undo_output_by_index(const kernel_BlockUndo *block_undo, uint64_t transaction_undo_index, uint64_t output_index)
Return a transaction output contained in the transaction undo data of a block undo data at a certain ...
BITCOINKERNEL_API void kernel_block_index_destroy(kernel_BlockIndex *block_index)
Destroy the block index.
kernel_BlockValidationResult
Definition bitcoinkernel.h:288
@ kernel_BLOCK_HEADER_LOW_WORK
the block header may be on a too-little-work chain
Definition bitcoinkernel.h:297
@ kernel_BLOCK_MUTATED
the block's data didn't match the data committed to by the PoW
Definition bitcoinkernel.h:293
@ kernel_BLOCK_CACHED_INVALID
this block was cached as being invalid and we didn't store the reason why
Definition bitcoinkernel.h:291
@ kernel_BLOCK_INVALID_HEADER
invalid proof of work or time too old
Definition bitcoinkernel.h:292
@ kernel_BLOCK_TIME_FUTURE
block timestamp was > 2 hours in the future (or our clock is bad)
Definition bitcoinkernel.h:296
@ kernel_BLOCK_RESULT_UNSET
initial value. Block has not yet been rejected
Definition bitcoinkernel.h:289
@ kernel_BLOCK_INVALID_PREV
A block this one builds on is invalid.
Definition bitcoinkernel.h:295
@ kernel_BLOCK_MISSING_PREV
We don't have the previous block the checked one is built on.
Definition bitcoinkernel.h:294
@ kernel_BLOCK_CONSENSUS
invalid by consensus rules (excluding any below reasons)
Definition bitcoinkernel.h:290
BITCOINKERNEL_API void kernel_chainstate_manager_options_destroy(kernel_ChainstateManagerOptions *chainstate_manager_options)
BITCOINKERNEL_API kernel_ByteArray * kernel_copy_block_pointer_data(const kernel_BlockPointer *block)
Copies block data into the returned byte array.
BITCOINKERNEL_API kernel_ChainstateManagerOptions * kernel_chainstate_manager_options_create(const kernel_Context *context, const char *data_directory, size_t data_directory_len, const char *blocks_directory, size_t blocks_directory_len) 2)
Create options for the chainstate manager.
BITCOINKERNEL_API void kernel_byte_array_destroy(kernel_ByteArray *byte_array)
BITCOINKERNEL_API kernel_BlockIndex * kernel_get_block_index_from_tip(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager) 2)
Get the block index entry of the current chain tip. Once returned, there is no guarantee that it rema...
BITCOINKERNEL_API kernel_BlockIndex * kernel_get_next_block_index(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, const kernel_BlockIndex *block_index) 2
Return the next block index in the currently active chain, or null if the current block index is the ...
BITCOINKERNEL_API void kernel_disable_log_category(const kernel_LogCategory category)
Disable a specific log category for the global internal logger. This function is not thread safe....
struct kernel_BlockPointer kernel_BlockPointer
Definition bitcoinkernel.h:216
kernel_LogLevel
Definition bitcoinkernel.h:351
@ kernel_LOG_TRACE
Definition bitcoinkernel.h:352
@ kernel_LOG_DEBUG
Definition bitcoinkernel.h:353
@ kernel_LOG_INFO
Definition bitcoinkernel.h:354
BITCOINKERNEL_API kernel_ScriptPubkey * kernel_copy_script_pubkey_from_output(kernel_TransactionOutput *transaction_output)
Copies the script pubkey of an output in the returned script pubkey opaque object.
BITCOINKERNEL_API void kernel_add_log_level_category(const kernel_LogCategory category, kernel_LogLevel level)
Set the log level of the global internal logger. This does not enable the selected categories....
BITCOINKERNEL_API kernel_Transaction * kernel_transaction_create(const unsigned char *raw_transaction, size_t raw_transaction_len)
Create a new transaction from the serialized data.
BITCOINKERNEL_API kernel_ContextOptions * kernel_context_options_create()
struct kernel_ScriptPubkey kernel_ScriptPubkey
Definition bitcoinkernel.h:119
kernel_Warning
Definition bitcoinkernel.h:246
@ kernel_LARGE_WORK_INVALID_CHAIN
Definition bitcoinkernel.h:248
@ kernel_UNKNOWN_NEW_RULES_ACTIVATED
Definition bitcoinkernel.h:247
void(* kernel_NotifyFatalError)(void *user_data, const char *message, size_t message_len)
Definition bitcoinkernel.h:268
BITCOINKERNEL_API void kernel_script_pubkey_destroy(kernel_ScriptPubkey *script_pubkey)
struct kernel_ChainstateManager kernel_ChainstateManager
Definition bitcoinkernel.h:205
kernel_ScriptVerifyStatus
Definition bitcoinkernel.h:371
@ kernel_SCRIPT_VERIFY_ERROR_INVALID_FLAGS_COMBINATION
The flags very combined in an invalid way.
Definition bitcoinkernel.h:375
@ kernel_SCRIPT_VERIFY_ERROR_TX_INPUT_INDEX
The provided input index is out of range of the actual number of inputs of the transaction.
Definition bitcoinkernel.h:373
@ kernel_SCRIPT_VERIFY_OK
Definition bitcoinkernel.h:372
@ kernel_SCRIPT_VERIFY_ERROR_INVALID_FLAGS
The provided bitfield for the flags was invalid.
Definition bitcoinkernel.h:374
@ kernel_SCRIPT_VERIFY_ERROR_SPENT_OUTPUTS_REQUIRED
The taproot flag was set, so valid spent_outputs have to be provided.
Definition bitcoinkernel.h:376
@ kernel_SCRIPT_VERIFY_ERROR_SPENT_OUTPUTS_MISMATCH
The number of spent outputs does not match the number of inputs of the tx.
Definition bitcoinkernel.h:377
BITCOINKERNEL_API kernel_BlockIndex * kernel_get_block_index_from_genesis(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager) 2)
Get the block index entry of the genesis block.
struct kernel_BlockIndex kernel_BlockIndex
Definition bitcoinkernel.h:182
BITCOINKERNEL_API bool kernel_context_interrupt(kernel_Context *context)
Interrupt can be used to halt long-running validation functions like when reindexing,...
BITCOINKERNEL_API kernel_ByteArray * kernel_copy_script_pubkey_data(const kernel_ScriptPubkey *script_pubkey)
Copies the script pubkey data into the returned byte array.
BITCOINKERNEL_API kernel_BlockUndo BITCOINKERNEL_API uint64_t kernel_block_undo_size(const kernel_BlockUndo *block_undo)
Returns the number of transactions whose undo data is contained in block undo.
BITCOINKERNEL_API kernel_ScriptPubkey * kernel_script_pubkey_create(const unsigned char *script_pubkey, size_t script_pubkey_len)
Create a script pubkey from serialized data.
BITCOINKERNEL_API void kernel_context_options_set_notifications(kernel_ContextOptions *context_options, kernel_NotificationInterfaceCallbacks notifications)
Set the kernel notifications for the context options. The context created with the options will be co...
BITCOINKERNEL_API void kernel_block_undo_destroy(kernel_BlockUndo *block_undo)
struct kernel_ChainstateManagerOptions kernel_ChainstateManagerOptions
Definition bitcoinkernel.h:191
BITCOINKERNEL_API kernel_BlockIndex * kernel_get_block_index_from_hash(const kernel_Context *context, kernel_ChainstateManager *chainstate_manager, kernel_BlockHash *block_hash) 2
Retrieve a block index by its block hash.
BITCOINKERNEL_API kernel_BlockHash * kernel_block_get_hash(kernel_Block *block)
Calculate and return the hash of a block.
struct kernel_Context kernel_Context
Definition bitcoinkernel.h:173
BITCOINKERNEL_API bool BITCOINKERNEL_API void kernel_chainstate_manager_destroy(kernel_ChainstateManager *chainstate_manager, const kernel_Context *context)
BITCOINKERNEL_API void kernel_chainstate_manager_options_set_worker_threads_num(kernel_ChainstateManagerOptions *chainstate_manager_options, int worker_threads)
Set the number of available worker threads used during validation.
kernel_LogCategory
Definition bitcoinkernel.h:334
@ kernel_LOG_KERNEL
Definition bitcoinkernel.h:345
@ kernel_LOG_VALIDATION
Definition bitcoinkernel.h:344
@ kernel_LOG_BENCH
Definition bitcoinkernel.h:336
@ kernel_LOG_LEVELDB
Definition bitcoinkernel.h:339
@ kernel_LOG_PRUNE
Definition bitcoinkernel.h:341
@ kernel_LOG_RAND
Definition bitcoinkernel.h:342
@ kernel_LOG_COINDB
Definition bitcoinkernel.h:338
@ kernel_LOG_BLOCKSTORAGE
Definition bitcoinkernel.h:337
@ kernel_LOG_MEMPOOL
Definition bitcoinkernel.h:340
@ kernel_LOG_ALL
Definition bitcoinkernel.h:335
@ kernel_LOG_REINDEX
Definition bitcoinkernel.h:343
BITCOINKERNEL_API kernel_ByteArray * kernel_copy_block_data(kernel_Block *block)
Copies block data into the returned byte array.
Definition bitcoinkernel.h:417
Definition bitcoinkernel.h:424
unsigned char * data
Definition bitcoinkernel.h:425
size_t size
Definition bitcoinkernel.h:426
Definition bitcoinkernel.h:360
bool log_timestamps
Prepend a timestamp to log messages.
Definition bitcoinkernel.h:361
bool always_print_category_levels
Prepend the log category and level to log messages.
Definition bitcoinkernel.h:365
bool log_threadnames
Prepend the name of the thread to log messages.
Definition bitcoinkernel.h:363
bool log_sourcelocations
Prepend the source location to log messages.
Definition bitcoinkernel.h:364
bool log_time_micros
Log timestamps in microsecond precision.
Definition bitcoinkernel.h:362
Definition bitcoinkernel.h:320
kernel_NotifyProgress progress
Reports on current block synchronization progress.
Definition bitcoinkernel.h:324
kernel_NotifyFatalError fatal_error
A un-recoverable system error encountered by the library.
Definition bitcoinkernel.h:328
kernel_NotifyBlockTip block_tip
The chain's tip was updated to the provided block index.
Definition bitcoinkernel.h:322
kernel_NotifyWarningUnset warning_unset
A previous condition leading to the issuance of a warning is no longer given.
Definition bitcoinkernel.h:326
kernel_NotifyWarningSet warning_set
A warning issued by the kernel library during validation.
Definition bitcoinkernel.h:325
kernel_NotifyFlushError flush_error
An error encountered when flushing data to disk.
Definition bitcoinkernel.h:327
kernel_NotifyHeaderTip header_tip
A new best block header was added.
Definition bitcoinkernel.h:323
const void * user_data
Holds a user-defined opaque structure that is passed to the notification callbacks.
Definition bitcoinkernel.h:321
Definition bitcoinkernel.h:305
const void * user_data
Definition bitcoinkernel.h:306
kernel_ValidationInterfaceBlockChecked block_checked
Definition bitcoinkernel.h:308