Erc 20 Jobs in Web3

233 jobs found

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

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

Roote

San Francisco, CA, United States

Upside.gg

United States

$36k - $61k

Qredo

Lisbon, Portugal

Mythical Games

Los Angeles, CA, United States

$32k - $92k

Parallel Finance

San Francisco, CA, United States

$60k - $70k

Paraspace

San Francisco, CA, United States

$60k - $70k

Paraspace

San Francisco, CA, United States

$71k - $112k

DeFiner Inc

Minneapolis, MN, United States

$72k - $75k

Staked

San Francisco, CA, United States

$63k - $100k

VP of DevOps

Qredo
$85k - $150k estimated

This job is closed

VP of DevOps

Remote – Amsterdam /
Information Technology – DevOps /
Full-time Remote

Apply for this job
Qredo is a decentralized digital asset management infrastructure and product suite designed to unlock new opportunities for institutional investors in digital assets and decentralized finance. Qredo's Layer 2 blockchain protocol enables users to seamlessly transfer and settle BTC, ETH, and ERC-20 tokens. Assets are secured by Qredo’s advanced Gen 2.0 multi-party computation (MPC), which provides tier-1 bank security and institutional-grade governance.

Responsibilities

    • Manage and own the technical responsibility for Qredo's market-leading blockchain software solution
    • Provide documentation resources for internal and regulatory consumption
    • Build a team of engineers and architects to further build and optimize the Qredo's infrastructure, platform and solutions
    • Lead the team to design and implement the DevOps architecture and automation solutions including but not limited infrastructure security, automated provisioning, CI/CD pipeline
    • Coach the team to drive for results with continuous improvements on technical skills, architectural thinking and communication efficiency.

Requirements

    • Minimum 5 years experience in team management
    • Minimum 10 years of experience as senior or principal development working on large-scale projects and architecture
    • Previous experience working within the blockchain / DeFi sector is a must
    • With experience and skills on Docker, Kubernetes, infrastructure design (networking, load balancing, CDN, middleware including but not limited to message queue - Kafka, RabbitMQ, etc), automation (Ansible, Terraform, etc) and CI/CD Pipeline (Jenkins)
    • Strong hands-on experience on Cloud Platform and architecture such as AWS
    • Solid knowledge on Cloud based security solution and architecture design and implementation
    • Corresponding development experiences on micro-services based frontend and backend applications will be considered an asset. 

Qredo Offers

    • Flexibility to work from anywhere and possibility for international transfer
    • Assistance with home office setup as well as offsite team building allowance
    • Culturally diverse work environment (we speak 33 languages!)
    • Great career development opportunities in a growing company
    • Competitive compensation and benefits package within the industry
Apply for this job

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.