Setup metamask on custom egem network https://lb.rpc.egem.io
Go to solidity and start to play http://remix.ethereum.org
Take a simple token template https://www.proofsuite.com/smartcontract/ Create smart contract.
#Change initialSupply name decimals and symbol
function Token() {
initialSupply = 5000000000000000000000000000000;
name ="chainlink";
decimals = 18;
symbol = "LINK";
balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens
totalSupply = initialSupply; // Update total supply
}
Copy and paste the entire thing into notepad and save somewhere.
#Go to solidity/remix and create a new .sol file.
#Copy and paste your token contract into this new .sol file.
Pick an older compiler and click "start to compile"
On the Run tab, make sure Token pops up and moonit! (Deploy button)
Metamask will pop up to confirm deployment. Wait a minute or so to get the contract deployed on the EGEM blockchain.
Now go get your token listed on an exchange and lambo.
Check stats in solidity/remix
Check token on explorer. 0xe2a7c5a4affcfc041fc1b2612811d51669a4e7a5
https://explorer.egem.io/addr/0xe2a7c5a4affcfc041fc1b2612811d51669a4e7a5
Homepage - https://egem.io/
Discord - https://discord.gg/39WGWRB
Wiki - https://wiki.egem.io
Links - https://egem.link/