Joel Uchechukwu pfp
Joel Uchechukwu
@ucjoel
💎 New Testnet : Kakarot Public Testnet 🎁 Reward : Potential 🦊Wallet : Metamask 🔹Network : Kakarot Sepolia ➡️Faucet & RPC: https://sepolia-faucet.kakarot.org/faucet ➡️Experiment with dApps : ➖ Izumi Finance (DEX) https://alpha.izumi.finance/trade/swap ➖ Hisoka Finance (DEX) https://app.hisoka.finance/swap ➖ Goku Hub (DEX) https://gokuhub.com/home?kian=kakarot+0xeC78400CD786b27e025021e42D028652434ECa4A ➖ Swaplace (OTC Marketplace) https://swaplace.xyz/ ➡️Deploy smart contracts : Experiment with deploying smart contracts on the Kakarot testnet and test our zkEVM technology. ➡️Open : https://remix.ethereum.org ➖ Click New File ➖ Create Name "test.sol" ➖ Paste the below Code on "test.sol"
0 reply
0 recast
0 reaction

Joel Uchechukwu pfp
Joel Uchechukwu
@ucjoel
The below is the code: pragma solidity 0.8.17; // SPDX-License-Identifier: MIT contract TOKEN_NAME { string public name = "TOKEN NAME"; string public symbol = "SIMBOL NAME"; uint8 public decimals = 18; uint256 public totalSupply = 10000000000; mapping (address => uint256) public balances; address public owner; constructor() { owner = msg.sender; balances[owner] = totalSupply; } function transfer(address recipient, uint256 amount) public { require(balances[msg.sender] >= amount, "Insufficient balance."); balances[msg.sender] -= amount; balances[recipient] += amount; } } ➖ Go to Menu "Solidity Compiler" ➖ Compile test.sol ➖ Go to Menu "Deploy & Run Transaction" ➖ Change "Environment" to "Injected Provider MetaMask" ➖ Change "Account" to Your Wallet Address or Connect Wallet ➖ Click "Deploy" ➖ Approve Transaction ➖ Done 😀Note : Please use new wallet or wallet testnet for safety
0 reply
0 recast
0 reaction