Protokol
  • Introduction To Digital Assets
  • Tutorials
    • How To Create Digital Assets
    • How To Trade Digital Assets
  • ARK CORE MODULES
    • NFT
      • Development
      • Complementary Examples
        • Base
        • Exchange
      • API Endpoints
        • Assets
        • Burns
        • Collections
        • Transfers
        • Base Configurations
        • Auctions
        • Bids
        • Trades
        • Exchange Configurations
    • Guardian
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Groups
        • Users
    • Nameservice
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Nameservice
    • Voting
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Create Proposal
        • Cast Vote
        • Statistics
  • Protokol Templates
    • Core Starter Kit
    • Solidity Typescript Hardhat
    • Nestjs
Powered by GitBook
On this page
  • GET - configurations
  • Endpoint
  • Example
  • Response

Was this helpful?

  1. ARK CORE MODULES
  2. Nameservice
  3. API Endpoints

Configurations

Nameservice Configurations Endpoints.

GET - configurations

Endpoint

/configurations

Example

curl https://explorer.protokol.sh/api/nameservice/configurations

Response

{
  "data": {
    "api": {
      "packageName": "@protokol/nameservice-api",
      "currentVersion": "1.0.0-beta.2",
      "latestVersion": "1.0.0-beta.0",
      "defaults": {}
    },
    "transactions": {
      "packageName": "@protokol/nameservice-transactions",
      "currentVersion": "1.0.0-beta.2",
      "latestVersion": "1.0.0-beta.0",
      "defaults": {
        "defaults": {
          "feeType": 0
        }
      }
    },
    "crypto": {
      "packageName": "@protokol/nameservice-crypto",
      "currentVersion": "1.0.0-beta.2",
      "latestVersion": "1.0.0-beta.0",
      "defaults": {
        "defaults": {
          "nameserviceTypeGroup": 9004,
          "version": 2,
          "nameserviceStaticFee": 5000000000
        }
      }
    }
  }
}
PreviousAPI EndpointsNextNameservice

Last updated 3 years ago

Was this helpful?