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.

Storage type is [StorageMap] with key type T :: AccountId and value type StakingDetails < T >.

Aliased Type§

struct StakingAccountLedger<T: Config>(/* private fields */);