diff --git a/README.md b/README.md index d329fd25..3f5b2bbb 100644 --- a/README.md +++ b/README.md @@ -94,12 +94,11 @@ $ ordhook scan blocks --interval 767430:767753 --post-to=http://localhost:3000/a $ ordhook service start --post-to=http://localhost:3000/api/events --config-path=./Ordhook.toml ``` -New `http-post` endpoints can also be added dynamically by spinning up a redis server and adding the following section in the `Ordhook.toml` configuration file: +New `http-post` endpoints can also be added dynamically by adding the following section in the `Ordhook.toml` configuration file: ```toml [http_api] http_port = 20456 -database_uri = "redis://localhost:6379/" ``` Running `ordhook` with the command diff --git a/docs/how-to-guides/how-to-run-ordhook-as-a-service-using-bitcoind.md b/docs/how-to-guides/how-to-run-ordhook-as-a-service-using-bitcoind.md index 65cd1830..e72d77c8 100644 --- a/docs/how-to-guides/how-to-run-ordhook-as-a-service-using-bitcoind.md +++ b/docs/how-to-guides/how-to-run-ordhook-as-a-service-using-bitcoind.md @@ -87,7 +87,6 @@ working_dir = "ordhook" # # [http_api] # http_port = 20456 -# database_uri = "redis://localhost:6379/" [network] mode = "mainnet" @@ -140,12 +139,11 @@ When the Ordhook service starts, it is initiated in the background to augment th ### Add `http-post` endpoints dynamically -To enable dynamically posting endpoints to the server, you can spin up the Redis server by enabling the following lines of code in the `Ordhook.toml` file: +Dynamic posting endpoints can be enabled by adding the following settings in the `Ordhook.toml` file: ```toml [http_api] http_port = 20456 -database_uri = "redis://localhost:6379/" ``` ## Run ordhook service diff --git a/docs/how-to-guides/how-to-stream-ordinal-activities.md b/docs/how-to-guides/how-to-stream-ordinal-activities.md index 6ba98392..fd8dabab 100644 --- a/docs/how-to-guides/how-to-stream-ordinal-activities.md +++ b/docs/how-to-guides/how-to-stream-ordinal-activities.md @@ -29,7 +29,6 @@ working_dir = "ordhook" # # [http_api] # http_port = 20456 -# database_uri = "redis://localhost:6379/" [network] mode = "mainnet"