How to BUY and SELL RAM

in #blockchain6 years ago (edited)

What is the whole big deal about RAM?

We often see the word "RAM" juxtaposed next to EOS on THE daily crypto newsfeed, but what the heck is RAM anyway and why should we keep an eye on its price even for the folks who just only want to dive their heads down into smart contract development. There essentially three type of resources in Eos: bandwidth (Network), computation and computational backlog (CPU) and state storage (RAM). RAM is essentially the gas that fuels each transaction invoked within the smart contract, unlike disk and CPU which are fractional resources acquired through staking tokens, RAM is one which needs to be purchased from eosio.ram with a price pre-determined by the Bancor algorithm. The Bancor algorithm will dynamically facilitate the price base on the current demand and supply of RAM and settles it at a market equilibrium. Therefore, all transaction to buy and sell ram is a unilateral transaction with eosio.ram. The secondary ram market incentivizes those will RAM reserves that have no use of it to sell it to those that need them. Because Eosio endorses a free-for-user philosophy, the burden of running the network falls on the developers. We need to reserve enough RAM for our smart contracts to function properly on the Eos network.

Buy Ram

Throughout our smart contract development on the EOS platform, we may encounter a situation in which the RAM that we are allocated doesn't fulfill the requirement for deploying the contract. In such cases, we'll need to purchase additional ram with EOS token in order to proceed with contract deployment. This entire process can be accomplished with the CLI tools, namely keosd and cleos, provided by Eos-io. In our previous articles, we have gone through the procedure of setting up a local development environment for testing smart contracts. If you have followed those steps, we can interact with main-net and test-net with the same tools with a few configuration changes.

Let's start by pointing our cleos application to a test-net node instead of our local running nodeosd. We can create an additional alias to register this configuration.

alias cleos-test='docker exec -i keosd /opt/eosio/bin/cleos -u http://jungle.eos9cat.com:8888 --wallet-url http://localhost:8900'

In the above command, we have created the alias cleos-test to quickly interact with the eos test-network node provided by eos9cat. Notice that we are still relying on our local wallet application for handling our private keys. As long as we have the corresponding private key imported in an unlocked wallet.

Tips: If you want to save the command persistently, you can put the command inside of the file ~/.bashrc if you are on linux and ~/.bash_profile for mac.

1.png

Sometimes when you deploy an application contract that contains more complex logic, you might get an error message similar to the above screenshot hinting that the smart contract account has the insufficient ram to deploy the contract. Unlike
In such a case, we have to buy more ram from the eosio.ram.

We can first quickly check our ram allocation by issuing the following command:

cleos-test get account ${accountname}

2.png

The quota attribute under the memory section indicates the amount of ram that the account allotted.

Now that we know how much ram we are entitled to, how can we possibly know how much ram we need to deploy our smart contract? Since the Eosio blockchain executes user-generated applications and code using Web Assembly, we can get a rough estimate about the number of kilobytes needed to executed the smart contract by summing the size of *.wasm and *.abi files. In addition to figuring the rough estimate, we will have to determine the amount Eos token that will be required to purchase the ram.

The Eos blockchain platform relies on the Bancor Algorithm to facilitate the secondary ram market through a unilateral transaction model, we can determine the Eos ram price by consulting ram market table exposed by the system contract and performing some simple calculation.

3.png

To acquire the EOS/KiB, we need to divide the quote.balance - the connector balance - by the base.balance - the ram token outstanding supply and finally multiply the value by 1024 (quote.balance/base.balance)*1024.

In my example with the smart contract that I wanted to deploy will require around 100 KiB which will cost around 31.70 EOS token. We can then proceed with the actual transaction by issuing the following command through Cleos.

cleos-test system buyram -k ${payer} ${reciever} amount

The k flag will indicate the amount parameter indicates the amount of KiB to purchase, the system contract transaction will automatically deduct the appropriate amount of EOS token from the payer's account. Without the k flag, the amount will indicate the amount EOS token wishing to be spent. Likewise, an appropriate amount of ram will be added to the account according to the ram price.

