Erc 20 Jobs in Web3
232 jobs found
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 |
---|---|---|---|---|---|
MetaWealth | Bucharest, Romania | $81k - $87k | |||
D3 | San Francisco, CA, United States | $90k - $106k | |||
Limit Break | United States | $81k - $100k | |||
ResearchHub | Remote | $67k - $100k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 | |||
CoW DAO (CoW Swap) | Remote | $80k - $120k |
MetaWealth
$81k - $87k estimated
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:
- 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.