Issuer Data Description

This document explains the details available in the Issuer Details section of the One-Click Deployment dashboard.


Issuer Details

When you select an Issuer from the dashboard, you will be directed to a detailed view containing the following fields:

General Information

  • id: The unique identifier of the Issuer.

  • fullHost: The base URL where the Issuer service is accessible.

  • swaggerApi: The URL of the Issuer's OpenAPI (Swagger) documentation.

  • status: The current status of the Issuer (e.g., ACTIVE, FAILED).

  • networkName: The network the Issuer is deployed on (e.g., TESTNET, MAINNET).

  • version: The current version of the Issuer's configuration.

  • issuerDomainName: The domain name associated with the Issuer.

  • issuerName: The name assigned to the Issuer during creation.

  • issuerCreatorAddress: The blockchain address used to create this Issuer.

Cryptographic Information

  • didDocument: A JSON object containing the DID (Decentralized Identifier) details. This includes:

    • id: The DID identifier.

    • @context: The JSON-LD context for the DID document.

    • controller: The entity (or entities) that control this DID.

    • verificationMethod: An array of verification methods defined in the DID document, with fields such as:

      • id: The identifier of the verification method.

      • type: The type of cryptographic verification method used (e.g., JsonWebKey).

      • publicKeyJwk: The public key material in JWK format.


Actions

At the top of the Issuer Details page, you will find action buttons:

  • Upgrade Secret: Use this option to securely update the secret associated with this Issuer.

  • Upgrade Version: Upgrade the Issuer to a newer version.

  • Delete: Permanently delete the Issuer from the system.


Tabs Overview

When you select an Issuer from the dashboard, you will be directed to a detailed view with the following tabs:

  • Issuer Details: General and technical information about the Issuer.

  • DID Document: The full Decentralized Identifier (DID) document in JSON format.

  • Logs: Real-time and historical logs generated by the Issuer service.

  • Instructions: Guidelines on how to interact with the Issuer.

  • Actions: High-impact operations such as upgrading secrets or deleting the deployment.


Example View

Here is an example of an Issuer's detailed information as displayed on the dashboard:

id: 17
issuerName: final-boss-9-issuer
fullHost: https://final-boss-9-issuer.evdi.app
status: ACTIVE
userId: 17
deploymentType: EMPE_OVH_KBS_DEPLOYMENT
organization: AcmeCorp
version: 0.0.4
issuerCreatorAddress: empe1hcd89myqjaly5xehvq9qyan6fwmi8jpsk057a

didDocument:
{
  "id": "did:empe:testnet:646941a41d8960e7d66e6afddccb7a6862dad35",
  "@context": ["https://www.w3.org/ns/did/v1"],
  "controller": [
    "did:empe:testnet:646941a41d8960e7d66e6afddccb7a6862dad35"
  ],
  "verificationMethod": [
    {
      "id": "did:empe:testnet:646941a41d8960e7d66e6afddccb7a6862dad35#0",
      "type": "JsonWebKey",
      "controller": "did:empe:testnet:646941a41d8960e7d66e6afddccb7a6862dad35",
      "publicKeyJwk": {
        "kty": "EC",
        "crv": "P-256",
        "x": "exampleXCoordinate",
        "y": "exampleYCoordinate"
      }
    }
  ]
}

Last updated