EscrowClient
@human-protocol/sdk / escrow / EscrowClient
Class: EscrowClient
Defined in: escrow.ts:134
Introduction
This client enables performing actions on Escrow contracts and obtaining information from both the contracts and subgraph.
Internally, the SDK will use one network or another according to the network ID of the runner
. To use this client, it is recommended to initialize it using the static build
method.
A Signer
or a Provider
should be passed depending on the use case of this module:
Signer: when the user wants to use this model to send transactions calling the contract functions.
Provider: when the user wants to use this model to get information from the contracts or subgraph.
Installation
npm
yarn
Code example
Signer
Using private key (backend)
Using Wagmi (frontend)
Provider
Extends
Constructors
new EscrowClient()
new EscrowClient(
runner
,networkData
):EscrowClient
Defined in: escrow.ts:143
EscrowClient constructor
Parameters
runner
ContractRunner
The Runner object to interact with the Ethereum network
networkData
The network information required to connect to the Escrow contract
Returns
Overrides
Properties
networkData
networkData:
NetworkData
Defined in: base.ts:12
Inherited from
runner
protected
runner:ContractRunner
Defined in: base.ts:11
Inherited from
Methods
addTrustedHandlers()
addTrustedHandlers(
escrowAddress
,trustedHandlers
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:771
This function adds an array of addresses to the trusted handlers list.
Parameters
escrowAddress
string
Address of the escrow.
trustedHandlers
string
[]
Array of addresses of trusted handlers to add.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Only Job Launcher or trusted handler can call it.
bulkPayOut()
bulkPayOut(
escrowAddress
,recipients
,amounts
,finalResultsUrl
,finalResultsHash
,txId
,forceComplete
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:604
This function pays out the amounts specified to the workers and sets the URL of the final results file.
Parameters
escrowAddress
string
Escrow address to payout.
recipients
string
[]
Array of recipient addresses.
amounts
bigint
[]
Array of amounts the recipients will receive.
finalResultsUrl
string
Final results file URL.
finalResultsHash
string
Final results file hash.
txId
number
Transaction ID.
forceComplete
boolean
= false
Indicates if remaining balance should be transferred to the escrow creator (optional, defaults to false).
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Only Reputation Oracle or a trusted handler can call it.
cancel()
cancel(
escrowAddress
,txOptions
?):Promise
<EscrowCancel
>
Defined in: escrow.ts:685
This function cancels the specified escrow and sends the balance to the canceler.
Parameters
escrowAddress
string
Address of the escrow to cancel.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<EscrowCancel
>
Returns the escrow cancellation data including transaction hash and refunded amount. Throws error if any.
Code example
Only Job Launcher or a trusted handler can call it.
complete()
complete(
escrowAddress
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:543
This function sets the status of an escrow to completed.
Parameters
escrowAddress
string
Address of the escrow.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Only Recording Oracle or a trusted handler can call it.
createBulkPayoutTransaction()
createBulkPayoutTransaction(
escrowAddress
,recipients
,amounts
,finalResultsUrl
,finalResultsHash
,txId
,forceComplete
,txOptions
?):Promise
<TransactionLikeWithNonce
>
Defined in: escrow.ts:940
Creates a prepared transaction for bulk payout without immediately sending it.
Parameters
escrowAddress
string
Escrow address to payout.
recipients
string
[]
Array of recipient addresses.
amounts
bigint
[]
Array of amounts the recipients will receive.
finalResultsUrl
string
Final results file URL.
finalResultsHash
string
Final results file hash.
txId
number
Transaction ID.
forceComplete
boolean
= false
Indicates if remaining balance should be transferred to the escrow creator (optional, defaults to false).
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<TransactionLikeWithNonce
>
Returns object with raw transaction and signed transaction hash
Code example
Only Reputation Oracle or a trusted handler can call it.
fund()
fund(
escrowAddress
,amount
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:414
This function adds funds of the chosen token to the escrow.
Parameters
escrowAddress
string
Address of the escrow to fund.
amount
bigint
Amount to be added as funds.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
getBalance()
getBalance(
escrowAddress
):Promise
<bigint
>
Defined in: escrow.ts:1085
This function returns the balance for a specified escrow address.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<bigint
>
Balance of the escrow in the token used to fund it.
Code example
getExchangeOracleAddress()
getExchangeOracleAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1471
This function returns the exchange oracle address for a given escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the Exchange Oracle.
Code example
getFactoryAddress()
getFactoryAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1509
This function returns the escrow factory address for a given escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the escrow factory.
Code example
getIntermediateResultsUrl()
getIntermediateResultsUrl(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1243
This function returns the intermediate results file URL.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Url of the file that store results from Recording Oracle.
Code example
getJobLauncherAddress()
getJobLauncherAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1395
This function returns the job launcher address for a given escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the Job Launcher.
Code example
getManifestHash()
getManifestHash(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1129
This function returns the manifest file hash.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Hash of the manifest file content.
Code example
getManifestUrl()
getManifestUrl(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1167
This function returns the manifest file URL.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Url of the manifest.
Code example
getRecordingOracleAddress()
getRecordingOracleAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1357
This function returns the recording oracle address for a given escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the Recording Oracle.
Code example
getReputationOracleAddress()
getReputationOracleAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1433
This function returns the reputation oracle address for a given escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the Reputation Oracle.
Code example
getResultsUrl()
getResultsUrl(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1205
This function returns the results file URL.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Results file url.
Code example
getStatus()
getStatus(
escrowAddress
):Promise
<EscrowStatus
>
Defined in: escrow.ts:1319
This function returns the current status of the escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<EscrowStatus
>
Current status of the escrow.
Code example
getTokenAddress()
getTokenAddress(
escrowAddress
):Promise
<string
>
Defined in: escrow.ts:1281
This function returns the token address used for funding the escrow.
Parameters
escrowAddress
string
Address of the escrow.
Returns
Promise
<string
>
Address of the token used to fund the escrow.
Code example
setup()
setup(
escrowAddress
,escrowConfig
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:304
This function sets up the parameters of the escrow.
Parameters
escrowAddress
string
Address of the escrow to set up.
escrowConfig
Escrow configuration parameters.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Only Job Launcher or a trusted handler can call it.
storeResults()
storeResults(
escrowAddress
,url
,hash
,txOptions
?):Promise
<void
>
Defined in: escrow.ts:479
This function stores the results URL and hash.
Parameters
escrowAddress
string
Address of the escrow.
url
string
Results file URL.
hash
string
Results file hash.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Only Recording Oracle or a trusted handler can call it.
withdraw()
withdraw(
escrowAddress
,tokenAddress
,txOptions
?):Promise
<EscrowWithdraw
>
Defined in: escrow.ts:837
This function withdraws additional tokens in the escrow to the canceler.
Parameters
escrowAddress
string
Address of the escrow to withdraw.
tokenAddress
string
Address of the token to withdraw.
txOptions?
Overrides
= {}
Additional transaction parameters (optional, defaults to an empty object).
Returns
Promise
<EscrowWithdraw
>
Returns the escrow withdrawal data including transaction hash and withdrawal amount. Throws error if any.
Code example
Only Job Launcher or a trusted handler can call it.
build()
static
build(runner
):Promise
<EscrowClient
>
Defined in: escrow.ts:161
Creates an instance of EscrowClient from a Runner.
Parameters
runner
ContractRunner
The Runner object to interact with the Ethereum network
Returns
Promise
<EscrowClient
>
An instance of EscrowClient
Throws
Thrown if the provider does not exist for the provided Signer
Throws
Thrown if the network's chainId is not supported
Last updated