Struct everscale_types::models::account::Account
source · pub struct Account<C: CellFamily> {
pub address: IntAddr,
pub storage_stat: StorageInfo,
pub last_trans_lt: u64,
pub balance: CurrencyCollection<C>,
pub state: AccountState<C>,
pub init_code_hash: Option<CellHash>,
}Expand description
Existing account data.
Fields§
§address: IntAddrAccount address.
storage_stat: StorageInfoStorage statistics.
last_trans_lt: u64Logical time after the last transaction execution.
balance: CurrencyCollection<C>Account balance for all currencies.
state: AccountState<C>Account state.
init_code_hash: Option<CellHash>Optional initial code hash.