Erc 20 Jobs in Web3

251 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

Coinmarketcap

Calgary, Canada

$72k - $100k

Coinmarketcap

Calgary, Canada

$72k - $100k

Binance

Amsterdam, Netherlands

Binance

Krakow, Poland

Binance

United States

Binance

United States

Qredo

Sofia, Bulgaria

Finoa GmbH

remote

$90k - $110k

BlockchainStaffingNinja

United States

$27k - $77k

BlockchainStaffingNinja

United States

$63k - $85k

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
$72k - $100k estimated
Calgary, AB, Canada
Apply

Company Description

Do you have a passion for blockchain technology and a love for advocating for web3 innovation? If so, BNB Chain is looking for Developer Relations Engineer to work with web3 developers to help build successful web3 projects using the latest blockchain technologies.

As a developer relations engineer, you’ll be offering technical assistance as well as raising awareness of the opportunity for blockchain innovation. 

Through advocacy, you will establish BNB Chain as an industry leader through engagement and delivering advice, guidance, technical content, and building relationships with web3 developers.

Importantly, you will be the bridge between many teams and communities, connecting the dots between different technologies and utilities to help scale web3. This will include offering technical assistance, writing content, presenting at events, and writing code.

Job Description

  • Shape and execute a strategy around driving developer awareness and adoption of the BNB Chain.
  • Work with the product, engineering, and growth teams to improve the onboarding and overall experience of developers on the BNB chain.
  • Identify and build relationships with key influencers with the aim of fostering a strong community, as well as collect feedback about the product and technical blockers, if any.
  • Helping to ensure partners' success in building and migrating applications, software, and services on the BNBChain.
  • Create and execute a schedule of technical content on the BNB Chain blog, such as videos, blogs, tech talks, live streams, tutorials, best practices, and white papers to enable developers to develop Apps on BNB Chain easily.
  • Capture and share best practice knowledge with the worldwide Blockchain community.
  • Invent new and novel ways to improve the developer experience across our suite of tools and the rest of the BNB Chain ecosystem
  • Be familiar with the product and technical details of BNB Chain, directly connected with project personnel, and solved the online consultation and complaints related to certain product/technical knowledge transmitted.
  • Lead BNB Chain involvement in relevant conferences, Hackathons, and Meetups, including oversight of our annual developer conference. 
  • Play a lead in writing content, recording videos, and speaking at conferences. You’ll be the face of BNB Chain at events and in online communities. 

Qualifications

  • Degree in Computer Science, Technology, Engineering, or Math or 5+ years of work experience in a technical role.
  • Highly technical and analytical, possess 3+ years of blockchain Developer Relations Engineer (implementation/consulting) experience.
  • Knowledge of Zero Knowledge proof, homomorphic encryption, and elliptic curve cryptography
  • Experience or advanced knowledge in developing zkSNARK/plonky2 circuits. Understanding of secure cryptographic protocols for blockchain.
  • Have a domain-level understanding of Cloud Infrastructures, including Compute, Network, and storage, as well as cloud Management areas such as automation, orchestration, and DevOps.
  • Familiarity with technologies: Experience with Bridges, NFT, ERC-20, ERC-721, ERC-1155, MetaMask, Ethereum, Marketplaces, NFT marketplaces, minting, staking and DeFi
  • Tech Stack: JavaScript/TypeScript, React, Solidity, Node, Go,  Blockchain, Consensus Algorithms understanding, Wallets Development, Web3, understanding fundamentals of blockchain infrastructure
  • Experience with database architecture and design to create storage solutions for managing distributed ledger and related data/state in files/database system
  • Presentation skills with a high degree of comfort speaking with executives, IT Management, and developers
  • Good verbal and written communication skills in English to engage with team and stakeholders effectively.
  • Passionate, Ownership, Doer-spirit, Result oriented, and a good Team player.

Additional Information

Working at BNB Chain Innovation

    • Do something meaningful; Be a part of the future of finance technology and the leading company in the industry
    • Fast moving, challenging and unique business problems
    • International work environment, flat organization, flexible working hours
    • Great career development opportunities in a growing company
    • Possibility for relocation and international transfers mid-career
    • Competitive salary

    By submitting a job application, you confirm that you have read and agree to our Candidate Privacy Notice.

    ⬇
    Apply Now

    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.