Struct everscale_types::models::account::Account
source · pub struct Account {
pub address: IntAddr,
pub storage_stat: StorageInfo,
pub last_trans_lt: u64,
pub balance: CurrencyCollection,
pub state: AccountState,
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: CurrencyCollectionAccount balance for all currencies.
state: AccountStateAccount state.
init_code_hash: Option<CellHash>Optional initial code hash.