계정 데이터 구조
FRAME에서 계정에 사용되는 저장 맵 데이터 구조를 설명합니다.
Account
/// 특정 계정 ID에 대한 전체 계정 정보입니다.
#[pallet::storage]
#[pallet::getter(fn account)]
pub type Account<T: Config> = StorageMap<
_,
Blake2_128Concat,
T::AccountId,
AccountInfo<T::Nonce, T::AccountData>,
ValueQuery,
>;AccountInfo
계정 참조 카운터
AccountData 트레이트와 구현
다음으로 이동할 위치
Last updated