Erc 20 Jobs in Web3

232 jobs found

Receive emails of Erc 20 Jobs in Web3
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

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

JBA International
$80k - $180k
CA Los Angeles US
Apply

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!

⬇
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.