EscrowUtils
@human-protocol/sdk • Docs
@human-protocol/sdk / escrow / EscrowUtils
Class: EscrowUtils
Introduction
Utility class for escrow-related operations.
Installation
npm
npm install @human-protocol/sdkyarn
yarn install @human-protocol/sdkCode example
Signer
Using private key(backend)
Constructors
new EscrowUtils()
new EscrowUtils():
EscrowUtils
Returns
Methods
getEscrow()
staticgetEscrow(chainId,escrowAddress):Promise<EscrowData>
This function returns the escrow data for a given address.
This uses Subgraph
Input parameters
Parameters
• chainId: ChainId
Network in which the escrow has been deployed
• escrowAddress: string
Address of the escrow
Returns
Promise<EscrowData>
Escrow data
Code example
Source
getEscrows()
staticgetEscrows(filter):Promise<EscrowData[]>
This function returns an array of escrows based on the specified filter parameters.
Input parameters
Parameters
• filter: IEscrowsFilter
Filter parameters.
Returns
Promise<EscrowData[]>
List of escrows that match the filter.
Code example
Source
Last updated