Skip to content

Commit

Permalink
fix: Remove reference to storage rent (#489)
Browse files Browse the repository at this point in the history
Storage rent has been superseded by storage staking a long time ago.
This commit updates the account specification accordingly.
  • Loading branch information
jakmeier authored Jul 30, 2023
1 parent 4886221 commit 2e0a929
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion specs/DataStructures/Account.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ 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 are charged recurrent rent for the total storage. This includes storage of the account itself, contract code, contract storage and all access keys.
NOTE: To pay for blockchain storage, the protocol locks a token amount per account proportional to its state size.
This includes storage of the account itself, contract code, contract storage and all access keys.
See [Storage Staking](https://docs.near.org/concepts/storage/storage-staking) in the docs.

#### Access Keys

Expand Down

0 comments on commit 2e0a929

Please sign in to comment.