How to resolve transaction request?

Resolve a payment request

Once transaction is done onchain, you need to update transaction hash for that transaction request

Soon, it will be an automated process, as our workers will be able to find and match transactions for transaction requests

Arrange Data

Arrange transaction request in the format

{
    "id": number,
    "fromChain": number,
    "fromToken": "string",
    "transactionHash": "string",
    "executed": boolean
}

Using API

Using SDK

For Quickstart

const updatedData = {}

const request = await fetcch.request.resolve(updatedData)

Last updated