Erc 20 Jobs in Web3

270 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

Joint NFT

India

$115k - $2k

Offchain Labs

Remote

$40k - $92k

Build A Rocket Boy

Edinburgh, United Kingdom

$14k - $72k

Mythical Games

Los Angeles, CA, United States

$54k - $79k

Upside

United States

$72k - $95k

IOTA Foundation

Remote

$63k - $70k

NiftyApes

Remote

$155k - $250k

Cerulean Blue

Singapore, Singapore

$0k

VR JAM

Amsterdam, Netherlands

$60k

Figment

Toronto, Canada

$29k - $56k

IOTA Foundation

Remote

$63k - $70k

Finoa GmbH

Berlin, Germany

$31k - $80k

Sport Alliance GmbH

Remote

Virtual Pangea

Remote

Higin

Bengaluru, India

$18k - $36k

Joint NFT
$115k - $2k
Karnataka India

Opportunity:

Build & Maintain Cutting-Edge Block Web3 applications solving complex issues in one of the fastest-growing categories in NFTs. Massive ownership, and work directly with the CTO. Expected to pick up a diverse stack under guidance rapidly. Work in an early-stage NFT startup and with a team passionate about decentralised eco-system.

Core Responsibilities:

Build, maintain and iterate on the core product and features. Be a strong software engineer picking up VueJs/React, State management protocols (Vuex/Redux) and API libraries like REST and graphql. Drive high-level decisions about the platform design and architecture Work closely with the founders to build product features, drive strategy and execute

key initiatives

Be active on company forums & media platforms Requirements: Comfortable with any popular Scripted or OOPs language: Python, Javascript, Java, C++. Willingness to be technology agnostic and pick up the required stack needed swiftly. Be enthusiastic about the scope of decentralised technologies.

Nice to Haves:

Experience with Web3js, Solidity, knowledge of standards like ERC-20, ERC-721, ERC-1155 SDE (Intern - Partime/FullTime) - FullStack Web3 Engineer2Experience with working in non-EVM chains like sol, avax, etc Cloud & Deployment experience (Docker / AWS / etc.)

Joint NFT focuses on Blockchain / Cryptocurrency. Their company has offices in Bangalore City Municipal Corporation Layout. They have a small team that's between 1-10 employees. You can view their website at https://thejointnft.com

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.