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 |
---|---|---|---|---|---|
Binance | New York, NY, United States |
| |||
Gnosis | Remote |
| |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Learn job-ready web3 skills on your schedule with 1-on-1 support & get a job, or your money back. | | by Metana Bootcamp Info | |||
Coinmarketcap | Calgary, Canada | $72k - $100k | |||
Binance | Amsterdam, Netherlands |
| |||
Binance | Krakow, Poland |
| |||
Binance | United States |
| |||
Binance | United States |
| |||
Qredo | Sofia, Bulgaria |
| |||
Finoa GmbH | remote | $90k - $110k | |||
BlockchainStaffingNinja | United States | $27k - $77k | |||
BlockchainStaffingNinja | United States | $63k - $85k | |||
DeRisk Technologies | New York, NY, United States | $39k - $80k | |||
Qredo | Singapore, Singapore |
|
Binance
This job is closed
BNBChain - Developer Relations Engineer (CIS)
Germany, Berlin /
Engineering – Blockchain Development /
Full-time: Remote
/ Remote
Apply for this job
Binance is the global blockchain company behind the world’s largest digital asset exchange by trading volume and users, serving a greater mission to accelerate cryptocurrency adoption and increase the freedom of money.
Are you looking to be a part of the most influential company in the blockchain industry and contribute to the crypto-currency revolution that is changing the world?
Do you have a passion for blockchain technology and a love for advocating for web3 innovation? If so, BNB Chain is looking for Tech Evangelists to work with web3 developers to help build successful web3 projects using the latest blockchain technologies.
As a technology evangelist, you’ll be offering technical assistance as well as raising awareness of the opportunity for blockchain innovation.Â
Through advocacy, you will establish BNB Chain as an industry leader through engagement and delivering advice, guidance, technical content, and building relationships with web3 developers.
Importantly, you will be the bridge between many teams and communities, connecting the dots between different technologies and utilities to help scale web3. This will include offering technical assistance, writing content, presenting at events, and writing code.
Key Responsibilities
- Shape and execute a strategy around driving developer awareness and adoption of the BNB Chain.
- Work with the product, engineering, and growth teams to improve the onboarding and overall experience of developers on the BNB chain.
- Identify and build relationships with key influencers with the aim of fostering a strong community, as well as collect feedback about the product and technical blockers, if any.
- Helping to ensure partners' success in building and migrating applications, software, and services on the BNBChain.
- Create and execute a schedule of technical content on the BNB Chain blog, such as videos, blogs, tech talks, live streams, tutorials, best practices, and white papers to enable developers to develop Apps on BNB Chain easily.
- Capture and share best practice knowledge with the worldwide Blockchain community.
- Invent new and novel ways to improve the developer experience across our suite of tools and the rest of the BNB Chain ecosystem
- Be familiar with the product and technical details of BNB Chain, directly connected with project personnel, and solved the online consultation and complaints related to certain product/technical knowledge transmitted.
- Lead BNB Chain involvement in relevant conferences, Hackathons, and Meetups, including oversight of our annual developer conference.Â
- Play a lead in writing content, recording videos, and speaking at conferences. You’ll be the face of BNB Chain at events and in online communities.Â
Technical Requirements
- Degree in Computer Science, Technology, Engineering, or Math or 5+ years of work experience in a technical role.
- Highly technical and analytical, possess 3+ years of blockchain Technical Evangelist (implementation/consulting) experience.
- Knowledge of Zero Knowledge proof, homomorphic encryption, and elliptic curve cryptography
- Experience or advanced knowledge in developing zkSNARK/plonky2 circuits. Understanding of secure cryptographic protocols for blockchain.
- Have a domain-level understanding of Cloud Infrastructures, including Compute, Network, and storage, as well as cloud Management areas such as automation, orchestration, and DevOps.
- Familiarity with technologies: Experience with Bridges, NFT, ERC-20, ERC-721, ERC-1155, MetaMask, Ethereum, Marketplaces, NFT marketplaces, minting, staking and DeFi
- Tech Stack: JavaScript/TypeScript, React, Solidity, Node, Go, Blockchain, Consensus Algorithms understanding, Wallets Development, Web3, understanding fundamentals of blockchain infrastructure
- Experience with database architecture and design to create storage solutions for managing distributed ledger and related data/state in files/database system
- Presentation skills with a high degree of comfort speaking with executives, IT Management, and developers
- Good verbal and written communication skills in English to engage with team and stakeholders effectively.
- Passionate, Ownership, Doer-spirit, Result oriented, and a good Team player.
- Professional fluency in English is a must; fluency in an additional language is an added advantage.
Working at Binance
• Do something meaningful; Be a part of the future of finance technology and the no.1 company in the industry
• Fast moving, challenging and unique business problems
• International work environment and flat organisation
• Great career development opportunities in a growing company
• Possibility for relocation and international transfers mid-career
• Competitive salary
• Flexible working hours, Casual work attire
By submitting a job application, you confirm that you have read and agree to our Candidate Privacy Notice.
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.