Skip to content

Repository files navigation

Soho (SOHO) ERC20 Token

Soho (SOHO) is an ERC-20 token deployed on the Ethereum mainnet.
The contract was developed, deployed, and verified using Hardhat.


Token Details


Etherscan

The contract is verified and publicly available on Etherscan:
🔗 View on Etherscan


Usage

Add Token to MetaMask

  1. Open MetaMask and click Import Tokens.
  2. Enter the contract address:
    0xf5d793B2a30C77442874518b0Ea83354B7a0242f
    
  3. The token symbol (SOHO) and decimals (18) should auto-populate.
  4. Confirm to add the token.

Interacting with the Token (Hardhat)

Clone the repo and install dependencies:

git clone https://github.com/Ekta17/sohocoin.git
cd sohocoin
npm install

Compile contracts:

npx hardhat compile

Check 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));

Development

This repo uses Hardhat for smart contract development and deployment.

Scripts include:

  • deploy.js – deploys the contract
  • verify.js – verifies the contract on Etherscan

License

This project is licensed under the MIT License.

About

Soho Coin is a ERC20 token

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors