Erc 20 Jobs in Web3

228 jobs found

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

Animoca Brands Limited

Hong Kong, Hong Kong

$105k - $111k

MoonPay

United Kingdom

$45k - $50k

Arcadia Finance

Brussels, Belgium

$0k

Arcadia Finance

Brussels, Belgium

$0k

Inspired

United States

$140k - $160k

SW7 Group

Hong Kong, Hong Kong

$75k - $100k

CONNECT2CRYPTO

Toronto, Canada

$43k - $73k

V3 Talent Partners Inc.

Remote

$72k - $90k

✤ Syntropy

London, United Kingdom

$49k - $76k

Hike

Delhi, India

$9k - $81k

Wirex Limited

Lviv, Ukraine

$54k - $76k

Land3

Boston, MA, United States

$140k - $220k

Land3

Boston, MA, United States

$140k - $220k

GreenPark Sports

United States

$56k - $90k

Senior Blockchain Architect

Animoca Brands Limited
$105k - $111k estimated

This job is closed

Animoca Brands, a Deloitte Tech Fast winner and ranked in the Financial Times list of High Growth Companies Asia-Pacific 2021, is a leader in digital entertainment, blockchain, and gamification that is working to advance digital property rights. It develops and publishes a broad portfolio of products including the REVV token and SAND token; original games including The Sandbox, Crazy Kings, and Crazy Defense Heroes; and products utilizing popular intellectual properties including Disney, WWE, Snoop Dogg, The Walking Dead, Power Rangers, MotoGP™, and Formula E. The company has multiple subsidiaries, including The Sandbox, Blowfish Studios, Quidd, GAMEE, nWay, Pixowl, Forj, Lympo, Grease Monkey Games, and Eden Games. Animoca Brands has a growing portfolio of more than 200 investments in NFT-related companies and decentralized projects that are contributing to building the open metaverse, including Axie Infinity, OpenSea, Dapper Labs (NBA Top Shot), Yield Guild Games, Harmony, Alien Worlds, Star Atlas, and others. For more information visit www.animocabrands.com or follow on Twitter or Facebook.

Responsibilities

  • Participate in the design, architecture and implementation of the different software components, including smart contracts, frontends and backends;
  • Play a central role in the blockchain game's design, be innovative, assess the feasibility and give insight on cost/benefit for different concepts;
  • Enforce adequate level of security for managing crypto-assets;
  • Participate in technical and functional aspects of blockchain on several projects;
  • Conduct continuous research on blockchain technologies and keep an eye on any tech stack or standards which can apply to the gaming sector;   Qualifications

  • In-depth understanding of all the technical and functional aspects of blockchains (consensus, security models, tokenomics, etc.) and crypto-wallets (keys management, UX, etc), with a robust knowledge of Ethereum;

  • Proficiency in at least one of the following languages: Go/C++/Rust (code-literacy with one of the Ethereum node implementations) and with Javascript (Web3);

  • Experience designing and implementing systems based on blockchain (separation of duties between chain, frontends and backends);

  • Experience with Smart-Contracts full development cycle (Solidity) and knowledge of the standards for token contracts (ERC-20, ERC-721, ERC-1155, etc.);

  • Strong experience with UNIX systems (Linux) and Cloud Infrastructures (AWS, GCP, etc.).   Some other relevant experience/qualifications:

  • PhD (or strong programming experience) in Blockchains, Decentralised Systems, Cryptography, Virtual Machines or related discipline;

  • Experience as a core blockchain developer, software architect and/or technical lead;

  • Experience in blockchain gaming;

  • Deep understanding of major public blockchains and scalability solutions;

  • Experience implementing Crypto-Wallets,

  • Experience with GPGPU and/or Crypto Mining,

  • Experience in the Financial / Fintech industry.

Additional Information Please attach any portfolio or showcase of your work such as Games, Websites or GitHub repositories. Short-listed candidates will be contacted.   Information provided will be treated in strict confidence and will only be used for recruitment-related purposes. Only short-listed candidates will be contacted. Information of unsuccessful applicants will be destroyed after six months.

THE PERKS   - Dynamic and Multi-cultural work environment (15 nationalities and counting!) - Token and NFT incentive schemes provided by Animoca Brands - Flat company structure: your ideas get heard by the right people very quickly - Casual work attire - Opportunity to get involved in working with various subsidiary brands - Benefits (Medical / Life / Transportation Allowances)

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.