ai analyst backend bitcoin blockchain community manager crypto cryptography cto customer support dao data science defi design developer relations devops discord economy designer entry level erc erc 20 evm front end full stack gaming ganache golang hardhat intern java javascript layer 2 marketing mobile moderator nft node non tech open source openzeppelin pay in crypto product manager project manager react refi research ruby rust sales smart contract solana solidity truffle web3 py web3js zero knowledge
Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Optimism | Remote | $81k - $100k | |||
Fractional | United States | $95k - $155k | |||
InfiniteWorld | Miami, FL, United States | $126k - $140k | |||
Sport Alliance GmbH | Remote |
| |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
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 | |||
Otis | Remote | $63k - $100k | |||
Finoa GmbH | Berlin, Germany | $31k - $80k | |||
Celo Foundation | San Francisco, CA, United States | $54k - $77k | |||
Celo Foundation | San Francisco, CA, United States | $45k - $54k | |||
Datax | Hong Kong, Hong Kong | $360k - $384k | |||
Immutable | Sydney, Australia | $36k - $90k | |||
Interlock | Remote | $54k - $90k |
Optimism
$81k - $100k estimated
This job is closed
What are the role responsibilities?
- Lead the development of our primary consumer facing product, the Optimism Gateway
- Collaborate with design and engineering teams to develop technical direction and vision for web and mobile features
- Architect and own the technical development of the frontend codebase
- Create smooth, stable, and elegant user experience with modern-day Javascript based UI frameworks like React
- Own features from inception and design all the way to implementation and launch
- Work with the protocol team to ensure the security and correct usage of fundamental protocol features (e.g., ERC20 and ERC721 bridge primitives)
What skills do you bring?
- 4+ years of experience in software engineering, including 3+ years of experience in modern web technologies
- Fluency in React with knowledge of current best practices and understanding of the trends and technical progression of web frameworks and design patterns
- Familiarity in front-end architecture, including performance, security and usability
- Familiarity but not prior work experience with the crypto space required
- Experience leading the development of a consumer facing product preferred, not required
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.