Job Position | Company | Posted | Location | Salary | Tags |
---|---|---|---|---|---|
Parcel | Remote |
| |||
Parcel | Remote |
| |||
Altoros | Minsk, Belarus | $105k - $111k | |||
Satya Cars | Gurugram, India | $50k - $60k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Opera | Remote | $43k - $86k | |||
Parcel | Remote |
| |||
Parcel | Remote |
| |||
IOVLabs | Remote | $70k - $100k | |||
IOVLabs | Remote | $72k - $100k | |||
cLabs | Remote | $40k - $100k | |||
Otis | Remote | $84k - $150k | |||
Scalable Path | $72k - $90k | ||||
cLabs | Remote | $29k - $60k | |||
Findora | Remote | $47k - $70k | |||
Figure | Miami, FL, United States | $36k - $60k |
This job is closed
About Parcel 🏡
The Destination for Virtual Real Estate
Transact, learn, and connect. Parcel makes accessing virtual real estate faster, easier, and more affordable. Featuring a dynamic marketplace with aggregated listings, zero marketplace fees, low gas consumption, and comprehensive data & insights.
Parcel is building the most robust land NFT experience through strong relationships with creators, landowners, and emerging worlds. We plan to evolve our marketplace into one that connects users across every aspect of creating their ideal metaverse experience.
Backed by world-leading crypto investors, we're searching for builders to help lay the foundation for the metaverse. Join us! 🚀
Opportunity:
- Massive ownership, freedom, and the opportunity to work directly with the CTO. Work with a variety of technologies across the stack
- Join a talented team passionate about the metaverse and the future of the virtual economy
- Solve complex issues in one of the fastest-growing categories in NFTs
Responsibilities:
- Build, maintain and iterate on the core product and features
- Drive high-level decisions about the Parcel marketplace design and architecture
- Work closely with the founders and CTO to build product features, drive strategy and execute key initiatives
Desired Skills:
- Familiar with Javascript / Typescript / Node.js / React.js / Next.js / GraphQL & The Graph
- Experience with EVM, ethers.js
- Deep technical understanding of and passion for metaverses and crypto in general
- The ability to work independently and be proactive
- A strong quality orientation, combined with a pragmatic attitude to deliver
- Analyze and improve performance throughout the technology stack
- Actively participate in code reviews across the engineering organization to ensure best practices are followed
- Discuss and suggest improvements to the development process, code convention, and best practices across the engineering organization
Nice to Haves:
- Experience with Solidity, ERC-20 & ERC-721, Rust
- Experience with sidechains like Polygon
- DevOps experience (Docker / AWS / Webpack / etc.)
Working at Parcel
🤑 Highly competitive salary & equity package 🦷 Premium medical, dental, and vision for you and your dependents 💻 Computer setup of your choice 🌴 Unlimited PTO & mental health days 🌎 Quarterly off-sites around the world!
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.