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 committed Jun 11, 2024
1 parent 4a6c910 commit 008a9fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ components:
properties:
wallet: { '$ref': '#/components/schemas/ArweaveWallet' }
contractId: { '$ref': '#/components/schemas/ArweaveId' }
processId: { '$ref': '#/components/schemas/ArweaveId' }
OwnershipAssessment:
type: object
properties:
Expand Down
1 change: 1 addition & 0 deletions src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ 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 008a9fb

Please sign in to comment.