This doc is about supported client"s Request (both write and read ones). If you are interested in transactions and their representation on the Ledger (that is internal one), then have a look at transactions.
indy-sdk expects the format as specified below.
See roles and permissions on the roles and who can create each type of transactions.
The main Client-to-Node and Node-to-Node envelope is serialized in MsgPack format.
This is a common structure for ALL messages (both Node-to-Node and Client-to-Node).
"type": <...>,
"protocolVersion": <...>,
"ver": 1,
"data": {
"ver": 1,
<msg-specific fields>
},
"metadata": {
<msg-specific fields>
},
"pluginData": {
<plugin-specific-fields>
}
-
type
(enum integer):Msg type.
-
protocolVersion
(integer; optional):The version of client-to-node or node-to-node protocol. Each new version may introduce a new feature in Requests/Replies/Data. Since clients and different Nodes may be at different versions, we need this field to support backward compatibility between clients and nodes.
-
ver
(integer, optional):Data/Metdata version.
-
data
(dict):Message-specific data.
-
metadata
(dict):Message-specific metadata.
-
pluginData
(dict):Plugin-specific data.
A message (see above) can be wrapped into a Signed Message envelope. All write requests must be signed.
{
"type": <...>,
"ver": <...>,
"signature": {
"type": <...>,
"values": [{
"from": <...>,
"value": <...>,
}]
},
"serialization": <...>,
"msg": <serialized-msg>
}
-
signature
(dict):Submitter's signature over serialized
msg
field.-
type
(string enum):- ED25519: ed25519 signature
- ED25519_MULTI: ed25519 signature in multisig case.
-
values
(list):-
from
(base58-encoded string): Identifier (DID) of signer as base58-encoded string for 16 or 32 bit DID value. -
value
(base58-encoded string): signature value
-
-
-
serialization
(string enum, optional):Defines how the
msg
is serialized- JSON: json
- MSG_PACK: msgpack
-
msg
(dict):Serialized message.
Each Request (both write and read) follows the pattern as shown above.
{
"type": <...>,
"ver": <...>,
"protocolVersion": <...>,
"data": {
"ver": <...>,
<msg-specific fields>
},
"metadata": {
"reqId": <...>,
"from": <...>,
"endorser": <...>
},
}
-
Message Type
type
is one of the following values:- NODE = 0
- NYM = 1
- ATTRIB = 100
- SCHEMA = 101
- CLAIM_DEF = 102
- POOL_UPGRADE = 109
- NODE_UPGRADE = 110
- POOL_CONFIG = 111
- GET_TXN = 3
- GET_ATTR = 104
- GET_NYM = 105
- GET_SCHEMA = 107
- GET_CLAIM_DEF = 108
-
metadata
(dict):Metadata coming with the Request and saving in the transaction as is (if this is a write request).
-
from
(base58-encoded string): Identifier (DID) of the transaction author as base58-encoded string for 16 or 32 bit DID value. It may differ fromendorser
field who submits the transaction on behalf ofidentifier
. Ifendorser
is absent, then the author (identifier
) plays the role of endorser and submits request by his own. It also may differ fromdest
field for some of requests (for example NYM), wheredest
is a target identifier (for example, a newly created DID identifier).Example:
identifier
is a DID of a transaction author who doesn't have write permissions;endorser
is a DID of a user with Endorser role (that is with write permissions).- new NYM creation:
identifier
is a DID of an Endorser creating a new DID, anddest
is a newly created DID.
-
endorser
(base58-encoded string, optional): Identifier (DID) of an Endorser submitting a transaction on behalf of the original author (identifier
) as base58-encoded string for 16 or 32 bit DID value. Ifendorser
is absent, then the author (identifier
) plays the role of endorser and submits request by his own. Ifendorser
is present then the transaction must be multi-signed by the both author (identifier
) and Endorser (endorser
). -
reqId
(integer): Unique ID number of the request with transaction.
-
-
Please find the format of each request-specific data for each type of request below.
Each Write/Read Reply follows the pattern as shown above.
{
"type": REPLY,
"ver": <...>,
"protocolVersion": <...>,
"data": {
"ver": <...>,
"results": [
"result": {
<result>
},
"multiSignature": {
"type": <...>,
"value": <...>,
"from": <...>,
"serialization": <...>,
"signedState": <...>
},
"stateProof": <...>,
"auditProof": <...>,
]
},
"metadata": {
"reqId": <...>,
"from": <...>,
},
}
where multiSignature
's signedState
is a serialized value having the following form:
{
"ledgerMetadata": {
"ledgerId": <...>,
"rootHash": <...>,
"size": <...>,
},
"stateMetadata": {
"timestamp": <...>,
"poolRootHash": <...>,
"rootHash": <...>,
}
}
-
type
(string):Request type as was in the corresponding Request.
-
results
(array):Array of results. Each result may have either a state proof (it means that
result
is taken from state), audit proof (it means thatresult
is taken from ledger), or no proofs (it means that this is some calculated data, and it's up to the client to verify it). -
result
(dict):The main result. It can be a transaction from state (see
state proof
then), a transaction from ledger (seeaudit proof
), or any custom result. It usually includes transaction data and request metadata (as was in Request). It also includestxnMetadata
andreqSignature
. -
multiSignature
(dict):Nodes' Multi-signature against the given
ledgerMetadata
andstateMetadata
(serialized to MsgPack)-
value
(enum string): multi-signature type- BLS: BLS multi-signature
-
value
(base58-encoded string): the value of the BLS multi-signature -
from
(array os strings): Aliases of Nodes participated in BLS multi-signature (the number of participated nodes is not less than n-f) -
serialization
(enum string, optional): serialization type of thesignedState
(MsgPack by default). -
signedState
(bytes): serialized the multi-signed state the signature is calculated against-
ledgerMetadata
(dict): Metadata associated with the current state of the Ledger.ledgerId
(enum integer): ID of the ledger the transaction is written to:- POOL_LEDGER = 0
- DOMAIN_LEDGER = 1
- CONFIG_LEDGER = 2
rootHash
(base58-encoded hash string): base58-encoded ledger"s merkle tree root hashsize
(integer): Ledger"s size (that is the last seqNo present at the ledger at that time).
-
stateMetadata
(dict): Metadata associated with the state (Patricia Merkle Trie) the returned transaction belongs to (seeledgerId
).timestamp
(integer as POSIX timestamp): last update of the statepoolRootHash
(base58-encoded hash string): pool state trie root hash to get the current state of the Pool (it can be used to get the state of the Pool at the moment the BLS multi-signature was created).rootHash
(base58-encoded string): state trie root hash for the ledger the returned transaction belongs to
-
-
-
stateProof
(base64-encoded string; optional):Patricia Merkle Trie State proof for the returned transaction. It proves that the returned transaction belongs to the Patricia Merkle Trie with a root hash as specified in
stateMetadata
. It is present for replies to read requests only (except GET_TXN Reply). -
auditProof
(array of base58-encoded hash strings; optional):Ledger's merkle tree audit proof as array of base58-encoded hash strings. This is a cryptographic proof to verify that the returned transaction has been appended to the ledger with the root hash as specified in
ledgerMetadata
. It is present for replies to write requests only, and GET_TXN Reply. -
metadata
(dict; optional):Metadata as in Request. It may be absent for Reply to write requests as
txn
fields already contains this information as part of transaction written to the ledger.
Each Reply to commands/actions follows the pattern as shown above.
{
"type": REPLY_COMMAND,
"protocolVersion": <...>,
"ver": <...>,
"data": {
"ver": <...>,
"results": [
"result": {
<result>
},
]
},
"metadata": {
"reqId": <...>,
"from": <...>,
},
}
Each ACK follows the pattern as shown above.
{
"type": REQACK,
"ver": 1,
"protocolVersion": 1,
"data": {
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Each NACK follows the pattern as shown above.
{
"type": REQNACK,
"ver": 1,
"protocolVersion": 1,
"data": {
"reason": <reason_str>
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Each Reject follows the pattern as shown above.
{
"type": REJECT,
"ver": 1,
"protocolVersion": 1,
"data": {
"reason": <reason_str>
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
The format of each request-specific data for each type of request.
Creates a new NYM record for a specific user, endorser, steward or trustee. Note that only trustees and stewards can create new endorsers and trustee can be created only by other trusties (see roles).
The request can be used for creation of new DIDs, setting and rotation of verification key, setting and changing of roles.
-
did
(base58-encoded string):Target DID as base58-encoded string for 16 or 32 bit DID value. It differs from
from
metadata field, wherefrom
is the DID of the submitter.Example:
from
is a DID of a Endorser creating a new DID, anddid
is a newly created DID. -
role
(enum number as integer; optional):Role of a user NYM record being created for. One of the following numbers
- None (common USER)
- 0 (TRUSTEE)
- 2 (STEWARD)
- 101 (ENDORSER)
A TRUSTEE can change any Nym's role to None, this stopping it from making any writes (see roles).
-
verkey
(base58-encoded string; optional):Target verification key as base58-encoded string. If not set, then either the target identifier (
did
) is 32-bit cryptonym CID (this is deprecated), or this is a user under guardianship (doesnt owns the identifier yet). Verkey can be changed to None by owner, it means that this user goes back under guardianship. -
alias
(string; optional):NYM's alias.
If there is no NYM transaction with the specified DID (did
), then it can be considered as creation of a new DID.
If there is a NYM transaction with the specified DID (did
), then this is update of existing DID.
In this case we can specify only the values we would like to override. All unspecified values remain the same.
So, if key rotation needs to be performed, the owner of the DID needs to send a NYM request with
did
and verkey
only. role
and alias
will stay the same.
Request Example:
{
"type": 1,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"ver": 1,
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 1,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver":1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"role": "101",
"verkey": "~HmUWn928bnFT6Ephf65YXv"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver":1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"role": "101",
"verkey": "~HmUWn928bnFT6Ephf65YXv"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId": "N22KY2Dyvmuu2PyyqSFKue|01"
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Adds attribute to a NYM record.
-
did
(base58-encoded string):Target DID we set an attribute for as base58-encoded string for 16 or 32 bit DID value. It differs from
from
metadata field, wherefrom
is the DID of the submitter.Example:
from
is a DID of a Endorser setting an attribute for a DID, anddid
is the DID we set an attribute for. -
raw
(json; mutually exclusive withhash
andenc
):Raw data is represented as json, where key is attribute name and value is attribute value.
-
hash
(sha256 hash string; mutually exclusive withraw
andenc
):Hash of attribute data.
-
enc
(string; mutually exclusive withraw
andhash
):Encrypted attribute data.
Request Example:
{
"type": 100,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 100,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"raw": "{"name": "Alice"}"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 100,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"raw": "{"name": "Alice"}"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId": "N22KY2Dyvmuu2PyyqSFKue|02"
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Adds Claim's schema.
It's not possible to update existing Schema. So, if the Schema needs to be evolved, a new Schema with a new version or name needs to be created.
-
id
(string):Schema's ID as State Trie key (address or descriptive data). It must be unique within the ledger. It must be equal (or be mapped to) the real key of the SCHEMA state in the State Trie.
-
name
(string):Schema's name string.
-
version
(string):Schema's version string
-
value
(dict):Schema's specific data
attrNames
(array of strings): Array of attribute name strings.
Request Example:
{
"type": 101,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 101,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"id":"L5AD5g65TDQr1PPHHRoiGf:Degree:1.0",
"version": "1.0",
"name": "Degree",
"value": {
"attrNames": ["undergrad", "last_name", "first_name", "birth_date", "postgrad", "expiry_date"]
}
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 101,
"protocolVersion": 1,
"data": {
"ver": 1,
"version": "1.0",
"name": "Degree",
"value": {
"attrNames": ["undergrad", "last_name", "first_name", "birth_date", "postgrad", "expiry_date"]
}
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId":"L5AD5g65TDQr1PPHHRoiGf:Degree:1.0",
},
"reqSignature": {
"type": "ED25519",
"ver": 1,
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Adds a claim definition (in particular, public key), that Issuer creates and publishes for a particular Claim Schema.
It's not possible to update data
in existing Claim Def.
So, if a Claim Def needs to be evolved (for example, a key needs to be rotated), then
a new Claim Def needs to be created by a new Issuer DID (did
).
-
id
(string):Schema's ID as State Trie key (address or descriptive data). It must be unique within the ledger. It must be equal (or be mapped to) the real key of the SCHEMA state in the State Trie.
-
type
(string):Type of the claim definition (that is claim signature).
CL
(Camenisch-Lysyanskaya) is the only supported type now. -
tag
(string):A unique descriptive tag of the given CRED_DEF for the given Issuer and Schema. An Issuer may have multiple CRED_DEFs for the same Schema created with different tags.
-
schemaId
(string):ID of a Schema transaction the claim definition is created for.
-
value
(dict):Type-specific value:
-
publicKeys
(dict):Dictionary with Claim Definition's public keys:
primary
: primary claim public keyrevocation
: revocation claim public key
-
Request Example:
{
"type": 102,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 102,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"id":"HHAD5g65TDQr1PPHHRoiGf2L:5AD5g65TDQr1PPHHRoiGf:Degree:1.0:CL:key1",
"signatureType": "CL",
"schemaRef":"L5AD5g65TDQr1PPHHRoiGf1Degree1",
"publicKeys": {
"primary": ....,
"revocation": ....
},
"tag": "key1",
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 102,
"protocolVersion": 1,
"data": {
"ver": 1,
"signatureType": "CL",
"schemaRef":"L5AD5g65TDQr1PPHHRoiGf1Degree1",
"publicKeys": {
"primary": ....,
"revocation": ....
},
"tag": "key1",
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId":"HHAD5g65TDQr1PPHHRoiGf2L:5AD5g65TDQr1PPHHRoiGf:Degree:1.0:CL:key1",
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Adds a new node to the pool, or updates existing node in the pool.
-
did
(base58-encoded string):Target Node's verkey as base58-encoded string for 16 or 32 byte DID value. It differs from
from
metadata field, wherefrom
is the DID of the transaction submitter (Steward"s DID). -
alias
(string):Node's alias
-
blskey
(base58-encoded string; optional):BLS multi-signature key as base58-encoded string (it's needed for BLS signatures and state proofs support)
-
clientIp
(string; optional):Node's client listener IP address, that is the IP clients use to connect to the node when sending read and write requests (ZMQ with TCP)
-
clientPort
(string; optional):Node's client listener port, that is the port clients use to connect to the node when sending read and write requests (ZMQ with TCP)
-
nodeIp
(string; optional):The IP address other Nodes use to communicate with this Node; no clients are allowed here (ZMQ with TCP)
-
nodePort
(string; optional):The port other Nodes use to communicate with this Node; no clients are allowed here (ZMQ with TCP)
-
services
(array of strings; optional):The service of the Node.
VALIDATOR
is the only supported one now.
If there is no NODE transaction with the specified Node ID (did
), then it can be considered as creation of a new NODE.
If there is a NODE transaction with the specified Node ID (did
), then this is update of existing NODE.
In this case we can specify only the values we would like to override. All unspecified values remain the same.
So, if a Steward wants to rotate BLS key, then it's sufficient to send a NODE transaction with did
and a new blskey
.
There is no need to specify all other fields, and they will remain the same.
Request Example:
{
"type": 0,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 0,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "6HoV7DUEfNDiUP4ENnSC4yePja8w7JDQJ5uzVgyW4nL8"
"alias": "Node1",
"clientIp": "127.0.0.1",
"clientPort": 7588,
"nodeIp": "127.0.0.1",
"nodePort": 7587,
"blskey": "00000000000000000000000000000000",
"services": ["VALIDATOR"]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 0,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "6HoV7DUEfNDiUP4ENnSC4yePja8w7JDQJ5uzVgyW4nL8"
"alias": "Node1",
"clientIp": "127.0.0.1",
"clientPort": 7588,
"nodeIp": "127.0.0.1",
"nodePort": 7587,
"blskey": "00000000000000000000000000000000",
"services": ["VALIDATOR"]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 0,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Command to upgrade the Pool (sent by Trustee). It upgrades the specified Nodes (either all nodes in the Pool, or some specific ones).
-
name
(string):Human-readable name for the upgrade.
-
action
(enum:start
orcancel
):Starts or cancels the Upgrade.
-
version
(string):The version of indy-node package we perform upgrade to. Must be greater than existing one (or equal if
reinstall
flag is True). -
schedule
(dict of node DIDs to timestamps):Schedule of when to perform upgrade on each node. This is a map where Node DIDs are keys, and upgrade time is a value (see example below). If
force
flag is False, then it's required that time difference between each Upgrade must be not less than 5 minutes (to give each Node enough time and not make the whole Pool go down during Upgrade). -
sha256
(sha256 hash string):sha256 hash of the package
-
force
(boolean; optional):Whether we should apply transaction (schedule Upgrade) without waiting for consensus of this transaction. If false, then transaction is applied only after it's written to the ledger. Otherwise it's applied regardless of result of consensus, and there are no restrictions on the Upgrade
schedule
for each Node. So, we can Upgrade the whole Pool at the same time when it's set to True.
False by default. Avoid setting to True without good reason. -
reinstall
(boolean; optional):Whether it's allowed to re-install the same version. False by default.
-
timeout
(integer; optional):Limits upgrade time on each Node.
-
justification
(string; optional):Optional justification string for this particular Upgrade.
Request Example:
{
"type": 109,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 109,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"action": `start`,
"version": `1.3`,
"schedule": {"4yC546FFzorLPgTNTc6V43DnpFrR8uHvtunBxb2Suaa2":"2017-12-25T10:25:58.271857+00:00","AtDfpKFe1RPgcr5nnYBw1Wxkgyn8Zjyh5MzFoEUTeoV3":"2017-12-25T10:26:16.271857+00:00","DG5M4zFm33Shrhjj6JB7nmx9BoNJUq219UXDfvwBDPe2":"2017-12-25T10:26:25.271857+00:00","JpYerf4CssDrH76z7jyQPJLnZ1vwYgvKbvcp16AB5RQ":"2017-12-25T10:26:07.271857+00:00"},
"sha256": `db34a72a90d026dae49c3b3f0436c8d3963476c77468ad955845a1ccf7b03f55`,
"force": false,
"reinstall": false,
"timeout": 1
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 109,
"protocolVersion": 1,
"data": {
"ver": 1,
"action": `start`,
"version": `1.3`,
"schedule": {"4yC546FFzorLPgTNTc6V43DnpFrR8uHvtunBxb2Suaa2":"2017-12-25T10:25:58.271857+00:00","AtDfpKFe1RPgcr5nnYBw1Wxkgyn8Zjyh5MzFoEUTeoV3":"2017-12-25T10:26:16.271857+00:00","DG5M4zFm33Shrhjj6JB7nmx9BoNJUq219UXDfvwBDPe2":"2017-12-25T10:26:25.271857+00:00","JpYerf4CssDrH76z7jyQPJLnZ1vwYgvKbvcp16AB5RQ":"2017-12-25T10:26:07.271857+00:00"},
"sha256": `db34a72a90d026dae49c3b3f0436c8d3963476c77468ad955845a1ccf7b03f55`,
"force": false,
"reinstall": false,
"timeout": 1
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 2,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Command to change Pool's configuration
-
writes
(boolean):Whether any write requests can be processed by the pool (if false, then pool goes to read-only state). True by default.
-
force
(boolean; optional):Whether we should apply transaction (for example, move pool to read-only state) without waiting for consensus of this transaction. If false, then transaction is applied only after it's written to the ledger. Otherwise it's applied regardless of result of consensus.
False by default. Avoid setting to True without good reason.
Request Example:
{
"type": 111,
"ver": 1,
"serialization": "MSG_PACK",
"signature": {
"type": "ED25519",
"ver": 1,
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
"msg": {
"type": 111,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"writes":false,
"force":true
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "WRITE_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 111,
"protocolVersion": 1,
"data": {
"ver": 1,
"writes":false,
"force":true
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 2,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
}
}
Freeze deprecated ledgers (default ledgers such as the domain, config, pool, and audit ledgers cannot be frozen). If a ledger is frozen it can be used for reading but not for writing. Frozen ledgers will not be caught up by new nodes and they can't be unfrozen. Frozen ledgers can be removed without breaking consensus, but this would prevent third parties from auditing the ledger history. More information is in the Indy Plenum documenation.
The request has static and dynamic validations. Static validation checks to avoid freezing base ledgers (pool, audit, domain and config). Dynamic validation checks the existence of ledgers before freezing. Authorize checks the permissions for the freeze request (3 trustee signatures are needed by default).
Request Example:
{
"operation": {
"type": "9",
"ledgers_ids": [1,2,3,4]
},
"identifier": "21BPzYYrFzbuECcBV3M1FH",
"reqId": 311348486,
"protocolVersion": 2,
"signature": "3YVzDtSxxnowVwAXZmxCG2fz1A38j1qLrwKmGEG653GZw7KJRBX57Stc1oxQZqqu9mCqFLa7aBzt4MKXk4MeunVj",
}
Reply Example:
{
"op":"REPLY",
"result":{
"txn":{
"type":"9",
"data":{
"ledgers_ids":[1,2,3,4]
},
"protocolVersion":2,
"metadata":{
"reqId":311348486,
"payloadDigest":"09a3ccedf806e224beb56b547e967b442f3ee3181d5c87623f063742df7a692e",
"from":"M9BJDuS24bqbJNvBRsoGg3",
"digest":"dfdc6c5b77181953b4e32f975b0c5e64b25dc3e3061716aca1baae4cbe0ce494"
}
},
"ver":"1",
"auditPath":[
"DDwrSsKwpFkfGVqp7AxzRMusUuT9D5RmidCmnr8phTWD"
],
"txnMetadata":{
"txnTime":1613735420,
"seqNo":3
},
"reqSignature":{
"type":"ED25519",
"values":[
{
"value":"bSMfwJraLXzBAmdZKQUC1XfoVb3YWygc6UCQAmrTNKDr9beXta7MFyNZnQtbmNoRurjicSHLo3sW7qv7ZTWcZJa",
"from":"M9BJDuS24bqbJNvBRsoGg3"
}
]
},
"rootHash":"E27ssC3LK8azpgxxtBY4ETLXvDLGtfmeSjngc6jrV1Qt"
}
}
Gets information about a DID (NYM).
-
did
(base58-encoded string):Target DID as base58-encoded string for 16 or 32 bit DID value. It differs from
from
metadata field, wherefrom
is the DID of the sender (may not exist on ledger at all).
Request Example:
{
"type": 105,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "READ_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"role": "101",
"verkey": "~HmUWn928bnFT6Ephf65YXv"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId": "N22KY2Dyvmuu2PyyqSFKue|01"
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"state_proof": "+QHl+FGAgICg0he/hjc9t/tPFzmCrb2T+nHnN0cRwqPKqZEc3pw2iCaAoAsA80p3oFwfl4dDaKkNI8z8weRsSaS9Y8n3HoardRzxgICAgICAgICAgID4naAgwxDOAEoIq+wUHr5h9jjSAIPDjS7SEG1NvWJbToxVQbh6+Hi4dnsiaWRlbnRpZmllciI6Ikw1QUQ1ZzY1VERRcjFQUEhIUm9pR2YiLCJyb2xlIjpudWxsLCJzZXFObyI6MTAsInR4blRpbWUiOjE1MTQyMTQ3OTUsInZlcmtleSI6In42dWV3Um03MmRXN1pUWFdObUFkUjFtIn348YCAgKDKj6ZIi+Ob9HXBy/CULIerYmmnnK2A6hN1u4ofU2eihKBna5MOCHiaObMfghjsZ8KBSbC6EpTFruD02fuGKlF1q4CAgICgBk8Cpc14mIr78WguSeT7+/rLT8qykKxzI4IO5ZMQwSmAoLsEwI+BkQFBiPsN8F610IjAg3+MVMbBjzugJKDo4NhYoFJ0ln1wq3FTWO0iw1zoUcO3FPjSh5ytvf1jvSxxcmJxoF0Hy14HfsVll8qa9aQ8T740lPFLR431oSefGorqgM5ioK1TJOr6JuvtBNByVMRv+rjhklCp6nkleiyLIq8vZYRcgIA=",
]
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
}
}
}
Gets information about an Attribute for the specified DID.
NOTE: GET_ATTRIB
for hash
and enc
attributes is something like the "proof of existence",
i.e. reply data contains requested value only.
-
did
(base58-encoded string):Target DID we get an attribute for as base58-encoded string for 16 or 32 bit DID value. It differs from
from
metadata field, wherefrom
is the DID of the sender (may not exist on ledger at all). -
raw
(string; mutually exclusive withhash
andenc
):Requested attribute name.
-
hash
(sha256 hash string; mutually exclusive withraw
andenc
):Requested attribute hash.
-
enc
(string; mutually exclusive withraw
andhash
):Encrypted attribute.
Request Example:
{
"type": 105,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "AH4RRiPR78DUrCWatnCW2w",
"raw": "dateOfBirth"
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "READ_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "N22KY2Dyvmuu2PyyqSFKue",
"raw": "{"name": "Alice"}"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId":"HHAD5g65TDQr1PPHHRoiGf2L:5AD5g65TDQr1PPHHRoiGf:Degree:1.0:CL:key1",
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"state_proof": "+QHl+FGAgICg0he/hjc9t/tPFzmCrb2T+nHnN0cRwqPKqZEc3pw2iCaAoAsA80p3oFwfl4dDaKkNI8z8weRsSaS9Y8n3HoardRzxgICAgICAgICAgID4naAgwxDOAEoIq+wUHr5h9jjSAIPDjS7SEG1NvWJbToxVQbh6+Hi4dnsiaWRlbnRpZmllciI6Ikw1QUQ1ZzY1VERRcjFQUEhIUm9pR2YiLCJyb2xlIjpudWxsLCJzZXFObyI6MTAsInR4blRpbWUiOjE1MTQyMTQ3OTUsInZlcmtleSI6In42dWV3Um03MmRXN1pUWFdObUFkUjFtIn348YCAgKDKj6ZIi+Ob9HXBy/CULIerYmmnnK2A6hN1u4ofU2eihKBna5MOCHiaObMfghjsZ8KBSbC6EpTFruD02fuGKlF1q4CAgICgBk8Cpc14mIr78WguSeT7+/rLT8qykKxzI4IO5ZMQwSmAoLsEwI+BkQFBiPsN8F610IjAg3+MVMbBjzugJKDo4NhYoFJ0ln1wq3FTWO0iw1zoUcO3FPjSh5ytvf1jvSxxcmJxoF0Hy14HfsVll8qa9aQ8T740lPFLR431oSefGorqgM5ioK1TJOr6JuvtBNByVMRv+rjhklCp6nkleiyLIq8vZYRcgIA=",
]
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
}
}
}
Gets Claim's Schema.
-
id
(string):Schema's ID as State Trie key (address or descriptive data). It must be unique within the ledger. It must be equal (or be mapped to) the real key of the SCHEMA state in the State Trie.
Request Example:
{
"type": 105,
"ver": 1,
"protocolVersion": 1,
"data": {
"id":"L5AD5g65TDQr1PPHHRoiGf:Degree:1.0",
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "READ_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"version": "1.0",
"name": "Degree",
"value": {
"attrNames": ["undergrad", "last_name", "first_name", "birth_date", "postgrad", "expiry_date"]
}
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId":"L5AD5g65TDQr1PPHHRoiGf:Degree:1.0",
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"state_proof": "+QHl+FGAgICg0he/hjc9t/tPFzmCrb2T+nHnN0cRwqPKqZEc3pw2iCaAoAsA80p3oFwfl4dDaKkNI8z8weRsSaS9Y8n3HoardRzxgICAgICAgICAgID4naAgwxDOAEoIq+wUHr5h9jjSAIPDjS7SEG1NvWJbToxVQbh6+Hi4dnsiaWRlbnRpZmllciI6Ikw1QUQ1ZzY1VERRcjFQUEhIUm9pR2YiLCJyb2xlIjpudWxsLCJzZXFObyI6MTAsInR4blRpbWUiOjE1MTQyMTQ3OTUsInZlcmtleSI6In42dWV3Um03MmRXN1pUWFdObUFkUjFtIn348YCAgKDKj6ZIi+Ob9HXBy/CULIerYmmnnK2A6hN1u4ofU2eihKBna5MOCHiaObMfghjsZ8KBSbC6EpTFruD02fuGKlF1q4CAgICgBk8Cpc14mIr78WguSeT7+/rLT8qykKxzI4IO5ZMQwSmAoLsEwI+BkQFBiPsN8F610IjAg3+MVMbBjzugJKDo4NhYoFJ0ln1wq3FTWO0iw1zoUcO3FPjSh5ytvf1jvSxxcmJxoF0Hy14HfsVll8qa9aQ8T740lPFLR431oSefGorqgM5ioK1TJOr6JuvtBNByVMRv+rjhklCp6nkleiyLIq8vZYRcgIA=",
]
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
}
}
}
Gets Claim Definition.
-
id
(string):Schema's ID as State Trie key (address or descriptive data). It must be unique within the ledger. It must be equal (or be mapped to) the real key of the SCHEMA state in the State Trie.
Request Example:
{
"type": 105,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"id":"HHAD5g65TDQr1PPHHRoiGf2L:5AD5g65TDQr1PPHHRoiGf:Degree:1.0:CL:key1",
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
},
}
Reply Example:
{
"type": "READ_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"signatureType": "CL",
"schemaRef":"L5AD5g65TDQr1PPHHRoiGf1Degree1",
"publicKeys": {
"primary": ....,
"revocation": ....
},
"tag": "key1",
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 300,
"txnId":"HHAD5g65TDQr1PPHHRoiGf2L:5AD5g65TDQr1PPHHRoiGf:Degree:1.0:CL:key1",
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"state_proof": "+QHl+FGAgICg0he/hjc9t/tPFzmCrb2T+nHnN0cRwqPKqZEc3pw2iCaAoAsA80p3oFwfl4dDaKkNI8z8weRsSaS9Y8n3HoardRzxgICAgICAgICAgID4naAgwxDOAEoIq+wUHr5h9jjSAIPDjS7SEG1NvWJbToxVQbh6+Hi4dnsiaWRlbnRpZmllciI6Ikw1QUQ1ZzY1VERRcjFQUEhIUm9pR2YiLCJyb2xlIjpudWxsLCJzZXFObyI6MTAsInR4blRpbWUiOjE1MTQyMTQ3OTUsInZlcmtleSI6In42dWV3Um03MmRXN1pUWFdObUFkUjFtIn348YCAgKDKj6ZIi+Ob9HXBy/CULIerYmmnnK2A6hN1u4ofU2eihKBna5MOCHiaObMfghjsZ8KBSbC6EpTFruD02fuGKlF1q4CAgICgBk8Cpc14mIr78WguSeT7+/rLT8qykKxzI4IO5ZMQwSmAoLsEwI+BkQFBiPsN8F610IjAg3+MVMbBjzugJKDo4NhYoFJ0ln1wq3FTWO0iw1zoUcO3FPjSh5ytvf1jvSxxcmJxoF0Hy14HfsVll8qa9aQ8T740lPFLR431oSefGorqgM5ioK1TJOr6JuvtBNByVMRv+rjhklCp6nkleiyLIq8vZYRcgIA=",
]
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
}
}
}
A generic request to get a transaction from Ledger by its sequence number.
-
ledgerId
(int enum):ID of the ledger the requested transaction belongs to (Pool=0; Domain=1; Config=2).
-
seqNo
(int):Requested transaction sequence number as it's stored on Ledger.
Request Example (requests a NYM txn with seqNo=9):
{
"type": 105,
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"ledgerId": "1",
"seqNo": 9,
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
},
}
Reply Example (requests a NYM txn with seqNo=9):
{
"type": "READ_REPLY",
"ver": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"results": [
"result": {
"txn": {
"type": 1,
"protocolVersion": 1,
"data": {
"ver": 1,
"did": "2VkbBskPNNyWrLrZq7DBhk",
"role": "101",
"verkey": "31V83xQnJDkZTSvm796X4MnzZFtUc96Tq6GJtuVkFQBE"
},
"metadata": {
"reqId": 1514215425836443,
"from": "L5AD5g65TDQr1PPHHRoiGf",
},
},
"txnMetadata": {
"creationTime": 1514211268,
"seqNo": 9,
},
"reqSignature": {
"type": "ED25519",
"values": [{
"from": "L5AD5g65TDQr1PPHHRoiGf",
"value": "4X3skpoEK2DRgZxQ9PwuEvCJpL8JHdQ8X4HDDFyztgqE15DM2ZnkvrAh9bQY16egVinZTzwHqznmnkaFM4jjyDgd"
}]
},
},
"multiSignature": {
"type": "BLS",
"value": "RTyxbErBLcmTHBLj1rYCAEpMMkLnL65kchGni2tQczqzomYWZx9QQpLvnvNN5rD2nXkqaVW3USGak1vyAgvj2ecAKXQZXwcfosmnsBvRrH3M2M7cJeZSVWJCACfxMWuxAoMRtuaE2ABuDz6NFcUctXcSa4rdZFkxh5GoLYFqU4og6b",
"from": ["Delta", "Gamma", "Alpha"],
"serialization": "MsgPack",
"signedState": {
"ledgerMetadata": {
"ledgerId": 1,
"rootHash": "DqQ7G4fgDHBfdfVLrE6DCdYyyED1fY5oKw76aDeFsLVr",
"size": 300,
},
"stateMetadata": {
"timestamp": 1514214795,
"poolRootHash": "TfMhX3KDjrqq94Wj7BHV9sZrgivZyjbHJ3cGRG4h1Zj",
"rootHash": "7Wdj3rrMCZ1R1M78H4xK5jxikmdUUGW2kbfJQ1HoEpK",
},
}
},
"auditProof": ["Cdsoz17SVqPodKpe6xmY2ZgJ9UcywFDZTRgWSAYM96iA", "3phchUcMsnKFk2eZmcySAWm2T5rnzZdEypW7A5SKi1Qt"],
]
},
"metadata": {
"reqId": 1514215425836444,
"from": "DDAD5g65TDQr1PPHHRoiGf",
}
}
}
Get whole list of frozen ledgers. Reply has follow state format data:
<ledger_id>: {
ledger: <ledger_root_hash>,
state: <state_root_hash>,
seq_no: <last_seq_no>
}
Request Example:
{
"operation":{
"type":"10"
},
"reqId":783857061,
"protocolVersion":2,
"identifier":"M9BJDuS24bqbJNvBRsoGg3"
}
Reply Example:
{
"result":{
"seqNo":3,
"type":"10",
"state_proof":{
"root_hash":"HUv35b31eqncHZ1R8xMQW9pJnCBqAaUVrfCA8AeTtx6u",
"multi_signature":{
"value":{
"pool_state_root_hash":"4bCEk76QsB6p3yCiDntMedpeZmiQtdH9NRpcFyvaLHhc",
"state_root_hash":"HUv35b31eqncHZ1R8xMQW9pJnCBqAaUVrfCA8AeTtx6u",
"timestamp":1613736202,
"ledger_id":2,
"txn_root_hash":"BY6PV9SrV1dgQgxy2kpeTLESQfazTYoLdLZfjzVmcLeV"
},
"signature":"R8FRHVg51YiY5nS8Hh8iXNa1ZPKjrQMmurnrGek2A7QMKq79Pws4DLhgcVgf66PSJGEPjmyASYxFziEnubY1RFHQiE7ZToLZqW4oJt11hhL1XgXwrdswyqTQjuyxx5nzjyE4AzyTvs3BywD54s3w3mUhLG3QWwBp1uTX8agLEKZDkK",
"participants":[
"Gamma",
"Delta",
"Beta"
]
},
"proof_nodes":"+L74vJEgNDpGUk9aRU5fTEVER0VSU7io+Ka4pHsibHNuIjozLCJsdXQiOjE2MTM3MzYyMDIsInZhbCI6eyI5MDkiOnsibGVkZ2VyIjoiR0tvdDVoQnNkODFrTXVwTkNYSGFxYmh2M2h1RWJ4QUZNTG5wY1gyaG5pd24iLCJzZXFfbm8iOjAsInN0YXRlIjoiRGZOTG1INERBSFRLdjYzWVBGSnp1UmRlRXRWd0Y1UnRWbnZLWUhkOGlMRUEifX19"
},
"txnTime":1613736202,
"reqId":666493618,
"data":{
"909":{
"seq_no":0,
"state":"DfNLmH4DAHTKv63YPFJzuRdeEtVwF5RtVnvKYHd8iLEA",
"ledger":"GKot5hBsd81kMupNCXHaqbhv3huEbxAFMLnpcX2hniwn"
}
},
"identifier":"M9BJDuS24bqbJNvBRsoGg3"
},
"op":"REPLY"
}