Skip to main content

platform_version/version/
feature_initial_protocol_versions.rs

1use crate::version::ProtocolVersion;
2
3pub const ADDRESS_FUNDS_INITIAL_PROTOCOL_VERSION: ProtocolVersion = 11;
4pub const SHIELDED_POOL_INITIAL_PROTOCOL_VERSION: ProtocolVersion = 12;
5/// `ShieldFromIdentity` (identity balance to shielded pool) activates with protocol version 14.
6pub const SHIELD_FROM_IDENTITY_INITIAL_PROTOCOL_VERSION: ProtocolVersion = 14;
7/// `IdentityTopUpFromShieldedPool` (shielded pool to an existing identity's balance) activates with
8/// protocol version 14.
9pub const IDENTITY_TOP_UP_FROM_SHIELDED_POOL_INITIAL_PROTOCOL_VERSION: ProtocolVersion = 14;
10/// `IdentityKeyLimitsUpdate` (raising the budget or extending the expiry of an authentication
11/// key) activates with protocol version 14.
12pub const IDENTITY_KEY_LIMITS_UPDATE_INITIAL_PROTOCOL_VERSION: ProtocolVersion = 14;