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 |
---|---|---|---|---|---|
Nibiru | Remote | $63k - $80k | |||
Lukso | New York, NY, United States | $36k - $75k | |||
Lukso | International | $36k - $90k | |||
ENS Labs | Remote | $105k - $120k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Unreal Gigs | Remote | $72k - $75k | |||
0x | San Francisco, CA, United States | $105k - $120k | |||
Lukso | New York, NY, United States | $86k - $90k | |||
Lukso | International | $36k - $90k | |||
Lukso | International | $86k - $90k | |||
Lukso | New York, NY, United States | $36k - $90k | |||
Lukso | New York, NY, United States | $86k - $90k | |||
Kastech Software Solutions Group | Charlotte, NC, United States | $72k - $78k | |||
Minutes to Seconds | New York, NY, United States | $39k - $65k | |||
CodeQuadrat | Remote | $0k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $36k - $54k |
EVM Smart Contract Engineer
Remote - Anywhere
Engineering /
Remote
Apply for this job
Nibiru Chain is a breakthrough L1 blockchain and smart contract ecosystem sporting superior throughput and unparalleled security. Nibiru aims to be the most developer-friendly and user-friendly smart contract ecosystem, leading the charge toward mainstream Web3 adoption by innovating at each layer of the stack: dApp development, infra, consensus, a comprehensive dev toolkit, value accrual. Our team operates worldwide, allowing new members the flexibility to work entirely remotely.
Nibiru is looking for a EVM smart contract engineer who will lead large projects with long term impact on the business. They must be able to tackle complex engineering problems and set up processes/tooling to improve engineering team efficiency.
Position Start Date: Available Now
Salary: Competitive
Responsibilities
- Design & Develop: Write, test, and deploy smart contracts on Ethereum (and EVM-compatible chains).
- Smart Contract Security: Implement robust testing frameworks, security best practices, and audits to ensure contract integrity.
- Protocol Architecture: Collaborate with the product team to design and refine protocols, ensuring they meet high-performance and user-friendly standards.
- Integration: Work with front-end developers, back-end services, and other teams to ensure seamless integration of smart contracts into our broader ecosystem.
- Research & Innovation: Stay up-to-date with the latest in Ethereum and DeFi standards, EIPs, and emerging trends, and propose relevant improvements to our architecture.
- Documentation: Produce clear, concise documentation for internal and external developer use.
Technical Experience:
- 2+ years of professional experience in software development, ideally within blockchain/crypto.
- Proven track record of developing and deploying production-grade smart contracts in Solidity.
- Familiarity with Web3 tooling (e.g., Hardhat, Truffle, Remix, Foundry) and version control (Git).
- Deep understanding of EVM, gas optimization, and how transactions are processed on-chain.
- Knowledge of core Ethereum concepts like ERC-20, ERC-721, ERC-1155, etc.
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.