-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: update chainhook guides #384
Conversation
Fixed a pathname error in docs, fixed a typo, and added some clarifying language to other sections. - Fixed `bitcoind` and `bitcoin.conf` pathnames - Removed double words "predicates" - Clarified bitcoind node setup instructions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great improvement! I have a few nits.
docs/how-to-guides/how-to-run-chainhook-as-a-service-using-bitcoind.md
Outdated
Show resolved
Hide resolved
docs/how-to-guides/how-to-run-chainhook-as-a-service-using-bitcoind.md
Outdated
Show resolved
Hide resolved
docs/how-to-guides/how-to-run-chainhook-as-a-service-using-bitcoind.md
Outdated
Show resolved
Hide resolved
docs/how-to-guides/how-to-run-chainhook-as-a-service-using-bitcoind.md
Outdated
Show resolved
Hide resolved
@@ -132,7 +130,7 @@ Here is a table of the relevant parameters this guide changes in our configurati | |||
|
|||
## Scan blockchain based on predicates | |||
|
|||
Now that your bitcoind and Chainhook configurations are complete, you can define the [predicates](../overview.md#if-this-predicate-design) you would like to scan against bitcoin blocks [predicates](../overview.md#if-this-predicate-design). These predicates are where the user specifies the kinds of blockchain events they want their Chainhook to trigger to the deliver a result (either a file appendation or an HTTP POST result). This section helps you with an example JSON file to scan a range of blocks in the blockchain to trigger results. To understand the supported predicates for Bitcoin, refer to [how to use chainhooks with bitcoin](how-to-use-chainhooks-with-bitcoin.md). | |||
Now that your bitcoind and Chainhook configurations are complete, you can define the Chainhook [predicates](../overview.md#if-this-predicate-design) you would like to scan against bitcoin blocks. These predicates are where the user specifies the kinds of blockchain events that trigger a Chainhook to the deliver a result (either a file appendation or an HTTP POST request). This section helps you with an example JSON file to scan a range of blocks in the blockchain to trigger results. To understand the supported predicates for Bitcoin, refer to [how to use chainhooks with bitcoin](how-to-use-chainhooks-with-bitcoin.md). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that your bitcoind and Chainhook configurations are complete, you can define the Chainhook [predicates](../overview.md#if-this-predicate-design) you would like to scan against bitcoin blocks. These predicates are where the user specifies the kinds of blockchain events that trigger a Chainhook to the deliver a result (either a file appendation or an HTTP POST request). This section helps you with an example JSON file to scan a range of blocks in the blockchain to trigger results. To understand the supported predicates for Bitcoin, refer to [how to use chainhooks with bitcoin](how-to-use-chainhooks-with-bitcoin.md). | |
Now that your bitcoind and Chainhook configurations are complete, you can define the Chainhook [predicates](../overview.md#if-this-predicate-design) you would like to scan against bitcoin blocks. These predicates are where the user specifies the kinds of blockchain events that trigger Chainhook to deliver a result (either a file appendation or an HTTP POST request). This section helps you with an example JSON file to scan a range of blocks in the blockchain to trigger results. To understand the supported predicates for Bitcoin, refer to [how to use chainhooks with bitcoin](how-to-use-chainhooks-with-bitcoin.md). |
Including @MicaiahReid's and @ryanwaits's comments, added some other small changes.
Two more Micaiah additions.
All changes suggested by @MicaiahReid look good to me, manually added. Would love to merge and get one more Docs release update before webinar. |
🎉 This PR is included in version 1.1.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Description
@mefrem: Fixed a pathname error in docs, fixed a typo, and added some clarifying language to other sections.
bitcoind
andbitcoin.conf
pathnames@ryanwaits to add changes/comments to the "Run Chainhook as a Service using Stacks" How To guide