Erc 20 Jobs in Web3
202 jobs found
Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Altered State Machine | Auckland, New Zealand | $63k - $70k | |||
Animoca Brands Limited | Hong Kong, Hong Kong | $72k - $90k | |||
Venture Studio | New York, NY, United States | $150k - $200k | |||
Improbable | Remote | $45k - $80k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 | |||
Renaissance Labs | Remote | $100k - $240k |
This job is closed
Altered State Machine are looking for a technically excellent, motivated and proven Ethereum Blockchain Engineer with at least one high volume Solidity project under their belt, to be part of a strong core team that are well versed in the security, performance and commercial viability concerns of developing smart contract based applications.
Experience with Functional Programming, Typescript, React, GraphQL, AWS Lambda, DynamoDB, Kinesis and API Gateway or Unity Game Engine would be highly desirable.
Key Objectives / Outcomes
- Develop  software to meet agreed technical and design specifications to a high-quality, with little supervision;   
- Make contributions to product architecture;  
- Effectively review other developers’ code;
- Contribute to business requirements and technical specification documents;
- Thoroughly test software and log defects including - Unit Tests, Integration Tests, Performance Testing; and
- Provide on-call support to applications in production when necessary
Knowledge and Experience
- Experience designing, delivering and supporting secure, high volume smart contracts.
- Ability to design smart contracts to minimise gas costs to users
- Ability to contribute to a high profile protocol launch including, a governance DAO, ERC20 Token, ERC721/1155 NFT drops
- Confidence in designing critical, high value contracts for token vesting, liquidity mining and play-to-earn gaming.
- Experience integrating backend/frontend applications with smart-contracts and execution logs.
- Strong communication skills and highly effective when working with a team.
Key Work Behavioural Competencies
- Highly motivated, takes ownership and thrives when working in small teams to implement scalable, high-performing solutions;
- Outgoing and engaging, able to build or bring together a strong community of developers;
- Excellent verbal and non-verbal communication skills: asks questions, is transparent, keeps people updated;
- Strong relationship building and relationship management skills: is respectful, supportive, inclusive and flexible;
- Action driven: focuses on core responsibilities, is proactive, shows initiative and delivers on objectives and timelines;
- Effective collaboration abilities: listens, trusts and shares, shows readiness to take on or give up responsibilities as needed;
- Learning focussed: continually develops technical and non-technical skills and knowledge, seeks feedback; and
- High integrity: always operates with the best interests of the company in mind.
We're a great place to work at
- Experienced and wickedly talented team of 50 and growing
- Venture funded by a consortium of 20 leading crypto investors… and more every day
- Plenty of opportunity
- Real work-life balance
We can offer
- Great variety (no two days are the same)
- Exciting international projects
- Engaging with global AAA gaming companies, game platforms and investors
- The right salary
- Flexibility with WFH options
- The chance to be part of the next generation of the internet… the decentralised metaverse
We’re looking for people to help us build the future of AI and gaming in Web3. If the above sounds like you and the idea of new technologies, gaming and the Metaverse excites you, we’d love to chat.
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.