const StoreKeyUnDelegationLockupPeriod, StoreKeyTotalDelegatedAmount, StoreKeyTotalLockedAmount, StoreKeyDelegationNextID, StoreKeyDelegations, StoreKeyTotalDelegationHistory, StoreKeyUserDelegationHistory, StoreKeyEmissionRewardManager, StoreKeyProtocolFeeRewardManager, StoreKeyDelegationManager, StoreKeyLaunchpadProjectDeposits
1const (
2 // Basic configuration
3 StoreKeyUnDelegationLockupPeriod = "unDelegationLockupPeriod"
4 StoreKeyTotalDelegatedAmount = "totalDelegatedAmount"
5 StoreKeyTotalLockedAmount = "totalLockedAmount"
6
7 // Counters
8 StoreKeyDelegationNextID = "delegationNextID"
9
10 // Complex data structures
11 StoreKeyDelegations = "delegations" // BPTree of delegations
12 StoreKeyTotalDelegationHistory = "totalDelegationHistory" // UintTree: timestamp -> int64 (cumulative total)
13 StoreKeyUserDelegationHistory = "userDelegationHistory" // BPTree: address -> *UintTree[timestamp -> int64]
14
15 // Manager states
16 StoreKeyEmissionRewardManager = "emissionRewardManager"
17 StoreKeyProtocolFeeRewardManager = "protocolFeeRewardManager"
18 StoreKeyDelegationManager = "delegationManager"
19 StoreKeyLaunchpadProjectDeposits = "launchpadProjectDeposits"
20)Storage key constants