Erc 20 Jobs in Web3
228 jobs found
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 | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 | |||
Renaissance Labs | Remote | $100k - $240k | |||
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 |
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:
- balanceOf(address): Returns the token balance of a specific address.
- transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
- approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
- allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
- User1 owns 500,000 ABC Tokens.
- User2 wants to buy 100 ABC Tokens from User1.
- User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
- User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
- The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.