Erc 20 Jobs in Web3

211 jobs found

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

molecule.xyz

Berlin, Germany

$105k - $120k

Molecule

New York, NY, United States

$105k - $120k

molecule.xyz

United States

$45k - $64k

Molecule

Berlin, Germany

$76k - $90k

Tradable Financial

Remote

Molecule

New York, NY, United States

$36k - $54k

molecule.xyz

New York, NY, United States

$98k - $110k

SORAMITSU

Tokyo, Japan

$67k - $70k

molecule.xyz

United States

$98k - $110k

molecule.xyz

New York, NY, United States

$77k - $105k

molecule.xyz

United States

$81k - $165k

molecule.xyz

Berlin, Germany

$72k - $90k

molecule.xyz

Berlin, Germany

$72k - $105k

molecule.xyz

Berlin, Germany

$98k - $110k

molecule.xyz
$105k - $120k estimated
Berlin Berlin Europe
Apply

Molecule is at the heart of the Decentralized Science (DeSci) movement where biotech and blockchain meet to democratize scientific research, earning recognition and support from key figures in the web3 world, including Vitalik Buterin, Balaji, and Juan Benet. We're known for creating VitaDAO, the first and largest biotech DAO with more than $4m in funding deployed, bio.xyz, a vital hub supporting and building biotech DAOs, the IP-NFT, a protocol bringing rights to IP and R&D data on-chain, and IPTs, ERC-20 tokens minted from IP-NFTs to allow token holders to construct and cultivate valuable IP. We’ve also recently launched launchpad, a platform to launch, discover, and fund the best projects in DeSci.

Over the past 24 months, we have raised $20+ million to build the future of decentralized biotech. Join us and contribute to a future where scientific discovery is driven by web3.

About Us

BIO.xyz is at the forefront of the Decentralized Science (DeSci) revolution. We are building the next-generation financial layer to accelerate biotech innovation by decentralizing funding, coordination, and governance of scientific IP. Our mission is to empower researchers, universities, and companies worldwide to commercialize the best science faster through blockchain technology.

With our protocol, BIO.xyz enables funding, development, and governance of tokenized scientific intellectual property (IP), fostering a thriving ecosystem of biotech DAOs and IP assets. Join us to reshape the future of science and innovation!

Your Role

At BIO.xyz, we are building the future of decentralized science (DeSci). Our platform connects autonomous agents to cutting-edge labs and smart contract-based treasuries, enabling researchers and agents to collaborate, innovate, and push the boundaries of scientific discovery. We are looking for a passionate Full Stack Developer to bring this vision to life.

What You'll Be Doing

  • Platform Development: Design and build scalable, modular front-end and back-end systems for the Bio Protocol platform.

  • Web Application: Create intuitive UIs for researchers and agents to submit tasks, manage funding, and view experiment outcomes.

  • Blockchain Integration: Develop and integrate Ethereum smart contracts (Layer 1 or Layer 2) into the platform for $BIO token transactions, staking, and rewards.

  • API Layer: Build RESTful or GraphQL APIs to connect the front-end interface with agent harnesses and external lab resources.

  • Database Management: Implement decentralized and traditional databases to store metadata, reputation scores, and task logs.

  • Security: Ensure all platform components adhere to the highest security standards, including encryption, authentication, and transaction safety.

What We’re Looking For

  • 3+ years in fullstack development

  • Proven experience with blockchain technology (Solidity, Hardhat, or similar

  • Proficiency in JavaScript/TypeScript, Node.js, React.js/Vue.js, and Python

  • Experience with database systems like MongoDB, PostgreSQL, or IPFS

  • Knowledge of smart contract development and integration (e.g., ERC-20, staking mechanisms)

  • Understanding of Ethereum Layer 2 solutions (Polygon, Optimism, Arbitrum)

  • Enthusiasm for decentralized systems, DeSci, and innovation in research

  • Experience in integrating AI/ML models with web applications preferred

  • Contribution to open-source projects in blockchain or scientific domains is a big plus

Why Join Us?

At BIO.xyz, you’ll be part of an innovative, mission-driven startup that’s disrupting the world of decentralized science. If you’re passionate about pushing boundaries and creating real-world impact, this is your opportunity to shape the future of research and innovation.

Here, you’ll work alongside a skilled, fast-paced team that thrives on creativity, collaboration, and bold ideas. You’ll be challenged, inspired, and empowered to bring your best work every day.

  • HODL: You’re not just taking a job — you’re joining a movement. Every project you contribute to directly impacts the future of science and technology.

  • WAGMI: We reward most full time positions with token equity and give you the opportunity to co-author future DeSci standards.

  • Alpha: In our young, fast growing team, your voice matters. You’ll have the chance to shape not only your future but also the future of science research and innovation.

If you’re ready to take on big challenges, work with brilliant minds, and create something that matters, LFG - BIO.xyz is the right place for you!

We are an equal opportunity employer. We are committed to equality and weaving a community that values diverse perspectives and experiences and are actively seeking a diverse pool of applicants. All employment decisions are made without regard to race, colour, national origin, ancestry, sex, gender, gender identity or expression, sexual orientation, age, genetic information, religion, disability, medical condition, pregnancy, marital status, family status, veteran status, or any other characteristic protected by law.

⬇
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.