Erc 20 Jobs in Web3

249 jobs found

Part of the Bondex Ecosystem

WxRK

Stop applying — get discovered by hiring agents.

Build your profile
Interlock
$54k - $90k estimated
CA US

Interlock is an ecosystem of Security and Analytics tools where people can earn INTER (ERC-20) tokens for contributing security and analytics data that they control.

Our goal is to offer enterprise-level security with just a few clicks, while leveraging blockchain technology to reward people for their anonymous reports/threat intel. While keeping data where it belongs - with the person it belongs to. The product is nearing launch readiness, and your challenge will be to study and understand the overall architecture and our unique innovations, while contributing immediate value to known problem areas, such as database optimization.

This is a very unique opportunity to join a cybersecurity startup in the early stages of our growth, and to join a social impact business that you’ll be proud to have played a key part in building.

Responsibilities

  • Ensure that our technical and production infrastructure operates reliably and scalably
  • Ensure that our infrastructure is configured to talk to external services and that it degrades gracefully and noticeably in the event of an external outage/interruption

Requirements

  • Experience writing docker
  • Experience writing kubernetes
  • Experience with any of AWS, GCP, or other major cloud providers
  • Experience with network administration and trouble-shooting
  • Experience with database administration
  • Experience with spelunking through various logs to root-cause degradation's and outages


Benefits of working with us

  • Work with a fast-paced cybersecurity startup
  • Join the blockchain community or grow the presence you already have
  • Referrals and incentives for the future
  • Opportunity for internal growth

Inclusivity Statement

At Interlock we celebrate differences; we believe that inclusion is critical to our success and that diversity brings value; and we seek to recruit, develop, and retain the most talented people from a diverse candidate pool.

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.