Erc 20 Jobs in Web3

270 jobs found

web3.career is now part of the Bondex Logo Bondex Ecosystem

Receive emails of Erc 20 Jobs in Web3
Job Position Company Posted Location Salary Tags

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

Swaray

Los Angeles, CA, United States

$90k - $110k

Immutable

Sydney, Australia

$54k - $90k

Continuum Works

Chicago, IL, United States

$180k - $210k

Joint NFT

India

$115k - $2k

Joint NFT

India

$115k - $2k

Joint NFT

India

$0k - $2k

Immutable

Remote

$63k - $75k

Brinc

Hong Kong, Hong Kong

$43k - $53k

Brinc

Hong Kong, Hong Kong

$43k - $53k

Brinc

Hong Kong, Hong Kong

$43k - $53k

Avalor Investments

Mumbai, India

$0k

Dev Rel Engineer web2 mobile web

Celo Foundation
$45k - $54k estimated

This job is closed

At the Celo Foundation we partner with organizations across the Celo ecosystem including partnering with cLabs, the team working on the open source platform Celo, whose mission is to build a financial system that creates the conditions for prosperity for all. Celo aims to remove the barriers for large-scale adoption of cryptocurrencies as means-of-payment.
Using a novel address-based encryption algorithm, the Celo protocol makes sending money as easy as sending a text. Additionally, Celo uses stable-value tokens pegged to fiat currencies, like the US Dollar, to minimize volatility.
Celo is an open protocol enabling many to participate in the system, even with a budget Android smartphone. The first application launched on the Celo platform, Valora, is a social payments and money transfer app, aimed at developing markets.
You Will:
  • Use your knowledge and experience attracting traditional web2/mobile web developers coming into web3 to Celo
  • Build awareness around the unique benefits of Celo’s PoS, mobile focused network.
  • Help to educate and inform the web and mobile web developer community about best practices in the web3 space
  • Design, implement, and improve the overall Celo mobile and web 2.0 developer experience.
  • Develop code integrations, example web apps, and contribute to SDKs, bugs and enhancements
  • Support developers integrating with Celo
  • Write clear documentation, compelling tutorials, and engaging videos
  • Develop and deliver content, presentations that resonate with the wider Celo community on stage at an event, virtually, or through other media.
  • Drive developer workshops and other external events
  • Help organize, build and train local developer communities and university developer groups
  • Encourage and celebrate diversity in the communities you build
  • Represent the community externally and internally and influence the engineering roadmap (SDKs, core specification) with your insights
  • Work closely with the engineering and community teams
You Have:
  • 3+ experience working as a software engineer or engineering-focused developer advocate role
  • Ability to distill complex concepts into easy to understand explanations
  • Strong written and oral communication skills
  • Deep understanding of open-source development and communities
  • An intuition for what makes a good developer experience
  • Published technical articles and/or given technical presentations
You Might Have:
  • built a native or mobile app or PWA website that interacts directly with a smart contract on the Celo network
  • launched a mobile app and deployed a smart contract on Ethereum or other blockchains. You have deployed your own ERC-20, ERC-721 tokens.

cLabs ("Celo Labs") started Celo in 2017 and is one of many contributors to the open source project Celo.cLabs builds financial technology to enable prosperity of all beings.

cLabs is a Teal organization, a method of decentralized management and organizational governance. Roles are defined around the work, not people, and there is a high degree of autonomy. As such, we're all proud to hold the job title of "Partner." For more information on our culture, we encourage you to check out our blog at. https://medium.com/celohq/the-future-is-teal-cc264a5d51d3

To build technology and products that are used and loved by people and solve real-world problems, we need to build a team with many different perspectives and experiences. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status. We encourage candidates from all backgrounds to apply and always consider qualified applicants with arrest and conviction records, in accordance with the San Francisco Fair Chance Ordinance.
Applicants in need of special assistance or accommodation during the interview process or in accessing our website may contact us by sending an email to assistance(at)celo.org. We will treat your request as confidentially as possible. In your email, please include your name and preferred method of contact, and we will respond as soon as possible.

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:

  1. balanceOf(address): Returns the token balance of a specific address.
  2. transfer(address to, uint256 value): Transfers tokens from the caller's address to the specified address.
  3. approve(address spender, uint256 value): Approves a specific address to spend a certain amount of tokens on behalf of the caller.
  4. allowance(address owner, address spender): Returns the amount of tokens approved by the owner that the spender can transfer.
  5. User1 owns 500,000 ABC Tokens.
  6. User2 wants to buy 100 ABC Tokens from User1.
  7. User1 approves User2 to spend up to 100 ABC Tokens on her behalf.
  8. User2 calls the transferFrom() function with User1's address, his own address, and the value of 100 tokens.
  9. The transferFrom() function deducts 100 tokens from User1's balance and adds them to User2's balance.