10BC0 GitHub - ablewitt/nftapi: nftguy api
[go: up one dir, main page]

Skip to content

ablewitt/nftapi

Repository files navigation

nftapi

nftguy api

Build cardano wallet api dependency

  1. Run gradle task to generate source code / build files from openapi spec file cardano-wallet-openapi.yaml
./gradlew generateSwaggerCodeCardanowallet
  1. Build the cardano wallet jar (using -p to switch project)
./gradlew -p build/swagger-code-cardanowallet jar

If using IntelliJ you may need to Reload All Gradle Builds to fix any package errors with cardanowalletclient.

Endpoint health

Spring actuator endpoint health is available from /actuator/health. Cardano wallet progress can be null if 100% or unknown

{
  "status": "UP",
  "components": {
    "cardanoWalletAPI": {
      "status": "UP",
      "details": {
        "ready": "null"
      }
    },
    "diskSpace": {
      "status": "UP",
      "details": {
        "total": 389000699904,
        "free": 180503797760,
        "threshold": 10485760,
        "exists": true
      }
    },
    "mongo": {
      "status": "UP",
      "details": {
        "version": "6.1.0"
      }
    },
    "ping": {
      "status": "UP"
    }
  }
}

About

nftguy api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0