Erc 20 Jobs in Web3

271 jobs found

web3.career is now part of the Bondex Logo Bondex Ecosystem

Receive emails of Erc 20 Jobs in Web3
Job Position Company Posted Location Salary Tags

DeRisk Technologies

New York, NY, United States

$39k - $80k

Qredo

Singapore, Singapore

Qredo

Lisbon, Portugal

$45k - $90k

Qredo

Lisbon, Portugal

Blockville

Turkey

$63k - $100k

Coinmarketcap

Mexico City, Mexico

$72k - $85k

Austin Werner Ltd

Minneapolis, MN, United States

$27k - $57k

Infinite Reality

San Francisco, CA, United States

$45k - $75k

Paraform

United States

$54k - $112k

Qredo

Amsterdam, Netherlands

$85k - $150k

Paraform

United States

$59k - $90k

Vivo (Telefônica Brasil)

Sao Paulo, Brazil

$54k - $60k

Syntropy

Berlin, Germany

$54k - $75k

Infinite Reality

San Francisco, CA, United States

$45k - $75k

Digital Marketing Company

Los Angeles, CA, United States

$45k - $75k

Blockchain Trainer German English Speaker Alzenau Germany

DeRisk Technologies
$39k - $80k estimated

This job is closed

Key Responsibilities:

  • Provide a high engagement learning environment to the candidates enrolled with the organization
  • Stay updated with the latest trends and applications of blockchain and make learning more application based.
  • Interact with the stakeholders in understanding the training requirements and customizing the training program according
  • Great Communications skills.
  • Clarity and effectiveness in delivering the Training sessions.
  • The ability to engage an audience, both business and technical.
  • Overall enthusiasm and energy.
  • A native German speaker or C1
  • C1 English proficiency

Skills required:

  • Strong foundational knowledge of Blockchain technologies.
  • Must be proficient in the programming languages and developer tools required for Blockchain development like Java DAML etc.
  • Certification in the blockchain would be an added advantage.
  • Must be proficient in Hyperledger and Gnache and have written contracts in Ethereum.
  • Must possess experience in blockchain development on the network, protocol, and application layer
  • Strong communication, time management, and organizational skills.
  • Ability to assess and enthusiasm for learning and technology
  • Deep Understanding of Blockchain, Bitcoin, Hyperledger, and Ethereum protocols.
  • Experience in writing and auditing smart contracts and ERC20 Tokens.
  • Good knowledge of Cryptography.
  • Minimum one year of experience as a blockchain trainer.

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.