The hypercerts API is the touchpoint for developers to interact with the hypercerts ecosystem. It provides endpoints for data upload and fetch, a GraphQL API for querying (on-chain) state and a health check endpoint.
Production: https://api.hypercerts.org/
Staging: https://staging-api.hypercerts.org
/spec
- Swagger instance documenting the API and exposing a playground to experiment with the endpoints
/v1/graphql
- GraphQL API to access hypercerts data like claims, fractions, attestations, allow lists
dev
: Starts the development server usingnodemon
, which will automatically restart the server whenever you save a file that the server uses.build
: Denerates the OpenAPI specification and routes usingtsoa
, and then compiles the TypeScript code into JavaScript usingswc
. The compiled code is output to thedist
directory.start
: Starts the application in production mode.lint
: Runseslint
on the codebase to check for linting errors.test
: Runs tests usingvitest
.