4.png

If we now deploy the contract again it should succeed.

5.png

Selling Ram

For the unneeded ram that the account is currently occupying, it is possible to exchange the resource for some EOS token through the system contract by a price settle by the Banchor Algorithm. Selling ram is a similar process to buying ram on eos blockchain.

cleos-test system sellram ${account} bytes

A successful transaction will look similar to this:

6.png

Persistent Storage

RAM is arguably the single most sought-after resource on the Eos blockchain platform due to its flexibility. Not only RAM can be used for store intermediate states of computation, it can also be used as a persistent storage. The multi-indexed database is a data structure within Eos that provides flexibility in where the data is stored depending on how the scope is defined. Multi-indexed db will house the persistent data in a table format. In fact, unlike many other popular smart contract platforms, the transactions within the Eos smart contracts cannot return any value or variable, which mean any data captured by RAM cannot be returned to the caller by the transaction. In order to gain access to the variable value within the smart contract, e.g. result of a certain computation and transaction, the data needs to be updated through a multi-index db table with a scope, an associative link to the data stored normally in the form of account name of the caller or the account name of the smart contract itself, then the data can be retrieved by gettable API with the appropriate contract name, scope, and name of the table.

For example, the amount of EOS tokens that each account has been stored in the multi-indexed db defined within the eosio.token contract that composes of a small chunk of RAM from each the account defining the scope. We can retrieved the amount of token that a certain account has directly from the db with following command:

cleos-test get table eosio.token ${account} accounts

7.png

The table name in the above command is accounts, and the scope is the individual account name. It's logical to assign the account balance information with the account that actually owns them. On the other hand, if we wish to retrieve information about the EOS token itself, we'll need to look into another scope with a different table even though the information is encoded within the same smart contract:

cleos-test get table eosio.token EOS stats

Determining the scope and table name can be tricky especially for contracts that are produced by others, the table name can normally be quickly retrieved by looking at the abi of the contract.

8.png

The scope is harder, but it can be determined by looking through the parameter when the reference to the multi-indexed db is made within the code.

9.png

The first underlined part shows the reference to the stats table is made with ‘sym’ parameter which denotes the SYMBOL of the token; hence the scope of the table is the SYMBOL of the token.

The first underlined part depicts the line that makes the reference to the accounts table when the balance is subtracted during a transaction. This line of code hints that the scope of the table accounts is an account name. For more tutorial and information about using multi-index db within smart contracts, please stay tuned for our next article.

Upgrade Contract

Since the connection between the smart contract itself to the multi-index db stored on local disk is merely a reference link, this feature in conjunction with deploying a contract multiple times with the same account grants the feature to upgrade smart contracts in the eos ecosystem. The reference to the data can be made in the new smart contract as long as key features that define the multi-index db is identical across the old and new smart contract.

In some cases, you may even find it useful to free up RAM for sales by deploying an empty contract or one that is significantly less in size while still keeping the data related to the former contract on persistent storage.

Contact/About us

If you are an advanced blockchain user, feel free to use any of those tools that you are comfortable with.

If you like what we do and believe in [EOS9CAT](www.eos9cat.com0, vote for eosninecatbp! Waiting for your support. Have a question, send an email to us or visit our website.

FOLLOW US on Facebook, Telegram, Medium, SteemIt, Github, Meetup E0S9CAT, Reddit, Twitter, and LinkedIn.

References:

https://medium.com/@bytemaster/eosio-ram-market-bancor-algorithm-b8e8d4e20c73

Sort:  

Congratulations @eos9cat! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :

Award for the number of upvotes received

Click on the badge to view your Board of Honor.
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

Do not miss the last post from @steemitboard:
SteemitBoard and the Veterans on Steemit - The First Community Badge.

Do you like SteemitBoard's project? Then Vote for its witness and get one more award!

Coin Marketplace

STEEM 0.27
TRX 0.11
JST 0.032
BTC 64579.45
ETH 3101.05
USDT 1.00
SBD 3.83