From 2e0a9298168c5a87a2a818513c1f0c436e0d36bc Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 30 Jul 2023 16:57:47 +0200 Subject: [PATCH] fix: Remove reference to storage rent (#489) Storage rent has been superseded by storage staking a long time ago. This commit updates the account specification accordingly. --- specs/DataStructures/Account.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/specs/DataStructures/Account.md b/specs/DataStructures/Account.md index a8cc3c2e8..91b0c537e 100644 --- a/specs/DataStructures/Account.md +++ b/specs/DataStructures/Account.md @@ -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