Guides
Dash CoreDash PlatformDash.orgDash User DocsLog In
These docs are for v0.20.0. Click to read the latest docs for v0.25-redirect.

State Transition

State Transition Overview

State transitions are the means for submitting data that creates, updates, or deletes platform data and results in a change to a new state. Each one must contain:

Fees

State transition fees are paid via the credits established when an identity is created. Credits are created at a rate of 1000 credits/satoshi. The current fee rate is 1 credit/byte.

Size

All serialized data (including state transitions) is limited to a maximum size of 16 KB.

Common Fields

All state transitions include the following fields:

FieldTypeDescription
protocolVersionintegerThe platform protocol version (currently 0)
typeintegerState transition type:
0 - data contract
1 - documents batch
2 - identity create
3 - identity topup
signaturearray of bytesSignature of state transition data (65 bytes)

Additionally, all state transitions except the identity create and topup state transitions include:

FieldTypeDescription
signaturePublicKeyIdintegerThe id of the identity public key that signed the state transition (=> 0)

State Transition Types

Data Contract

FieldTypeDescription
dataContractdata contract objectObject containing valid data contract details
entropyarray of bytesEntropy used to generate the data contract ID (32 bytes)

More detailed information about the dataContract object can be found in the data contract section.

Entropy Generation

Entropy is included in Data Contracts and Documents.

// From the JavaScript reference implementation (js-dpp)
// generateEntropy.js
function generate() {
  return crypto.randomBytes(32);
}

Documents Batch

FieldTypeDescription
ownerIdarray of bytesIdentity submitting the document(s) (32 bytes)
transitionsarray of transition objectsDocument create, replace, or delete transitions (up to 10 objects)

More detailed information about the transitions array can be found in the document section.

Identity Create

FieldTypeDescription
lockedOutPointarray of bytesLock outpoint from the layer 1 locking transaction (36 bytes)
publicKeysarray of keysPublic key(s) associated with the identity (maximum number of keys: 10)

More detailed information about the publicKeys object can be found in the identity section.

Identity TopUp

FieldTypeDescription
lockedOutPointarray of bytesLock outpoint from the layer 1 locking transaction (36 bytes)
identityIdarray of bytesAn Identity ID for the identity receiving the topup (can be any identity) (32 bytes)

State Transition Signing

State transitions must be signed by a private key associated with the identity creating the state transition.

The process to sign a state transition consists of the following steps:

  1. Canonical CBOR encode the state transition data - this include all ST fields except the signature and signaturePublicKeyId
  2. Sign the encoded data with a private key associated with the identity creating the state transition
  3. Set the state transition signature to the value of the signature created in the previous step
  4. For all state transitions other than identity create or topup, set the state transitionsignaturePublicKeyId to the public key id corresponding to the key used to sign

Signature Validation

The signature validation (see js-dpp) verifies that:

  1. The identity has a public key
  2. The identity's public key is of type ECDSA
  3. The state transition signature is valid

The example test output below shows the necessary criteria:

validateStateTransitionSignatureFactory
  ✓ should pass properly signed state transition
  ✓ should return MissingPublicKeyError if the identity doesn't have a matching public key
  ✓ should return InvalidIdentityPublicKeyTypeError if type is not ECDSA_SECP256K1
  ✓ should return InvalidStateTransitionSignatureError if signature is invalid