Erc 20 Jobs in Web3

232 jobs found

Receive emails of Erc 20 Jobs in Web3
Job Position Company Posted Location Salary Tags

MetaWealth

Bucharest, Romania

$81k - $87k

D3

San Francisco, CA, United States

$90k - $106k

Limit Break

United States

$81k - $100k

ResearchHub

Remote

$67k - $100k

D3

Los Angeles, CA, United States

$87k - $104k

D3

Los Angeles, CA, United States

$122k - $150k

Salt Technologies

Pune, India

$86k - $150k

molecule.xyz

Berlin, Germany

$105k - $120k

Molecule

New York, NY, United States

$105k - $120k

molecule.xyz

United States

$45k - $64k

Molecule

Berlin, Germany

$76k - $90k

Molecule

New York, NY, United States

$36k - $54k

molecule.xyz

New York, NY, United States

$98k - $110k

SORAMITSU

Tokyo, Japan

$67k - $70k

MetaWealth
$81k - $87k estimated
Bucharest
Apply

Senior Blockchain Engineer - Solidity

London / Bucharest / Kiew
Product & Engineering – Product /
Remote/Europe Based Only /
Remote

Apply for this job
We are looking for an Senior Blockchain Engineer  to help design and develop secure, efficient, and scalable smart contracts for our Real-World Asset (RWA) protocol. You will play a key role in building DeFi functionalities, staking mechanisms, liquidity management, and DAO governance. This role requires experience in Solidity, Hardhat, Foundry, OpenZeppelin, and gas-optimized smart contract development.

Responsibilities

    • Develop secure and efficient smart contracts in Solidity for an RWA protocol
    • Write comprehensive tests using Foundry, Hardhat, and JestAudit and optimise smart contracts to identify and mitigate potential security vulnerabilities
    • Build client libraries (ethers.js, web3.js) to enable easy integrationsImplement gasless transactions
    • Collaborate closely with backend and product teams to integrate smart contracts into the broader system
    • Stay updated with the latest EVM advancements, security best practices, and DeFi innovations

Tech Stack

    • Smart Contract Development: Solidity, Hardhat, Foundry, OpenZeppelin
    • Blockchain Development: EVM-based chains
    • Libraries & Testing: ethers.js, web3.js, Jest
    • Security & Optimization: Gas optimisations, smart contract security, EIP-3009

Qualifications

    • 3+ years of experience developing EVM-based smart contracts
    • Strong knowledge of Solidity, Hardhat, and Foundry
    • Experience working on DeFi, RWA, staking, liquidity pools, and DAOs
    • Deep understanding of gas optimisations and security best practices
    • Familiarity with ERC-20, ERC-721, ERC-1155, and EIP-3009 for gasless transactions
    • Ability to write secure and well-documented smart contracts
    • Experience with auditing smart contracts and working with security firms

Nice to Have

    • Experience with bridges and Layer 2 scaling solutions
    • Knowledge of cross-chain communication
    • Familiarity with on-chain KYC mechanisms
Apply for this job

What is ERC20 example?

ERC20 is a standard for fungible tokens on the Ethereum blockchain

Here is an example of an ERC20 token

Let's say we create a new ERC20 token called ABC Token with a total supply of 1,000,000 tokens

Each token will be divisible up to 18 decimal places

To implement the ERC20 standard, we will need to define several functions, including:

  1. balanceOf(address): Returns the token balance of a specific address.
  2. transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
  3. approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
  4. allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
  5. User1 owns 500,000 ABC Tokens.
  6. User2 wants to buy 100 ABC Tokens from User1.
  7. User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
  8. User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
  9. The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.