Deploys a KIP20 smart contract with a message, and renders it in the front-end. You can interact with the smart contract easily! This DApp implements a "Hello World" style application that echoes a message passed to the contract to the front end. This tutorial is intended to be followed using the online IDE available at remix IDE.
The first line, pragma solidity ^0.5.16
specifies that the source code is for a Solidity version greater than 0.5.16. Pragmas are common instructions for compilers about how to treat the source code (e.g., pragma once).
A contract in the sense of Solidity is a collection of code (its functions) and data (its state) that resides at a specific address on the Ethereum blockchain. Learn more about the constructor and memory in the docs.
Now, We have to deploy our smart contract on OKTC Network. For that, we have to connect to Web3 world, this can be done my many services like Metamask, Brave, Portis etc. We will be using Metamask. Please follow this tutorial to setup a Metamask Account.
Open Metamask and select Custom RPC from the networks dropdown
Go to setting page
Add a new network
Testnet * RPC URLs * ChainID: exchain-65 * Symbol: OKT * Block explorer: https://www.okx.com/explorer/oktc-test
Mainnet * RPC URLs * ChainID: exchain-66 * Symbol: OKT * Block explorer: https://www.okx.com/explorer/
Go ahead and click save
Copy your address from Metamask
Head over to Faucet and request test OKT
Now, let’s deploy the smart contract on OKTC testnet
Select injected Web3 in the environment dropdown and your contract
Accept the connection request!
Once Metamask is connected to remix, the ‘Deploy’ transaction would generate another metamask popup that requires transaction confirmation. Congratulations! You have successfully deployed a KIP20 Contract. Now you can interact with the Smart Contract. Check the deployment status here: https://www.okx.com/explorer/oktc-test
If contract creation initialization returns data with length of more than 24576 bytes, contract will be fail to created with "Contract code size over limit" error due to EIP-170. Check the "Enable optimization" checkbox when compiling to solve this error of some large size contracts.