dpp/state_transition/state_transitions/
common_fields.rs

1pub mod property_names {
2    pub const STATE_TRANSITION_PROTOCOL_VERSION: &str = "$version";
3    pub const IDENTITY_CONTRACT_NONCE: &str = "identityContractNonce";
4    pub const IDENTITY_NONCE: &str = "identityNonce";
5
6    pub const USER_FEE_INCREASE: &str = "userFeeIncrease";
7    pub const SIGNATURE_PUBLIC_KEY_ID: &str = "signaturePublicKeyId";
8    pub const SIGNATURE: &str = "signature";
9    pub const TRANSITION_TYPE: &str = "type";
10    pub const REVISION: &str = "revision";
11
12    pub const NONCE: &str = "nonce";
13}