chainhook
chainhook copied to clipboard
Extract transactions from Stacks and Bitcoin and build event driven re-org resistant indexers and databases.
Let's level up the first impression, by simplifying how chainhook can get installed on a computer! Can we update the CI of this project, to automate version updates on brew...
It would be great if we could feature gate `stacks` in chainhook, so we avoid pulling stacks related dependencies when using the `chainhook-sdk` in bitcoin-only projects.
Implement a new command: ``` chainhook archiver start --config-path ``` That would spin up a simple http server (no re-org handling), ignoring bitcoin blocks (I think?), that would just write...
chainhook-sdk currently has two ways of handling PoX settings: - [PoxConfig in types.rs](https://github.com/hirosystems/chainhook/blob/bd300d88291dbef69e3289ea7807f23787f91d04/components/chainhook-sdk/src/chainhooks/types.rs#L568-L573) - [PoxConfig in indexer/mod.rs](https://github.com/hirosystems/chainhook/blob/bd300d88291dbef69e3289ea7807f23787f91d04/components/chainhook-sdk/src/indexer/mod.rs#L26-L30) (previously `PoxInfo`) (My bad for not noticing that when I refactored the `PoxInfo`...
An other example that would be pretty useful would be catching both stacking + delegated stacking events on the pox contract. _Originally posted by @lgalabru in https://github.com/hirosystems/chainhook/pull/508#discussion_r1509551095_
**Is your feature request related to a problem? Please describe.** I want to be able to pass down an array of method to the contract_call scope, smth like: ``` {...
We have a limits section in the Chainhook.toml: ```toml [limits] max_number_of_bitcoin_predicates = 100 max_number_of_concurrent_bitcoin_scans = 100 max_number_of_stacks_predicates = 10 max_number_of_concurrent_stacks_scans = 10 max_number_of_processing_threads = 16 max_number_of_networking_threads = 16 max_caching_memory_size_mb =...
Once #528 is completed, we should have all of the context needed to restart a scan for a broken predicate. If a user is able to resolve the cause of...
Context: > need to see a log feed of webhook calls to see which one failed so one can act upon it. Similar to the line item at https://github.com/hirosystems/chainhook/issues/324#issuecomment-1677597568, it'd...
Context: > would be great to have a testing guide to know how one can use chainhook with CI/CD testing