TalentLayer Documentation
  • 👋Introduction
    • Value Proposition
    • Options for Integration
      • On-Demand Integration
      • Native Integration
    • TalentLayer's Functions
      • PlatformID
        • Fees & Economics
      • TalentLayerID
      • Reviews
      • Services
      • Escrow and Dispute
        • Dispute Workflow
        • Arbitration
          • Kleros Arbitration
          • Platform Managed Arbitration
    • Current Network Liquidity
    • Decentralization
  • ⚙️Technical Guides
    • Web 3 SDK & API
    • StarterKit Template
    • Technical Schemas
    • Network Support
    • Lower-Level Guides
      • Smart Contracts
        • Deployments
        • TalentLayerPlatformID.sol
        • TalentLayerID.sol
        • TalentLayerService.sol
        • TalentLayerReview.sol
        • Escrow & Dispute Contracts
      • The Graph
        • Introduction
        • Querying from an application
        • Queries examples
        • Implementing the pagination
      • Metadata
      • Third-Party Modules
        • Lens Protocol - Social
        • XMTP - Messaging
        • Sismo - Privacy
        • Iexec - Web3Mail
      • Messaging
        • Integrating XMTP
      • Standards
        • ERC-792: Arbitration standard
        • ERC-1497: Evidence Standard
      • How-To Guides
        • How to implement minting TalentLayer IDs?
        • How to implement the service creation?
        • How to implement the proposal creation?
        • How to implement the proposal validation?
    • Delegation
      • Meta Transaction
      • Delegate System
        • Setting
        • User workflow
        • Service creation example
        • How mintForAddress works
  • ⭐Get a Platform ID
  • 🧠Inspiration for Builders
  • 💬Contact The Team
  • 🦝Core Developer Guides
    • Subgraph Local Setup
    • Smart Contracts Local Setup
    • Advanced Documentation
    • Contract & Graph Deployment Guide
    • TalentLayer Improvement Proposals
    • Audit Report
Powered by GitBook
On this page
  • Support for Gasless Meta-transaction
  • Relayers

Was this helpful?

  1. Technical Guides
  2. Delegation

Meta Transaction

Here will provides consultation and recommends several vetted relayer solutions, including OpenGSN, Biconomy, and OZ Defender

PreviousDelegationNextDelegate System

Last updated 1 year ago

Was this helpful?

Support for Gasless Meta-transaction

Our contracts are EIP-2771 compatible so they can support meta-transactions. Our implementation follows the standard provided by @opengsn/contracts.

Relayers

In order to enable gassless transactions, platforms building on TalentLayer must choose a relayer and integrate it into their frontend. Platforms are also responsible for managing whitelisting, since we advise only covering gas costs for a subset of trusted users.

Need help choosing a relayer? We're happy to chat about it! Reach out to us on the "contact" page of the documentation.

Any relayer solutions which are EIP-2771 compatible work with TalentLayer's contracts.

Our team has vetted a few relayer solutions that we recommend supporting:

  • OpenGSN (V2 or V3)

    • Implementation:

    • decentralized, network of relayers, not many but anyone can run their own

    • need to develop Paymaster contract (probably one for each platform which will have a whitelist of users that can be sponsored)

    • expensive, multiple extra things done on chain

  • Biconomy

    • Implementation:

    • semi-centralized, network of relayers, many are Biconomy’s but other people can join?

    • no need to develop any new contracts

  • OZ Defender

    • Implementation:

    • centralized, single relayer, they have the private key

    • no need to develop any new contracts

    • need to spin up server or use AutoTask

⚙️
Open GSN Implementation
Biconomy Implementation
OZ Defender Implementation