Skip to content

Commit

Permalink
chore: more renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Dec 5, 2023
1 parent a048200 commit 7c67f73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ information.
The Ordinals API is a microservice that has hard dependencies on other systems.
Before you start, you'll need to have access to:

1. A [Chainhook node](https://github.com/hirosystems/chainhook) with a fully
indexed Ordinals `.redb` database.
1. An [Ordhook node](https://github.com/hirosystems/ordhook) with a fully
indexed Ordinals database.
1. A local writeable Postgres database for data storage

### Running the API

Clone the repo.

Create an `.env` file and specify the appropriate values to configure the local
API server, postgres DB and Chainhook node reachability. See
API server, postgres DB and Ordhook node reachability. See
[`env.ts`](https://github.com/hirosystems/ordinals-api/blob/develop/src/env.ts)
for all available configuration options.

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function initBackgroundServices(db: PgStore) {
logger.info('Initializing background services...');
const server = await startOrdhookServer({ db });
registerShutdownConfig({
name: 'Chainhook Server',
name: 'Ordhook Server',
forceKillable: false,
handler: async () => {
await server.close();
Expand Down

0 comments on commit 7c67f73

Please sign in to comment.