Erc 20 Jobs in Web3

284 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

Arcadia Finance

Brussels, Belgium

$0k

Inspired

United States

$140k - $160k

SW7 Group

Hong Kong, Hong Kong

$75k - $100k

CONNECT2CRYPTO

Toronto, Canada

$43k - $73k

V3 Talent Partners Inc.

Remote

$72k - $90k

✤ Syntropy

London, United Kingdom

$49k - $76k

Hike

Delhi, India

$9k - $81k

Wirex Limited

Lviv, Ukraine

$54k - $76k

Land3

Boston, MA, United States

$140k - $220k

Land3

Boston, MA, United States

$140k - $220k

GreenPark Sports

United States

$56k - $90k

AUGUST

Remote

$80k - $100k

Libertex Group

Warsaw, Poland

$54k - $80k

Joint NFT

India

$115k - $2k

Community Manager Crypto Intern Working Student

Arcadia Finance
$0k

This job is closed

We’re looking for a talented intern or working student to lead our community building and managing efforts. As our first community hire, we expect you to have a major impact on shaping our culture and helping us build our community-first company.

About Arcadia

Building the foundation for financial NFTs

Arcadia Finance is the first peer-to-contract DeFi lending protocol that allows users to take a single credit line against a basket of any kind of digital assets. Users can lend against any combination of their ERC20/721/1155/XXXX tokens. We are working at the intersection of two booming markets: DeFi and NFTs, and are experimenting with cutting-edge technologies like ZK-Proofs, CCIP and Superfluid.

Arcadia maintains the principles of decentralization, transparency, and accessibility in everything we build and do as an organization. Come help us build the future of finance!

Opportunity:

  • This is Arcadia’s first business-side hire and an incredible opportunity to have significant influence and shape one of the most anticipated startups in DeFi.
  • Remote-friendly company.
  • Possibility to get all or part of your salary in crypto.
  • Report directly to the founders.
  • Participation in an early stage crypto startup.

Qualifications:

  • 1+ year experience with Blockchain/DeFi/NFTs in any capacity (investor, contributor, shitposter, student) and a basic understanding of the underlying technology.
  • Welcoming, open personality.
  • Entrepreneurial mindset: self-starter, driven by meritocracy.
  • Native or bilingual fluent English speaker

Responsibilities:

  • Community Management: Manage all of Arcadia’s social media channels (mostly Discord and Twitter).
  • Writing: Ability to craft clever Tweets and posts.
  • Process Management: Co-create and execute content calendar, promotions, and marketing campaigns.
  • Measurement: Track ROIs and KPIs.

Nice to Haves:

  • A degen score.
  • Experience running/building community in crypto.
  • Twitter account/Discord server.
  • SEO and/or SEM experience.
  • Meme lord.

Arcadia Finance focuses on Blockchain / Cryptocurrency. Their company has offices in Belgium. They have a small team that's between 1-10 employees.

You can view their website at https://www.arcadia.finance/ or find them on LinkedIn.

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.