Erc 20 Jobs in Web3

294 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

in-House Anonymous

New York, NY, United States

$122k - $150k

molecule.xyz

Berlin, Germany

$77k - $105k

Fmr

United States

$86k - $150k

MetaWealth

Bucharest, Romania

$81k - $87k

D3

San Francisco, CA, United States

$90k - $106k

Limit Break

United States

$81k - $100k

ResearchHub

Remote

$67k - $100k

D3

Los Angeles, CA, United States

$87k - $104k

D3

Los Angeles, CA, United States

$122k - $150k

Salt Technologies

Pune, India

$86k - $150k

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

Molecule

New York, NY, United States

$36k - $54k

in-House Anonymous
$122k - $150k estimated
NY Brooklyn US
Apply

PLEASE NOTE: This is an early-stage, stock-option entrepreneurial opportunity.


COMPANY

in-House is a startup dedicated to empowering employees to voice their opinions while ensuring complete anonymity. We have developed a platform that allows verified employees to share diverse perspectives, surface important issues and ideas, and provide feedback and ratings on their employers. Unlike other platforms, in-House prioritizes privacy and does not collect personal metadata, eliminating the need for sign-ups or logins. Our goal is to create an environment where employees can freely rate and discuss company matters, driving meaningful change within their organizations.


COMPENSATION

“No one gets rich by working.” We are offering 100% early stock option ownership — no cash salary pre-funding. We are a pre-money startup with approximately 20 passionate, mostly part-time, internationally remote members contributing part-time sweat equity for a limited ownership stake.


ROLE

The Web3 Soft Data Token Director will lead the strategy and team of web3 builders to create a unique data-based token for a next-generation, fully anonymous, Web3 social media platform. Our vision is to enable users to "mine" tokens through content creation, which can be used as a form of currency within the platform as well as a publicly tradeable asset in open markets. The ideal candidate will have experience in blockchain technology, particularly in developing and deploying tokens, with a strong understanding of smart contracts and tokenomics.


WE ARE LOOKING FOR SOMEONE WHO:

  • Can lead a team and strategy for the full roadmap execution.
  • Has experience in the startup / pre-seed ecosystem.
  • Has designed and developed a utility token on a Web3-compatible blockchain.
  • Has advanced experience with Solidity, Rust, or other blockchain development languages.
  • Has experience deploying tokens (e.g., ERC-20, BEP-20) and a solid understanding of tokenomics.
  • Is familiar with Web3 frameworks and libraries (e.g., Web3.js, ethers.js).
  • Understands security best practices in blockchain applications.
  • Is knowledgeable about decentralized finance (DeFi) and NFTs.
  • Can implement token mining mechanics based on user-generated content.
  • Can deploy smart contracts to manage token distribution, transfers, and platform usage.
  • Has experience building token mining mechanisms or reward-based systems.
  • Is consistently available for at least 15 hours per week.

PRODUCT & COMPANY INFO: https://bit.ly/ih_companyinfo

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.