From f8098ab1b06c485571b78839f5f72ad26f23cda6 Mon Sep 17 00:00:00 2001 From: jakob Date: Mon, 24 Jul 2023 11:38:54 +0200 Subject: [PATCH] fix: Remove reference to storage rent 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