Skip to content

Commit

Permalink
Update specs/DataStructures/Account.md
Browse files Browse the repository at this point in the history
Co-authored-by: Marcelo Fornet <mfornet94@gmail.com>
  • Loading branch information
frol and mfornet committed Aug 1, 2024
1 parent a185da6 commit ab5c336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/DataStructures/Account.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Every account has its own storage. It's a persistent key-value trie. Keys are or
The storage can only be modified by the contract on the account.
Current implementation on Runtime only allows your account's contract to read from the storage, but this might change in the future and other accounts's contracts will be able to read from your storage.

NOTE: Accounts must maintain a minimum amount of value at a rate of 1 NEAR per 1 megabyte of total storage in order to remain responsive. This includes storage of the account itself, contract code, contract storage and all access keys. Any account with less than this minimum amount will not be able to maintain a responsive contract and will, instead, return an error related to this mismatch in storage vs minimum account balance.
NOTE: Accounts must maintain a minimum amount of value at a rate of 1 NEAR per 100kb of total storage in order to remain responsive. This includes the storage of the account itself, contract code, contract storage, and all access keys. Any account with less than this minimum amount will not be able to maintain a responsive contract and will, instead, return an error related to this mismatch in storage vs. minimum account balance.

#### Access Keys

Expand Down

0 comments on commit ab5c336

Please sign in to comment.