VENOM BLOCKCHAIN
Accounts
Storage
2min
The following gives an overview of the storage fields:
- last_trans_lt - logical time of the last transaction.
- init_code_hash - Initial contract code hash when first deploying the contract.
- state - the current state of an account
The current state of an account, as defined via state , can have one of the following values:
- uninit - code and data have not yet been initialized, the account only has a balance.
- active - code and data of the account have been initialized.
- frozen - account's balance is still explicitly stored but its code and data have been replaced with a hash. (If the balance is negative, it may indicate outstanding storage payments).
- nonexist - account does not exist.
last_paid - timestamp of latest storage payment. used - information about how many cells and bits the account stores. due_payment - the amount of the account's storage debt.