Erc 20 Jobs in Web3

245 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

salesboxai

Remote

$63k - $90k

Udelta

Remote

$87k - $87k

Molecule

New York, NY, United States

$54k - $80k

hushh.ai

United States

$105k - $107k

YoutHNesT

Remote

$43k - $60k

MoonPay

Bucharest, Romania

$87k - $87k

VanEck

New York, NY, United States

$36k - $54k

Molecule

Berlin, Germany

$72k - $90k

Molecule

United States

$90k - $112k

molecule.xyz

Berlin, Germany

$90k - $112k

Molecule

Berlin, Germany

$72k - $90k

in-House Anonymous

New York, NY, United States

$122k - $150k

molecule.xyz

Berlin, Germany

$77k - $105k

Fmr

United States

$86k - $150k

MetaWealth

Bucharest, Romania

$81k - $87k

salesboxai
$63k - $90k estimated
Global Technology Park, Block – C Marathahalli Outer Ring Road, Devarabeesanahalli, LSI Entrance Road, Adarsh Palm Retreat, Bellandur, Bengaluru, Karnataka 560103, India
Apply

Company Description

SalesBox was founded in 2014 with n intent on enabling sales traction for large technology companies while lowering the cost of sales. Today, we deliver high quality demand generation solutions for companies such as Microsoft, SAP, Dell, Marketo, Symantec, Sitecore, Sage and many more.

Job Description

Skills and Qualifications

·         Worked on at least 1 blockchain platform like Hyperledger, Stellar, Ethereum, Multichain, Corda and hands on experience in any other block chain network is a warm welcome.

·         Able to write smart contracts in GoLang or solidity/ serpent, programming paradigms intricacies,

·         Encryption techniques used in blockchain and upcoming release knowledge are preferred.

·         Hands on experience in HTML,CSS3, React JS and relevant web stacks are highly appreciated for stack compatibility.-

·         Knowledge on building ERC-20 token interfaces to 3rd party dApps is also preferred

·         Knowledge of ICO, Wallets, Exchanges, Tokens in Ethereum/Stellar will be an added advantage

·         Object-oriented, Event-driven, functional programming

Qualifications

Requirements:

Experience                   : 3 to 5years
Education                     :  Bachelors Degree and relevant experience
Industry Type               :  Tech
Functional Area           :  Development

Additional Information

Programming Languages:

·         Java,Spring J2EE Framework, Node JS

·         UI Scripting: Object Oriented Javascript like Angular JS

·         Data LayerModern databases :

·         Understand Relational, Key- value, Columnar, Document, Graph.

·         Good Linux scripting

·         Deployment : Docker basic commands

·         Knowledge of source version control tool

·         Should be well versed with SW development & delivery lifecycle

·         A good team player having troubleshooting and problem-solving skills.

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.