chainhook
chainhook copied to clipboard
Extract transactions from Stacks and Bitcoin and build event driven re-org resistant indexers and databases.
...so we can have its genesis and all of its future transfers. This will be very useful if we need to backfill missing inscriptions on the Ordinals API.
Simplifying the chainhook-sdk would be helpful for helping developers building new indexers on top of the chainhook-sdk. Something like: ``` let indexer = Indexer::new(); indexer.apply_block(|event| { // do something });...
Currently, for the rocket servers we implement, all requests that make it to the actual request handler respond with `200 OK` event if the `status` field of our response is...
thinking through some additional predicates I could see being useful: - new block (basically so folks can create general purpose indexers) - new microblock - new mempool transaction - new...
I would like to use chainhooks to trigger an action only when a transaction was confirmed on bitcoin say 2 times. Is there a way to express that in a...
An issue has happened, in production, where the Chainhook’s chain segment became outdated. And since the code base is not prepared to handle that, only restoring the Chainhook's chain state...
Hello I found several spelling issues in your docs. Hope I was helpful.
From [this issue](https://github.com/hirosystems/chainhook/issues/623), we could encounter situations where the chain state becomes outdated. The system should recognize when this has happened and overcome it. 2 ideas: - Allow pulling missing...
When a Chainhook node is restarted, it appears to lose the Bitcoin node state. This can cause issues, like the one below, to be triggered by Grafana. ``` The Chainhook...