Erc 20 Jobs in Web3
232 jobs found
Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
JBA International | Los Angeles, CA, United States | $80k - $180k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $105k - $210k | |||
Haqq Network | Remote | $48k - $72k | |||
Marathon Digital Holdings | Remote | $63k - $112k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
MoonPay | Remote | $87k - $101k | |||
RevOpsforce | Austin, TX, United States | $39k - $100k | |||
Qredo | Madrid, Spain | $84k - $156k | |||
Gnosis | Portugal |
| |||
Apex Digital - Web3 Fund | United States | $90k - $150k | |||
Bright Vision Technologies | United States | $39k - $65k | |||
Qredo | Madrid, Spain | $64k - $87k | |||
Qredo | Madrid, Spain | $67k - $102k | |||
Qredo | Lisbon, Portugal | $77k - $100k | |||
Seedify | Remote | $72k - $93k | |||
Seedify | Remote | $72k - $93k |
Job Title: Solidity Developer
Job Description:
We are seeking a skilled Solidity Developer to join our client and contribute to the development of blockchain-based applications and smart contracts. As a Solidity Developer, you will work closely with our team of blockchain engineers and software developers to design, implement, and deploy smart contracts on various blockchain platforms.
Responsibilities:
1. Design and develop smart contracts using Solidity language.
2. Collaborate with cross-functional teams to define, design, and ship new features.
3. Ensure the security, reliability, and efficiency of smart contracts through thorough testing and auditing.
4. Optimize smart contract code for gas efficiency and performance.
5. Stay up-to-date with the latest developments in blockchain technology and smart contract best practices.
6. Participate in code reviews and provide constructive feedback to peers.
7. Troubleshoot and debug issues related to smart contracts and blockchain integration.
8. Document code and technical specifications for reference and future maintenance.
Requirements:
1. Strong proficiency in Solidity programming language and smart contract development.
2. Experience with Ethereum and other blockchain platforms.
3. Familiarity with decentralized finance (DeFi) protocols and token standards (ERC-20, ERC-721, etc.).
4. Knowledge of blockchain fundamentals, cryptography, and consensus mechanisms.
5. Proficiency in software development tools such as Git, Truffle, and Remix.
6. Ability to work in a fast-paced, collaborative environment and adapt to changing requirements.
7. Excellent problem-solving and communication skills.
8. Bachelor’s degree or equivalent experience in Computer Science, Engineering, or related field
If you're passionate about blockchain technology and want to work on cutting-edge projects in a dynamic environment, we'd love to hear from you!
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.