Erc 20 Jobs in Web3

155 jobs found

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

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

Mexico City, Mexico

$72k - $85k

Austin Werner Ltd

Minneapolis, MN, United States

$27k - $57k

Infinite Reality

San Francisco, CA, United States

$45k - $75k

Paraform

United States

$54k - $112k

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

BNB Chain Solutions Architect

Binance

This job is closed

BNB Chain - Solutions Architect

Netherlands, Amsterdam /
Engineering – Blockchain Development /
Full-time: Remote
/ Remote

Apply for this job
Binance is the global blockchain company behind the world’s largest digital asset exchange by trading volume and users, serving a greater mission to accelerate cryptocurrency adoption and increase the freedom of money.

Are you looking to be a part of the most influential company in the blockchain industry and contribute to the crypto-currency revolution that is changing the world?

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

As a technology evangelist, 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.

Responsibilities

    • 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 BNB Chain
    • 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

Technical Requirements

    • 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 Technical Evangelist (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
    • Professional fluency in English is a must; fluency in an additional language is an added advantage
Working at Binance
Do something meaningful; Be a part of the future of finance technology and the no.1 company in the industry
Fast moving, challenging and unique business problems
International work environment and flat organisation
Great career development opportunities in a growing company
Possibility for relocation and international transfers mid-career
Competitive salary
Flexible working hours, Casual work attire

By submitting a job application, you confirm that you have read and agree to our Candidate Privacy Notice.
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.