Erc 20 Jobs in Web3

281 jobs found

web3.career is now part of the Bondex Logo Bondex Ecosystem

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

Animoca Brands Limited

Singapore, Singapore

$72k - $100k

Improbable

London, United Kingdom

$81k - $87k

Belmont Lavan

United States

$54k - $87k

Belmont Lavan Ltd

United States

$54k - $87k

Veda Tech Labs

Remote

$170k - $240k

Animoca Brands Limited

Hong Kong, Hong Kong

$86k - $90k

NeerInfo Solutions

Dallas, TX, United States

$87k - $112k

Sunrise Investment International

San Diego, CA, United States

$63k - $70k

Animoca Brands Limited

Hong Kong, Hong Kong

$72k - $90k

Molecule

New York, NY, United States

$84k - $120k

molecule.xyz

Berlin, Germany

$90k - $150k

Mundy Buddy Publishing LLC.

United States

$72k - $112k

Molecule

New York, NY, United States

$84k - $90k

molecule.xyz

New York, NY, United States

$84k - $90k

Animoca Brands Limited
$72k - $100k estimated
Singapore
Apply

Junior Smart Contract Developer

Remote / Singapore
Animoca Brands Limited – Mocaverse /
Full Time Employee /
Hybrid

Apply for this job
About Moca Network

Moca Network, one of Animoca Brands' flagship projects, is building the chain-agnostic digital identity infrastructure for the open internet by providing one universal account for a user's assets, identity, and reputation across multiple ecosystems. The primary product built by Moca Network is AIR Kit, a digital identity infrastructure that  enables Web2 and Web3 projects to create a universal embedded account for users to own and use digital assets, identity, and reputation data, while gaining access to a suite of DeFi and consumer services provided by Moca Network's partners. AIR Kit empowers large user base apps to create their own app ecosystem natively with embedded blockchain features, while ensuring these users can use the same account, identity, reputation across all consumer apps on any chains that have adopted AIR Kit.

This Junior Smart Contract Developer would help design, implement, and maintain production-grade smart contracts powering Moca Network’s core products: onchain identity, asset primitives (ERC-721/1155/20), loyalty/rewards, and cross-project integrations. You’ll work closely with senior engineers and product teams to deliver secure, gas-optimised, and well-tested contracts that scale.
This is a hands-on role ideal for someone with 2–3 years of experience writing Solidity smart contracts and a strong understanding of EVM fundamentals, testing, and deployment practices.

Responsibilities:

    • Implement and maintain Solidity smart contracts for tokens, access control, staking/rewards, allowlists, vesting, and upgradeable modules.
    • Write comprehensive Foundry/Hardhat tests (unit, fuzz, property-based, invariant) to ensure security and correctness.
    • Optimize gas usage, storage layout, and execution paths; profile and benchmark contract performance.
    • Integrate contracts with off-chain services and dApps via well-structured ABIs and event design; collaborate with frontend/backend teams.
    • Participate in code reviews, threat modeling, and audit cycles; respond to audit findings and contribute remediations.
    • Contribute to deployment pipelines, versioning, and multi-network release management (testnets and mainnets).
    • Create clear technical documentation for contracts, protocols, and integration guides.
    • Track ecosystem upgrades (EIPs, L2 features, account abstraction, ERC-4337, EigenLayer/LRT trends, etc.) and propose practical adoption paths.

Requirements:

    • 2–3 years of professional experience developing EVM smart contracts in Solidity.
    • Proficiency with Hardhat and/or Foundry for compilation, testing, and deployment.
    • Strong understanding of EVM execution model, opcodes, calldata/memory/storage, reentrancy, and delegatecall patterns.
    • Common standards: ERC-20, ERC-721, ERC-1155, EIP-2612, EIP-712, Ownable/AccessControl, Upgradeability (UUPS/Transparent).
    • Security best practices: access control, rate limiting, pull over push payments, checks-effects-interactions, pause/guardian patterns.
    • Familiarity with gas optimization techniques and tradeoffs.
    • Experience deploying to public testnets/mainnets and managing contract addresses, verifications, and ABIs.
    • Comfortable with Git, code reviews, and collaborative workflows.
The Perks of Joining Animoca Brands:
A Vibrant and Diverse Workplace: Immerse yourself in a dynamic, multi-cultural environment with colleagues from over 15 nationalities (and growing!). We celebrate diversity and foster a global perspective.
Incentives in the Web3 Space: Be a part of the future and align your success with the growth of our innovative projects.
Direct Impact and Flat Structure: Your voice matters. We operate with a flat organizational structure, ensuring your ideas are heard and implemented quickly.
Comfortable and Creative Atmosphere: Embrace a relaxed and productive work environment with casual attire.
Opportunities Across the Ecosystem: Expand your horizons by collaborating with various subsidiary brands within the Animoca Brands network, gaining exposure to a wide range of projects and technologies.
Comprehensive Benefits Package: We care about your well-being. Enjoy a comprehensive benefits package, including medical, life, and transportation allowances.

Personal Information Collection Statement:
Personal data provided by the Job Applicant will be used strictly in accordance with the Employer's Personal Data Policies, a copy of which will be provided immediately upon his/her request. All classified data will be treated confidentially within the Human Resources & Administration Department. Personal data of unsuccessful applicants may be retained for a period of up to 3 months.
Apply for this job
⬇
Apply Now

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.