pub type StakingAccountLedger<T: Config> = StorageMap<_GeneratedPrefixForStorageStakingAccountLedger<T>, Twox64Concat, T::AccountId, StakingDetails<T>>;Expand description
Storage for keeping a ledger of staked token amounts for accounts.
- Keys: AccountId
- Value:
StakingDetails
Storage type is [StorageMap] with key type T :: AccountId and value type StakingDetails < T >.
Aliased Typeยง
struct StakingAccountLedger<T: Config>(/* private fields */);