Biconomy Gasless SDK (EOA)
DashboardMediumWebsite
  • 🚀Getting Started
  • Introduction
    • 🤘Why Biconomy?
    • 🙂How we simplify transactions
  • Products
    • 💸Gasless Transactions
      • Choose An Approach to Enable Gasless
        • Standard EIP 2771 Approach
          • 1. Register Artifacts on the Dashboard
          • 2. Code Changes
            • Using SDK
            • Using API
        • Custom Implementation Approach
          • 1. Register Artifacts on the Dashboard
          • 2. Code Changes
            • Using SDK
            • Using API
        • Smart Contract Wallet Approach
          • Gnosis
        • Network Agnostic Transactions
          • EIP-2771 Approach
          • Custom Approach
      • Conditional Whitelisting
      • Gasless SDK (EOA) 3
      • Networks Supported
    • ↔️Hyphen - Instant Cross-Chain Transfers
      • SDK
        • DepositManager
        • TransferManager
        • TokenManager
      • APIs
      • Helper Methods
      • Migrating from Hyphen V1
      • Contract Addresses
      • Hyphen Widget
  • Guides
    • 💻Dashboard
      • DApp Statistics
    • ⛽Gas Tank Deposits
      • Via Dashboard
      • Via Smart Contract
  • api
    • 🔧Native Meta Transaction
      • Get Retried Hashes
    • 🌎Dashboard APIs
    • ⚪Whitelist API
      • Whitelist Destination Address
      • Whitelist Proxy Contracts
    • 〰️ Check Limits
    • 💿Biconomy Data API
      • 👨‍🚀Unique User Data
      • 🧑‍🔧Per User Limits Data
      • ⛽Gas Tank Balance Data
  • SDK
    • 📙Gasless SDK (EOA)
      • Configuration
  • Tutorials
    • 🔰Native Meta Transactions
      • How To Build Your First DApp
        • Write Your First Smart Contract
        • Initialize Web3 on Client Side
        • Executing First Blockchain Transaction
      • Enable Native Meta Transactions
        • Smart Contract
          • Describe Your Structs
          • Declare Your Variables
          • Modify Respective Function
        • Client Side
          • Design Your JSON structure
          • Design Your Domain Separator
          • Design Data Types
          • Define Data To Sign
          • Generate Signatures
      • Integrate Biconomy
        • Register On Dashboard
        • Integrate Gasless SDK (EOA)
      • Summary
  • BICO Staking
    • 🪁Safety Module
  • Get in touch
    • 👥Contact Us
  • Misc
    • 🧩Projects on Biconomy
    • 🌐Supported Networks
    • 📫Contract Addresses
    • ✔︎ Smart Contracts Audit
    • ❓FAQs
Powered by GitBook
On this page

Was this helpful?

  1. api
  2. Native Meta Transaction

Get Retried Hashes

This endpoint gives you new hash (in case of resubmission) for an old hash (which you received from initial request by us) with retry count and latest status of new hash.

This api can be called after certain recommended duration (retryDuration) which you get as extra field in initial response.

Get Final Hash

GET https://api.biconomy.io/api/v1/meta-tx/resubmitted

Get the new hash by passing an old hash initially given to you by Biconomy native meta tx API. If transaction is not resubmitted new hash and old hash would be the same

Query Parameters

Name
Type
Description

networkId*

number

Dapp network Id

transactionHash*

string

old transaction hash

{
    "code": 200,
    "message": "Use this new hash to serve to your users",
    "data" : {
    "oldHash": "0x62d79ca0fadb69694c34ff486bb8114431489d444f13d1e131302990869873c4",
    "newHash": "0x62d79ca0fadb69694c34ff486bb8114431489d444f13d1e131302990869873c4",
    "oldGasPrice": "100000000000",
    "newGasPrice": 100000000000,
    "timestamp": 1628876034979,
    "retryCount": 0,
    "relayerAddress": "0xa2fbe95f1049404a71ae60d719597e596eb07c23",
    "newStatus": "CONFIRMED"
    }
transaction hash not found in database

Example Curl Request

PreviousNative Meta TransactionNextDashboard APIs

Last updated 3 years ago

Was this helpful?

curl --request GET '' --header 'Content-Type: application/json'

🔧
https://api.biconomy.io/api/v1/meta-tx/resubmitted?transactionHash=0x4209bbeac966c6d28d57987f17c82b7b42d2faf3a38c2f328f50fc59653a6b63&networkId=137