EscrowClient
@human-protocol/sdk / Modules / escrow / EscrowClient
Class: EscrowClient
escrow.EscrowClient
Introduction
This client enables to perform actions on Escrow contracts and obtain information from both the contracts and subgraph.
Internally, the SDK will use one network or another according to the network ID of the signerOrProvider
. 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 in order to send transactions caling the contract functions.
Provider: when the user wants to use this model in order to get information from the contracts or subgraph.
Installation
npm
yarn
Code example
Signer
Using private key(backend)
Using Wagmi(frontend)
Provider
Hierarchy
↳
EscrowClient
Table of contents
Constructors
Properties
Methods
Constructors
constructor
• new EscrowClient(signerOrProvider
, networkData
): EscrowClient
EscrowClient constructor
Parameters
Name | Type | Description |
---|---|---|
|
| The Signer or Provider object to interact with the Ethereum network |
|
| - |
Returns
Overrides
Defined in
Properties
escrowFactoryContract
• Private
escrowFactoryContract: EscrowFactory
Defined in
networkData
• networkData: NetworkData
Inherited from
Defined in
signerOrProvider
• Protected
signerOrProvider: Signer
| Provider
Inherited from
BaseEthersClient.signerOrProvider
Defined in
Methods
abort
▸ abort(escrowAddress
, txOptions?
): Promise
<void
>
This function cancels the specified escrow, sends the balance to the canceler and selfdestructs the escrow contract.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
|
| 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.
Defined in
addTrustedHandlers
▸ addTrustedHandlers(escrowAddress
, trustedHandlers
, txOptions?
): Promise
<void
>
This function sets the status of an escrow to completed.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
|
| Array of addresses of trusted handlers to add. |
|
| 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.
Defined in
bulkPayOut
▸ bulkPayOut(escrowAddress
, recipients
, amounts
, finalResultsUrl
, finalResultsHash
, txOptions?
): Promise
<void
>
This function pays out the amounts specified to the workers and sets the URL of the final results file.
Parameters
Name | Type | Description |
---|---|---|
|
| Escrow address to payout. |
|
| Array of recipient addresses. |
|
| Array of amounts the recipients will receive. |
|
| Final results file url. |
|
| Final results file hash. |
|
| 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.
Defined in
cancel
▸ cancel(escrowAddress
, txOptions?
): Promise
<EscrowCancel
>
This function cancels the specified escrow and sends the balance to the canceler.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow to cancel. |
|
| 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.
Defined in
complete
▸ complete(escrowAddress
, txOptions?
): Promise
<void
>
This function sets the status of an escrow to completed.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
|
| 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.
Defined in
createAndSetupEscrow
▸ createAndSetupEscrow(tokenAddress
, trustedHandlers
, jobRequesterId
, escrowConfig
): Promise
<string
>
This function creates and sets up an escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Token address to use for pay outs. |
|
| Array of addresses that can perform actions on the contract. |
|
| Job Requester Id |
|
| Configuration object with escrow settings. |
Returns
Promise
<string
>
Returns the address of the escrow created.
Code example
Defined in
createEscrow
▸ createEscrow(tokenAddress
, trustedHandlers
, jobRequesterId
, txOptions?
): Promise
<string
>
This function creates an escrow contract that uses the token passed to pay oracle fees and reward workers.
Parameters
Name | Type | Description |
---|---|---|
|
| Token address to use for pay outs. |
|
| Array of addresses that can perform actions on the contract. |
|
| Job Requester Id |
|
| Additional transaction parameters (optional, defaults to an empty object). |
Returns
Promise
<string
>
Return the address of the escrow created.
Code example
Need to have available stake.
Defined in
fund
▸ fund(escrowAddress
, amount
, txOptions?
): Promise
<void
>
This function adds funds of the chosen token to the escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow to fund. |
|
| Amount to be added as funds. |
|
| Additional transaction parameters (optional, defaults to an empty object). |
Returns
Promise
<void
>
Returns void if successful. Throws error if any.
Code example
Defined in
getBalance
▸ getBalance(escrowAddress
): Promise
<BigNumber
>
This function returns the balance for a specified escrow address.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<BigNumber
>
Balance of the escrow in the token used to fund it.
Code example
Defined in
getEscrowContract
▸ getEscrowContract(escrowAddress
): Escrow
Connects to the escrow contract
Parameters
Name | Type | Description |
---|---|---|
|
| Escrow address to connect to |
Returns
Escrow
Defined in
getExchangeOracleAddress
▸ getExchangeOracleAddress(escrowAddress
): Promise
<string
>
This function returns the exchange oracle address for a given escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the Exchange Oracle.
Code example
Defined in
getFactoryAddress
▸ getFactoryAddress(escrowAddress
): Promise
<string
>
This function returns the escrow factory address for a given escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the escrow factory.
Code example
Defined in
getIntermediateResultsUrl
▸ getIntermediateResultsUrl(escrowAddress
): Promise
<string
>
This function returns the intermediate results file URL.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Url of the file that store results from Recording Oracle.
Code example
Defined in
getJobLauncherAddress
▸ getJobLauncherAddress(escrowAddress
): Promise
<string
>
This function returns the job launcher address for a given escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the Job Launcher.
Code example
Defined in
getManifestHash
▸ getManifestHash(escrowAddress
): Promise
<string
>
This function returns the manifest file hash.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Hash of the manifest file content.
Code example
Defined in
getManifestUrl
▸ getManifestUrl(escrowAddress
): Promise
<string
>
This function returns the manifest file URL.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Url of the manifest.
Code example
Defined in
getRecordingOracleAddress
▸ getRecordingOracleAddress(escrowAddress
): Promise
<string
>
This function returns the recording oracle address for a given escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the Recording Oracle.
Code example
Defined in
getReputationOracleAddress
▸ getReputationOracleAddress(escrowAddress
): Promise
<string
>
This function returns the reputation oracle address for a given escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the Reputation Oracle.
Code example
Defined in
getResultsUrl
▸ getResultsUrl(escrowAddress
): Promise
<string
>
This function returns the results file URL.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Results file url.
Code example
Defined in
getStatus
▸ getStatus(escrowAddress
): Promise
<EscrowStatus
>
This function returns the current status of the escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<EscrowStatus
>
Current status of the escrow.
Code example
Defined in
getTokenAddress
▸ getTokenAddress(escrowAddress
): Promise
<string
>
This function returns the token address used for funding the escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
Returns
Promise
<string
>
Address of the token used to fund the escrow.
Code example
Defined in
setup
▸ setup(escrowAddress
, escrowConfig
, txOptions?
): Promise
<void
>
This function sets up the parameters of the escrow.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow to set up. |
|
| Escrow configuration parameters. |
|
| 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.
Defined in
storeResults
▸ storeResults(escrowAddress
, url
, hash
, txOptions?
): Promise
<void
>
This function stores the results url and hash.
Parameters
Name | Type | Description |
---|---|---|
|
| Address of the escrow. |
|
| Results file url. |
|
| Results file hash. |
|
| 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.
Defined in
build
▸ build(signerOrProvider
): Promise
<EscrowClient
>
Creates an instance of EscrowClient from a Signer or Provider.
Parameters
Name | Type | Description |
---|---|---|
|
| The Signer or Provider 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
Defined in
Last updated