Erc 20 Jobs in Web3

202 jobs found

Receive emails of Erc 20 Jobs in Web3
Job Position Company Posted Location Salary Tags

VR JAM

Amsterdam, Netherlands

$60k

Figment

Toronto, Canada

$29k - $56k

IOTA Foundation

Remote

$63k - $70k

Finoa GmbH

Berlin, Germany

$31k - $80k

Sport Alliance GmbH

Remote

Virtual Pangea

Remote

Higin

Bengaluru, India

$18k - $36k

Hike

Delhi, India

$14k - $48k

IOTA Foundation

Remote

$63k - $70k

Fractional

United States

$95k - $170k

Fractional

Ljubljana, Slovenia

$95k - $145k

Optimism

Remote

$81k - $100k

Fractional

United States

$95k - $155k

InfiniteWorld

Miami, FL, United States

$126k - $140k

Sport Alliance GmbH

Remote

VR JAM
$60k
North Holland Amsterdam Netherlands
Apply

The Cryptocurrency Product Manager's role is a wide ranging, multi faceted role focused on ensuring the efficient creation, marketing and go to market strategy for VRJAM's range of NFT products as well as our native crypto, VRJAM Coin.

VRJAM Coin is VRJAM's in-game ERC20 token. It will be used to facilitate a wide and varied array of use cases for trade and value exchange inside VRJAM’s virtual world.

The Cryptocurrency Product Manager's role provides executive and operational oversight for the ongoing creation and marketing of VRJAM's blockchain product suite including a number of entirely new NFT asset classes that we will bring to market in Q2.

The role also interfaces with our premium content creator community of high profile record labels, artists and DJs and oversees and manages the activity of these creators in tandem with our community management and marketing teams to ensure commercial targets and got to market milestones are met

Additionally the role interfaces with our crypto native marketing agencies to support strategic marketing activations focused on the blockchain and crypto community.

The role is fast paced and demanding and will require the successful applicant to manage a high number of concurrent workflows.

The role is a full time position and overtime and unusual working hours will be required from time to time.

At least 5 years experience in a crypto native community management or marketing management role is a prerequisite. Minimum in office hours are 2 days per week, however working hours can be structured in a flexible fashion.

Find out more about VRJAM here: www.vrjam.com

General understanding and experience in the Entertainment business, live streaming, broadcasting with live events, and computer science, is a plus.

VR JAM focuses on Virtual Reality / Augmented Reality. Their company has offices in Amsterdam. They have a small team that's between 11-50 employees.

You can view their website at https://vrjam.com

⬇
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.