Erc 20 Jobs in Web3

248 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

molecule.xyz

Berlin, Germany

$77k - $105k

Molecule

New York, NY, United States

$72k - $90k

Caiz

Remote

$74k - $84k

Almanak

Remote

$72k - $148k

Appnovation

Remote

$140k - $150k

VanEck

New York, NY, United States

$87k - $93k

EoT Labs GmbH

Remote

$87k - $87k

Improbable

London, United Kingdom

$87k - $93k

Improbable

London, United Kingdom

$81k - $100k

VanEck

New York, NY, United States

$87k - $93k

Molecule

New York, NY, United States

$84k - $120k

Molecule

United States

$72k - $90k

molecule.xyz

New York, NY, United States

$90k - $150k

molecule.xyz

Berlin, Germany

$77k - $105k

Molecule

New York, NY, United States

$84k - $120k

molecule.xyz
$77k - $105k 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 the Role

We’re hiring a Customer Success Manager to drive execution across our growing pipeline of biotech and web3 innovation projects. This is an operations-centric role, focused on managing and delivering complex initiatives involving venture funds, IP licensing, and tech transfer.

You’ll work closely with our founders, partners, and scientific teams to turn high-quality inbound interest into live, successful collaborations. This role is ideal for someone who thrives in a fast-paced, decentralised environment and who can navigate both biotech and web3 landscapes with ease.

What You’ll Do

  • Lead the operational execution of deals and partnerships initiated through venture fund and strategic networks

  • Coordinate the end-to-end delivery of IP and biotech venture spin-outs

  • Own the process of moving qualified leads through to signed agreements and successful handoffs

  • Interface with legal, scientific, and tokenomics stakeholders to align on timelines, requirements, and risk

  • Maintain project momentum through clear communication, documentation, and proactive follow-ups

  • Collaborate with the founding team on evolving processes and best practices in venture delivery

Who You Are

  • Deep understanding of tech transfer, licensing, and biotech spin-outs

  • Experience working with or within venture funds, particularly those active in life sciences or frontier tech

  • Operationally excellent: you know how to get things done and keep stakeholders aligned

  • Familiar with or deeply curious about Web3, tokens, and decentralised science (DeSci)

  • Strong communicator across technical and non-technical teams

  • UK-based (preferred) or EU-based, ideally with experience navigating both US and European business cultures

    Bonus: You’ve previously worked in a startup or cross-disciplinary innovation environment

Why Join Us?

At Molecule, 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 - Molecule 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.