Erc 20 Jobs in Web3
195 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 game dev 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 | Lisbon, Portugal | $45k - $90k | |||
Qredo | Lisbon, Portugal |
| |||
Blockville | Turkey | $63k - $100k | |||
Coinmarketcap | Mexico City, Mexico | $72k - $85k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Austin Werner Ltd | Minneapolis, MN, United States | $27k - $57k | |||
Infinite Reality | San Francisco, CA, United States | $45k - $75k | |||
Paraform | United States | $54k - $112k | |||
Qredo | Amsterdam, Netherlands | $85k - $150k | |||
Paraform | United States | $59k - $90k | |||
Vivo (Telefônica Brasil) | Sao Paulo, Brazil | $54k - $60k | |||
Syntropy | Berlin, Germany | $54k - $75k | |||
Infinite Reality | San Francisco, CA, United States | $45k - $75k | |||
Digital Marketing Company | Los Angeles, CA, United States | $45k - $75k | |||
Roote | San Francisco, CA, United States |
| |||
Upside.gg | United States | $36k - $61k |
Qredo
$45k - $90k estimated
This job is closed
Market Research Analyst
Lisbon, Portugal /
Operations – Growth /
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.
The Market Research Analyst will be responsible for conducting market research to support the development and implementation of company strategies. This will include analyzing market trends, assessing customer needs, and recommending solutions to drive growth. The ideal candidate will have a deep understanding of the blockchain industry and be able to use their knowledge to support the growth of our company.
Responsibilities
- Conduct market research to understand market trends, customer needs, and competition
- Analyze data to identify opportunities for growth and develop recommendations for the company
- Develop and implement research projects to support the growth of the company
- Collaborate with cross-functional teams to ensure market research findings are integrated into business strategies
- Stay up-to-date with industry trends and developments to ensure that the company remains competitive
Requirements
- Bachelor’s degree in Business, Economics, Finance, or a related field
- 3+ years of experience in market research, with a focus on the blockchain industry, ideally in a crypto exchange, crypto protocol or FinTech
- Strong analytical skills and experience using market research tools and techniques
- Excellent written and verbal communication skills
- Ability to work effectively in a fast-paced and dynamic environment
- Passion for blockchain technology and its potential to drive innovation and growth
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.