Erc 20 Jobs in Web3

241 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

$98k - $110k

molecule.xyz

Berlin, Germany

$90k - $150k

molecule.xyz

Berlin, Germany

$72k - $110k

molecule.xyz

United States

$45k - $54k

molecule.xyz

New York, NY, United States

$90k - $150k

molecule.xyz

New York, NY, United States

$63k - $76k

molecule.xyz

New York, NY, United States

$91k - $112k

molecule.xyz

New York, NY, United States

$76k - $90k

molecule.xyz

New York, NY, United States

$36k - $75k

Capital Centric Limited

South Africa

$84k - $112k

Nibiru

Remote

$63k - $80k

Lukso

New York, NY, United States

$36k - $75k

Lukso

International

$36k - $90k

ENS Labs

Remote

$105k - $120k

Unreal Gigs

Remote

$72k - $75k

molecule.xyz
$98k - $110k 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 Catalyst, 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 decentralised 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

The focus of your role will be creating high-quality written content - both long and short form - on the BIO protocol and the rapidly growing field of decentralized science (DeSci). The ideal candidate will have a background in science, life sciences, or technical communications and the ability to distill complex scientific and Web3 concepts into engaging, memetic content that both educates and captivates. We are looking for a creative, strategic thinker who can craft tailored content to engage the DeSci community across various platforms (X/Twitter, LinkedIn, the BIO blog, and more). Join us in reshaping the future of science and innovation!

What You'll Be Doing

Content Creation and Design:

  • Create high-quality content, including educational materials, articles, visuals, multimedia presentations, videos, memes, informational graphics, engaging images, explainers, and more.

  • Ensure all content is clear, engaging, and tailored to both scientific audiences and the general public.

Strategic Planning:

  • Implement comprehensive content plan

  • Collaborate with partner DAOs

Social Media Management:

  • Oversee and engage with our social media platforms (X, LinkedIn, TikTok, YouTube, etc.) to foster interaction and ensure alignment with current trends in DeSci

  • Monitor social media activity, respond to inquiries, and facilitate discussions that promote DAO objectives.

Outreach and Insights:

  • Actively engage with community members to gather insights and feedback that inform communication strategies.

  • Utilize data-driven approaches to refine messaging and enhance community engagement efforts.

Performance and Growth:

  • Track key performance metrics to evaluate the effectiveness of communication strategies.

  • Analyze community feedback and engagement data to develop actionable recommendations for ongoing improvement.

Influencer Recruitment:

  • Identify and align with high-profile social media influencers to become advocates of the DeSci movement.

  • Partner with influencers to co-promote targeted messages and campaigns that align with our mission.

What We’re Looking For

  • 1-3 years of experience in managing social media for organizations or agencies, with a focus on general crypto, DeFi, web3 - or ideally DeSci.

  • Major Plus: background in science communications.

  • A strong passion for blockchain technology and its applications in life sciences, and beyond.

  • Exceptional copywriting skills, with the ability to craft compelling messages that resonate with diverse audiences.

  • Proficiency in social media platforms, particularly Twitter, Instagram, TikTok, and YouTube, and the use of analytics tools.

  • Basic graphic design skills and familiarity with design tools to create visually appealing content.

  • Excellent communication skills, a team-player mindset, and the ability to work effectively in a decentralized, global team environment.

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.