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

Arcadia Finance

Brussels, Belgium

$0k

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

Content Writer Crypto Intern Working Student and or Contractor

Arcadia Finance
$0k

This job is closed

We’re looking for a talented contractor or working student to help us creating informative and engaging articles.

Content Writer responsibilities include conducting thorough research on Blockchain/DeFi/NFT related topics, generating ideas for new content types and co-writing articles. If you’re familiar with producing online content, we’d like to meet you! Feel free to share samples of your work or portfolio of your published articles, along with your application.

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:

  • Proven work experience as a Content Writer, Copywriter or similar role.
  • Exceptional written and communication skills.
  • 1+ year experience with Blockchain/DeFi/NFTs in any capacity (investor, contributor, shitposter, student) and a basic understanding of the underlying technology.
  • Experience doing research using multiple sources.
  • Entrepreneurial mindset: self-starter, driven by meritocracy.
  • Native or bilingual fluent English speaker.

Responsibilities:

  • Writing: Ability to craft clever articles.
  • Editing: Proofread and edit blog posts before publication.
  • Research: Research industry-related topics (combining online sources, interviews and studies).
  • Process Management: Co-create and execute content calendar (with support of an external marketing agency).

Nice to Haves:

  • A degen score.
  • Familiarity with web publications.
  • Existing audience/social media accounts.
  • 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.