Soho (SOHO) is an ERC-20 token deployed on the Ethereum mainnet.
The contract was developed, deployed, and verified using Hardhat.
- Name: Soho
- Symbol: SOHO
- Decimals: 18
- Initial Supply:
1000000000000000000000010(1,000,010 SOHO) - Deployer Address: 0xf5d793B2a30C77442874518b0Ea83354B7a0242f
- Contract Address: 0xf5d793B2a30C77442874518b0Ea83354B7a0242f
The contract is verified and publicly available on Etherscan:
🔗 View on Etherscan
- Open MetaMask and click Import Tokens.
- Enter the contract address:
0xf5d793B2a30C77442874518b0Ea83354B7a0242f - The token symbol (
SOHO) and decimals (18) should auto-populate. - Confirm to add the token.
Clone the repo and install dependencies:
git clone https://github.com/Ekta17/sohocoin.git
cd sohocoin
npm installCompile contracts:
npx hardhat compileCheck balances:
npx hardhat console --network mainnet
> const soho = await ethers.getContractAt("ERC20", "0xf5d793B2a30C77442874518b0Ea83354B7a0242f");
> (await soho.balanceOf("0xYourAddress")).toString();Transfer tokens:
await soho.transfer("0xRecipientAddress", ethers.utils.parseUnits("10", 18));This repo uses Hardhat for smart contract development and deployment.
Scripts include:
deploy.js– deploys the contractverify.js– verifies the contract on Etherscan
This project is licensed under the MIT License.