You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The contracts is called `StorageTest` and it has two functions
144
-
>Fn `set`, sets the data you want to store in the contract
145
-
>Fn `get`, gets the saved data you have already stored
144
+
* Fn `set`, sets the data you want to store in the contract
145
+
* Fn `get`, gets the saved data you have already stored
146
146
147
147
Since every call to ethereum storage is a transaction (txn) requiring gas we will execute txns to save/store the data. `get` will get this data without costing gas, see steps 4 of section _Contract Deployment and testing on the UC_ to know what is `gas` and how to get it for the UC.
148
148
@@ -184,9 +184,9 @@ make sure to transfer (using the [ost-sdk-ruby](https://github.com/OpenSTFoundat
184
184
For executing this step you will need to [register for OST KIT⍺](https://dev.ost.com/docs/kit.html). Complete the steps in this tutorial.
185
185
186
186
5. In a separate console spin up an official OST KIT⍺ sdk and execute the new [transfers api](https://dev.ost.com/docs/api_transfers_create.html)
Here we show the example of the JavaScript SDK. Make sure that the `to_address` is the coinbase address you copied previously, the amount required can be understood [from dev.ost.com documentation](https://dev.ost.com/docs/api_transfers_create.html#amount)
0 commit comments