The purpose of this document is to describe how a DID (and associated DIDDoc) can be created using the cheqd-node
Cosmos CLI.
NOTE: The guidance below is only recommended to be used for testing purposes!
Using
cheqd-node
Cosmos CLI for real-world production environments is not recommended, since the identity keys are passed in raw form to the CLI. This is fine in development/testing usage, but is not recommend for mainnet.Developers are encouraged to use production-grade CLI tools such as Veramo SDK for cheqd or look at our developer guide on how to integrate custom applications.
Access to a cheqd-node
Cosmos CLI binary. You can either get this from our Github releases, or download the cheqd-cli
Docker container image.
Understand how to use cheqd accounts and Cosmos SDK keys.
Tokens to pay for identity transactions, since all ledger transactions are metered.
For testing purposes, CHEQ test tokens can be acquired from our testnet faucet.
Mainnet CHEQ tokens can be acquired from any marketplace where the $CHEQ token is traded.
For the remainder of this tutorial, it's assumed that the DID and associated DID Document is being created on testnet. These commands can easily be modified for mainnet.
First, we'll need to generate a verification key:
The result should look like the following:
Note: Keep this key safe! It is used to create the DIDDoc, and to update it in the future. Normally, you should be careful when cat
-ing such keys as it reveals the private key as well.
Encode the identity key's public key to one of the formats below according to the verificaiton method type you selected, as this will be later required in the verificationMethod
section:
A unique-id
should only be a 16-byte encoded base58 string (Indy-style) or a uuid.
For example, we can generate uuid using uuidgen
tool:
The result for our example will be b0ca0b75-ca6a-4674-a261-45f6dd0c9c77
, so let's use it as our unique-id
in our DIDDoc.
Copy-paste the template below into your terminal into a blank file (e.g., using nano
). We will add additional required information into the blank fields <xxxxx>
in the next steps.
You'll need to replace some values (as described in the cheqd DID method):
<namespace>
: Can be testnet
or mainnet
. For this CLI, we strongly suggest using testnet
.
<unique-id>
: Unique identifier, created in step #3
<key-alias>
: A key alias for the verification method identifier, e.g., #key1
<verification-method-type>
: Verification method type slected from step #2 above
<public-key-base58>, <public-key-multibase>, <public-key-jwk>
: Any one of the values from the result of step #2 above
<auth-key-alias>
: Alias of authentication key. Can be a reference to an existing verification method.
<service-key>
: Alias for service property. This is an optional section but useful to understand the power of DIDDocs.
<URI-to-object>
: A valid URI that can act as a service endpoint.
The examples below show the variation in syntax for different verification method key types in the DIDDoc contents. Note that each key type has a slightly different output.
We recommend you save this DIDDoc file (e.g., in a file called diddoc.json
) for the following steps.
After assembling the DID-Document JSON file we are ready to compile the final payload file with private key inside.
The example of payload.json
files with different verification methods:
Now that we have our DIDDoc prepared, we can send a create DID request to the ledger:
Where:
--from
: Should be an alias of a cheqd/Cosmos key, which will be used to pay for the ledger transaction.
--fees
: Should equal 50000000000ncheq, which is equivalent to 50 CHEQ, the current price for a create DID transaction on testnet and mainnet.
Note that each of cheqd's on-ledger identity transactions has a fixed fee, the pricing for cheqd DIDs and DID-Linked Resources can be found here. If your account has insufficient balance the transaction will fail.
After you execute the command, you will receive "code": 0"
if the DID was successfully written to the ledger.
Otherwise, the raw_logs
field in the response can help figure out why something went wrong. For example:
Finally, to check that the DID was successfully written to the ledger, we can use the following query:
where:
<identifier-of-your-DIDDoc>
: Fully-qualified DID with <unique-id>
For example:
Congratulations! You've created, hopefully, the first of many DIDs on cheqd!
Since upgrading to 1.x.y
version, we introduced versioning feature for DID Documents. This means that it is possible to get the previous version of a DID Document using the particular versionId of the document.
For querying particular version of the DID-Document the next command can be used:
Where:
id
- identifier of your DID-Document. Fully-qualified DID with <unique-id>
version-id
- particular id of version you want to get
Command:
Output:
Note that the output here is in snake_case because of how the cheqd ledger represents protobufs. This output would be in spec compliant JSON if queried using our DID resolver.
For querying all the versions there is a command:
Where:
id
- identifier of your DID-Document. Fully-qualified DID with <unique-id>
Output: