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

Qredo

Madrid, Spain

$86k - $100k

Binance

New York, NY, United States

Gnosis

Remote

Coinmarketcap

Calgary, Canada

$72k - $100k

Coinmarketcap

Calgary, Canada

$72k - $100k

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

UX Researcher Crypto

Qredo
$86k - $100k estimated

This job is closed

UX Researcher (Crypto)

Madrid, Spain /
Design – Experience & Research /
Full-time Remote
/ Remote

Apply for this job
Qredo is a decentralized digital asset management infrastructure and product suite designed to unlock new opportunities for institutional investors in digital assets and decentralized finance. Qredo's Layer 2 blockchain protocol enables users to seamlessly transfer and settle BTC, ETH, and ERC-20 tokens. Assets are secured by Qredo’s advanced Gen 2.0 multi-party computation (MPC), which provides tier-1 bank security and institutional-grade governance.

Qredo is a rapidly growing scale-up organisation that is looking for a Design Researcher to help accelerate the growth of our products and services. The role will be working within the Experience Team, unapologetically for the customer.

You will be responsible for and own the evolving customer journey maps. You will have an innate curiosity and comfortable engaging with c-level customers to deeply understand their goals and bring the voice of the customer to life in storytelling. Working with the Product Manager, Product Design, Marketing and Sales, you will craft engaging and effortless experiences. Working with the Data team, you will define and implement data points and monitor tangible improvements in our customer’s experience.

The role combines strategic thought with creativity to envision the future state and requires extensive collaboration with designers, engineers and product owners, providing practical and actionable insight to improve every touchpoint.
This role will be highly visible and a key stakeholder within the Experience Team designing experiences with authentic value and strong brand differentiation.

Responsibilities

    • Own the end-to-end user journey; mapping the current state and crafting a new, improved story based on user testing, research and co-design with strategic partners and customers
    • Define quantitative UX metrics to evaluate the effectiveness of strategic UX decisions
    • Manage and grow strategic customer relationships to provide meaningful insights to the product and design teams and achieve stakeholder alignment of what success looks like
    • Undertake deep dives on competitor solutions to understand base line requirements and opportunities to exploit.
    • Define the requirements of the project to build a research repository of customer goals, pains, and desires to inspire insights and recommendations for development
    • Define immersive qualitative customer research (such as co-creation events, contextual interviews and observation exercises) and quantitative techniques to capture constructive feedback and data for clear decision-making on the way forward
    • Constantly lead new experiments, living the product through the eyes of the customer to test, report and articulate improvements to be made
    • Use customer insights and strategic direction to co-create prototypes with the Design and Product team to test with customers
    • Drive impactful CX/XD strategies to support user growth and increase transaction volume across business lines

Requirements

    • 5+ years experience auditing/designing frictionless customer journeys ideally in a crypto exchange, crypto protocol, FinTech or banking environment
    • Experience in blockchain technologies, digital assets, and security
    • Entrepreneurial, obsessed with detail and a ‘what if’ attitude
    • Experience in a lead role, preferably in a digital research setting, designing and delivering a wide range of user-centred design research including creating research briefs, managing research teams, and delivering actionable insights and recommendations.
    • Proven XD management experience with strong ownership, pragmatism and emotional intelligence
    • User-focused and product-driven: strong understanding of product, tech and platform
    • An excellent visual communicator and motivator
    • Demonstrable portfolio of your research/design work.
    • Experience desirable with the tools we use to help our Atomic Research - Dovetail, Gleanly, Maze, Figma and Typeform

Qredo Offers

    • Flexibility to work from anywhere and possibility for international transfer
    • Assistance with home office setup as well as offsite team building allowance
    • Culturally diverse work environment (we speak 33 languages!)
    • Great career development opportunities in a growing company
    • Competitive compensation and benefits package within the industry

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:

  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.