Deploy an example smart contract
This guide is for individual users with some technical skills who want to deploy a simple `Storage` smart contract on Humanode network.
You should have:
0xAddress...
- your ETH address that is imported into a ETH supported wallet connected to Humanode Israfel Testnet. In this case, it's Humanode Testnet 5 with the following rpc url:https://explorer-rpc-ws.testnet5.stages.humanode.io
.

Tools
Steps
Open the Remix IDE and choose default
Storage.sol
contract.

Go to the
Compile
tab and compile the contract.

Go to the
Deploy
tab and deploy the contract with injected metamask wallet connected to the Humanode network.

Check
Deployed Contracts
tab. You should be able to see astore
call andretrieve
read method.

Let's check the deployed contract by storing a value of 10. Input the value and click on
transact
tab.

Now click on
retrieve
tab and verify that the stored value in smart contract is 10.

Last updated