Erc 20 Jobs in Web3

242 jobs found

Part of the Bondex Ecosystem

WxRK

Stop applying — get discovered by hiring agents.

Build your profile
Job Position and Company Posted Location Salary Tags

$72k - $78k

$39k - $65k

$0k

$36k - $54k

$39k - $65k

$72k - $78k

$120k - $130k

$91k - $100k

$74k - $107k

$36k - $70k

$72k - $90k

$90k - $100k

$63k - $72k

$63k - $85k

$80k - $180k

Kastech Software Solutions Group
$72k - $78k estimated
NC Charlotte US

Role: Blockchain Developer

Locations: Charlotte, NC or New York, NY Hybrid (3 days on site and 2 days remote)

Duration: 12+ months

As a Blockchain / DLT Developer, you will collaborate with stakeholders across the business to work on complex technical requirements. You will be responsible for managing multiple engagements, prioritizing and resolving complex problems and escalating as necessary, in a fast-paced environment.

Responsibilities:

  • Design and develop blockchain-based applications, smart contracts, and decentralized protocols to address specific business requirements.
  • Collaborate with cross-functional teams to identify opportunities for implementing blockchain and distributed ledger technology in various domains, such as finance, supply chain, healthcare, and more.
  • Implement and maintain blockchain networks, nodes, and consensus algorithms to ensure data integrity, security, and decentralization.
  • Work on blockchain interoperability, scalability, and performance optimization to support high-throughput, low-latency applications.
  • Conduct research and development on emerging blockchain technologies, platforms, and protocols to drive innovation and continuous improvement.
  • Ensure compliance with regulatory requirements and industry standards for blockchain and DLT implementations, such as data privacy and security regulations.
  • Participate in code reviews, testing, and debugging to maintain high-quality, reliable blockchain applications.
  • Provide technical guidance and support to other team members and stakeholders on blockchain and DLT-related topics.
  • Build high-quality, low latency blockchain applications capable of handling large volumes of transactions.

You are:

  • Bachelor’s or master’s degree in computer science, Engineering, or a related field.
  • 10+ years of proven experience in developing blockchain-based applications and smart contracts using platforms such as Ethereum, Hyperledger, or other blockchain frameworks.
  • Strong understanding of decentralized consensus algorithms, cryptography, and data structures used in blockchain and DLT systems.
  • Proficiency in programming languages commonly used in blockchain development, such as Solidity, Go, or Java.
  • Familiarity with blockchain development tools, libraries, and frameworks for building and testing decentralized applications.
  • Knowledge of blockchain security best practices, cryptography, and secure coding principles.
  • Experience with tokenization, token standards (e.g., ERC-20, ERC-721), and decentralized finance (DeFi) protocols is advantageous.
  • Understanding of blockchain scalability, interoperability, and performance optimization techniques.
  • Excellent problem-solving skills, analytical thinking, and the ability to address complex challenges in blockchain development.
  • Effective communication and teamwork skills, with the ability to collaborate with cross-functional teams and stakeholders.

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.