Erc 20 Jobs in Web3

270 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

Lukso

New York, NY, United States

$86k - $90k

Lukso

International

$36k - $90k

Lukso

International

$86k - $90k

Lukso

New York, NY, United States

$36k - $90k

Lukso

New York, NY, United States

$86k - $90k

Kastech Software Solutions Group

Charlotte, NC, United States

$72k - $78k

Minutes to Seconds

New York, NY, United States

$39k - $65k

CodeQuadrat

Remote

$0k

Animoca Brands Limited

Hong Kong, Hong Kong

$36k - $54k

Momento USA LLC

New York, NY, United States

$39k - $65k

Zodiac Solutions, Inc

New York, NY, United States

$72k - $78k

Synechron

New York, NY, United States

$120k - $130k

Block

Remote

$91k - $100k

Internet Game

Remote

$100k - $150k

Lukso
$86k - $90k estimated
Berlin, Germany - HQ

In one year you’ll know you were successful if you’ve…

Establishing a clear growth marketing strategy around Universal Profiles (UPs), LUKSO Standard Proposals (LSPs) in the LUKSOs ecosystem, including identifying and defining target user and developer personas.  Set up and work within a budget plan for marketing and communication initiatives. Implement a communications strategy, leveraging existing networks with media outlets and your industry knowledge. Establish a KPI tracking system in collaboration with the Head of Partnerships to measure ecosystem and community growth and strength. Collaborate across teams to ensure marketing and communications objectives are in sync with technical development and product releases.

A background like this helps:

Proven leadership in senior marketing roles within blockchain or Web3 projects. Successful track record in community building and engagement within the blockchain, Web3 space or/and the Ethereum ecosystem. Strong strategic mindset aligning marketing efforts with project vision and objectives. Extensive experience in managing outward-facing communications, media relations, and collaborations. Autonomous with leadership skills, in-depth knowledge of blockchain, Web3 technologies, and excellent communication skills.

What We Offer: 

Innovation-driven working environment, where you’ll be part of a project that aims to set new standards in the industry and change the world we live in: doc.lukso.tech Team lunches and social activities Frequent conference attendance & company-wide off-sites Regular in-office health & sporting activities Collaborative squads and a flat structure, with a renowned team of industry experts Work fully remote CEST +/-3h or from our picturesque LUKSO office located in Berlin spread over three floors (community, tech & creative) overlooking the Spree River.


LUKSO is the blockchain for the New Creative Economies. As a next-generation layer-1 EVM blockchain, LUKSO has introduced new tools and standards that will bring blockchain technology to its next frontier. The building blocks for the New Creative Economies will revolutionize the way users and creators interact with the blockchain. From Fashion, Art, Music, Entertainment, Gaming, Social Media and more, we welcome you to explore our open and interoperable blueprint for the physical and digital worlds.LUKSO has introduced new standards called LUKSO Standard Proposals (LSPs), which are the building blocks for the New Creative Economies. These building blocks can be used to create user-friendly dApps and lower the barriers of entry in Web3 for all creators and users. Universal Profiles bring social identity to blockchain and improve the overall user experience in Web3. With upgradable security, these platform-agnostic smart-contract-based accounts empower users and creators and allow for true ownership, interoperability, transaction relay services and more.  LUKSO’s new standards allow for flexible NFTs that are extensible and directly compatible with Universal Profiles. NFTs 2.0 are updatable, safer, can store unlimited metadata, support batch transfers and even better IDs.LUKSO is bringing blockchain beyond DeFi with Cultural Currencies. The future of blockchain is social, and LUKSO’s essential, future-proof solutions are reshaping the way the world interacts with the blockchain.You belong here. At LUKSO, we welcome applicants from around the world of all abilities, race, ethnicity, gender/gender expression and age to explore our solutions and join us in building out the foundation for the New Creative Economies. We look forward to meeting you!

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.