Erc 20 Jobs in Web3
228 jobs found
Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Sport Alliance GmbH | Remote |
| |||
Virtual Pangea | Remote |
| |||
Higin | Bengaluru, India | $18k - $36k | |||
Hike | Delhi, India | $14k - $48k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 |
| |||
DOT Indonesia | Indonesia | $64k - $83k | |||
IOTA Foundation | Remote | $63k - $70k | |||
Stargate | Miami, FL, United States | $200k - $280k | |||
Coinocracy | Palo Alto, CA, United States | $150k - $200k |
This job is closed
Do you want to make a difference in the FitTech industry as part of an agile and fast-moving team? How about a mentality that values your opinions and ideas? Are you enthusiastic about cryptocurrencies and do you want to be technically responsible for a corresponding project and develop it further? Then you've come to the right place. Be a part of the digital transformation of the fitness industry.
Tasks
- Become part of the small development team and take partial responsibility for the overall "BEAT" project
- Actively develop our mobile app and use our modern tech stack (Flutter, Dart, AWS, Docker)
- Design the product according to your ideas, conceptualize features and implement them mainly in the frontend and occasionally in interfaces to the Ethereum blockchain environment
- Be responsible for making business decisions, creating roadmaps, and engaging with the community as part of a team effort
- Exchange content and technical ideas with other colleagues who are available to you as sparring partners
Requirements
- You have experience in the development and conception of software solutions with Dart and Flutter
- You ideally bring expertise in developing and running scalable applications and have solid knowledge in backend development with Java, Spring Boot and Hibernate
- You have a natural interest in cryptocurrencies / tokens and are excited to be responsible for our own erc20 BEAT tokens for all BEAT activities
- You have experience working with automated testing (acceptance & unit tests) and share our belief that this is an important part of sustainable software development
- You are always technically up to date, enjoy working in a team and can communicate confidently in English
Benefits
- An attractive workplace in the heart of Hamburg and flexible arrangement of working time and location possible
- An own fitness studio that can be used free of charge, including a personal trainer and a physiotherapist for all colleagues
- Our own CashBack sports program "MySports", which we use to subsidize your sports activities
- High level of personal responsibility, quick assumption of responsibility and leads who communicate with you at eye level
- Supply of drinks, fresh fruit and snacks
- Subsidized public transport
- Flat hierarchies and a motivated and dynamic team
Then become a part of our team and apply now online.
Due to recent events: In order to protect you and us, our job interviews in the first step are currently only conducted by phone or video phone. We are also there for you in these special times and look forward to getting to know 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:
- 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.