Erc 20 Jobs in Web3

251 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

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

Altoros

Minsk, Belarus

$105k - $111k

Satya Cars

Gurugram, India

$50k - $60k

Swaray
$90k - $110k
California Los Angeles United States
Apply

Swaray is an early-stage startup with an experienced video technology management team and an eloquent and intuitively designed prototype that is in need of a blockchain Developer with a passion for video streaming, NFTs and blockchain development to bring our product into Web 3.0. The Blockchain Smart Contract Dapp Developer role at Swaray will be our first blockchain engineering hire and deliver an opportunity to join a rapidly growing early-stage company. This is a unique opportunity for an experienced engineer to take charge of the company’s blockchain development efforts from the ground up.

The Role and Position Responsibilities

The Blockchain Smart Contract Dapp Developer will be responsible for blockchain architecture and development for a highly interactive mobile first social influencer video Dapp.

To ensure success in this role, you should possess passion and knowledge of blockchain paradigms, fundamentals of cryptography, video and social products and experience shipping code that contributes to world-class products across web, mobile and beyond.

What you will be doing

Architect and engineer highly interactive mobile first social influencer video Dapp

Participate in all aspects of the software development life cycle from requirements review to product testing.
Architect and engineer various crypto | Dapp use cases on Smart Contracts (contract interactions, transactions, staking, minting, updating, FTs, NFTs, etc).
Ensure architecture, engineering and security align with product & design requirements
Help to design and build our automation test capability
Create or contribute to Blockchain Smart Contract development, full stack software engineering, software builds and deployment plans, drive upstream code quality initiatives

What we are looking for

3+ years of hands-on experience developing full stack mobile & web applications with Node.
Understand of blockchain and Dapps, w/ emphasis on ETH based smart contracts (erc-20 | 721)
Experience developing Smart Contracts and integrating contracts with mobile and web apps.
debugging, troubleshooting, and abstract problem-solving.
Strong knowledge of HTTP-based APIs (REST), and microservices.
Experience with JavaScript | Typescript frameworks and web3 functions, non-custodial Crypto wallets (Metamask, Exodus, Trustwallet), automation testing, Azure DevOps, Google Cloud and/or Amazon AWS.
Experience with Git-based source control and building and maintaining CI/CD pipeline for mobile applications.
Track record working with distributed teams and collaborating with product managers, QA, designers, and business stakeholders.
Experience with Agile methodologies and iterating quickly on product changes.

Bonus Points:

Experience with FTs + NFTs on Polygon, Flow and/or Binance Smart Chain
Experience with mobile first video applications
Experience handling media assets on IPFS.
Experience with crypto techniques to protect digital assets + transactions against cyberattacks

SoCal Local and PST time zone avaliblity

We are always looking for rockstars! If you fit the mold or if you don’t fit the mold but feel you can live up to the challenge… Get it touch!

Please send us an email with your interest and past experience to [email protected]

Swaray focuses on Social Media, Video Streaming, and Blockchain / Cryptocurrency. Their company has offices in Venice Beach. They have a small team that's between 1-10 employees.

You can view their website at https://www.swaray.io/

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.