Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
molecule.xyz | Berlin, Germany | $90k - $150k | |||
Mundy Buddy Publishing LLC. | United States | $72k - $112k | |||
Molecule | New York, NY, United States | $84k - $90k | |||
Bondex | Remote |
| |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
BlockEstateDAO AG | Zug, Switzerland |
| |||
molecule.xyz | New York, NY, United States | $84k - $90k | |||
Ephemera | Remote | $235k - $275k | |||
Scion Staffing | United States | $124k - $138k | |||
SMASH | San Jose, CA, United States | $96k - $112k | |||
SMASH | San Jose, CA, United States | $72k - $100k | |||
Molecule | New York, NY, United States | $90k - $115k | |||
Molecule | New York, NY, United States | $72k - $90k | |||
molecule.xyz | Berlin, Germany | $85k - $115k | |||
molecule.xyz | New York, NY, United States | $77k - $105k | |||
CillarCoin | New York, NY, United States | $90k - $162k |
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.
BIO is on a mission to reshape biotech through decentralized science (DeSci) and web3. Weâre building the bridge between breakthrough research, industry, and global policy - and weâre looking for a Chief of Staff to partner directly with our CEO and leadership team.
This is a high-impact role for someone who thrives at the intersection of strategy, execution, and partnerships. Youâll be the CEOâs right hand - driving clarity, removing bottlenecks, and making sure BIO shows up where it matters: from Big Pharma boardrooms to WEF stages to global scientific conferences.
What youâll do
Act as a force-multiplier for the CEO - turning vision into execution
Drive strategic partnerships with pharma, biotech, and research institutions
Ensure BIO has a powerful presence at top-tier global events
Lead cross-team initiatives, keeping the organization aligned and on track
Shape BIOâs talent and culture, helping us attract and retain world-class people
What weâre looking for
Sharp strategic thinker who can also roll up their sleeves and execute
Exceptional communicator, comfortable engaging with C-suite leaders and scientists alike
Proven experience in strategy, operations, consulting, or fast-growth startups/scaleups
Passion for biotech, web3, or both - and curiosity to learn fast where needed
Why join BIO?
Work directly with visionary leaders shaping the future of Biotech and DeSci
Operate on the frontier of science, technology, and policy
Global exposure - from labs to conferences to boardrooms
High autonomy, steep learning curve, and the chance to define your own career trajectory
This is not a traditional support role - itâs a strategic partnership role at the heart of BIOâs growth. If you want to be in the room where biotech meets web3 and help shape the future of decentralized science, weâd love to hear from 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.