Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
molecule.xyz | Remote | $76k - $150k | |||
Molecule | New York, NY, United States | $84k - $120k | |||
molecule.xyz | Berlin, Germany | $77k - $105k | |||
Molecule | New York, NY, United States | $72k - $90k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 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
Join us at the frontier of biotech and web3. BIO Protocol is seeking a strategic and hands-on Head of Growth to drive user acquisition, ecosystem expansion, and token volume across our DeSci platform. You’ll lead growth across our launchpad, BioDAO incubator, and AI agent ecosystem - with a strong focus on expansion into Asia-Pacific markets.
What you’ll do:
Own and execute a global growth strategy with deep APAC market penetration
Grow platform activity (TVL, volume, active DAOs) through multi-channel campaigns
Drive launchpad success via pre/post-launch marketing, liquidity, and partnerships
Build strategic alliances across biotech, DeFi, and Web3 communities
Represent BIO at global events and build token-gated, Web3-native experiences
Lead internal AI adoption and growth tooling
Bridge traditional biotech stakeholders with Web3-native communities
What we’re looking for:
8+ years in growth/marketing roles, ideally scaling platforms or protocols
Proven success in Web3, tokenomics, and performance marketing
Experience in Asia (Singapore, HK, Japan, Korea, or China) is highly preferred
Strong understanding of biotech, life sciences, or scientific communities
Team builder with entrepreneurial grit and cultural fluency across regions
Bonus:
Experience in DeSci, launchpads, exchanges, or scientific research communities
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.
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:
- balanceOf(address): Returns the token balance of a specific address.
- transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
- approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
- allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
- User1 owns 500,000 ABC Tokens.
- User2 wants to buy 100 ABC Tokens from User1.
- User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
- User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
- The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.