Erc 20 Jobs in Web3
232 jobs found
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 |
---|---|---|---|---|---|
Qredo | Paris, France | $90k - $150k | |||
Qredo | Madrid, Spain | $63k - $80k | |||
Qredo | Lisbon, Portugal | $57k - $112k | |||
Qredo | Lisbon, Portugal | $31k - $81k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Qredo | Amsterdam, Netherlands | $98k - $120k | |||
Qredo | Madrid, Spain | $81k - $90k | |||
Qredo | Madrid, Spain | $86k - $100k | |||
Binance | New York, NY, United States |
| |||
Gnosis | Remote |
| |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Binance | Amsterdam, Netherlands |
| |||
Binance | Krakow, Poland |
| |||
Binance | United States |
|
Qredo
$90k - $150k estimated
This job is closed
Director of Product
Paris /
Product â Product /
Full-time Remote
/ Remote
Apply for this job
Qredo is a decentralized digital asset management infrastructure and product suite designed to unlock new opportunities for institutional investors in digital assets and decentralized finance. Qredo's Layer 2 blockchain protocol enables users to seamlessly transfer and settle BTC, ETH, and ERC-20 tokens. Assets are secured by Qredoâs advanced Gen 2.0 multi-party computation (MPC), which provides tier-1 bank security and institutional-grade governance.
*** This is a remote opportunity. We welcome candidates around the globe to apply! ***
Qredo is currently looking for a Director of Product with a strong technical background. This is a hands-on role for a strategic thinker, motivational leader of teams, well-developed communicator, who has experience managing complex stakeholder relationships and navigating a matrix global organization. Qredo offers unique technical challenges, a supportive and creative environment with the opportunity to have an important role in a fast-growing organisation.
You should have extensive experience within the blockchain ecosystem, understand the competitive landscape and what is required for sustained results. You should have business and commercial savvy with a strength in developing revenue and product opportunities.
Qredoâs product managers must possess leadership skills, they have majority responsibility for the company's planning and performance of major business programs throughout all phases of the product lifecycle. Qredoâs product managers are responsible for the cost, schedule, quality, customer satisfaction and technical performance of the companyâs products and services, leveraging successful execution to drive future growth.
Responsibilities
- Help to articulate and deliver the vision and drive the product roadmap
- Deliver specialist technology products that enhance our Clientâs business
- Transform Qredoâs blockchain data into meaningful information to enable Clients and Qredo to make informed decisions
- Implement technology to improve the way Qredo works for our staff and Clients
Requirements
- You have 5+ years of experience in a Product Management role, ideally for a business whose focus is blockchain based
- You have proven experience working with engineering teams, involving them in defining solutions, encouraging them to experiment and coaching them in all things Agile
- Proven track record of creating effective content and messaging, with impeccable copywriting, presentation, and planning skills
- Big-Picture oriented: able to think strategically, anticipate issues, reprioritize, and keep focus in a fast-paced environment
- Gravitas: demonstrated experience of managing senior business stakeholders
- Leader: ability to lead and mobilize teams to deliver major initiatives
- Listener: ability to build trust at all levels or an organization
- Creative thinker: ability to develop concrete requirements from unclear situations
- Critical thinker: the ability to infer and âread between the linesâ
- Multi-tasker: ability to juggle multiple projects simultaneously while maintaining high quality output
- Team player: willing to pitch in to get the job done
- Self-sufficiency: ability to learn quickly with minimal direction
Qredo offers
- Flexibility to work from anywhere and possibility for international transfer
- Assistance with home office setup as well as offsite team building allowance
- Culturally diverse work environment (we speak 33 languages!)
- Great career development opportunities in a growing company
- Competitive compensation and benefits package within the industry
Apply for this job
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.