Skip to content

Commit

Permalink
fix(info): update info endpoint to include process id
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler authored and djwhitt committed Jun 11, 2024
1 parent 4a6c910 commit f4b2b2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ components:
type: object
properties:
wallet: { '$ref': '#/components/schemas/ArweaveWallet' }
contractId: { '$ref': '#/components/schemas/ArweaveId' }
processId: { '$ref': '#/components/schemas/ArweaveId' }
OwnershipAssessment:
type: object
properties:
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ app.get('/ar-io/observer/healthcheck', async (_req, res) => {
app.get('/ar-io/observer/info', (_req, res) => {
res.status(200).send({
wallet: walletAddress,
contractId: config.CONTRACT_ID,
processId: config.IO_PROCESS_ID,
});
});

Expand Down

0 comments on commit f4b2b2b

Please sign in to comment.