ai analyst backend bitcoin blockchain community manager crypto cryptography cto customer support dao data science defi design developer relations devops discord economy designer entry level erc erc 20 evm front end full stack gaming ganache golang hardhat intern java javascript layer 2 marketing mobile moderator nft node non tech open source openzeppelin pay in crypto product manager project manager react refi research ruby rust sales smart contract solana solidity truffle web3 py web3js zero knowledge
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 | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 | |||
Bondex | Remote |
| |||
molecule.xyz | New York, NY, United States | $84k - $90k |
Animoca Brands Limited
$72k - $100k estimated
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
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:
- balanceOf(address): Returns the token balance of a specific address.
- transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
- approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
- allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
- User1 owns 500,000 ABC Tokens.
- User2 wants to buy 100 ABC Tokens from User1.
- User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
- User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
- The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.