From 1625590898c3666dc60fcae597cb764a94037899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20L=C3=B3pez?= Date: Wed, 1 Oct 2025 16:11:10 +0200 Subject: [PATCH 1/4] Updated Escrow contract to include finalResultsHash and additional parameters for oracle fees. Enhanced Escrow data in Python and Typescript SDK to support final results hash and oracle fees. Updated Subgraph for adding oracle fees and final results hash --- packages/core/contracts/Escrow.sol | 22 ++-- packages/core/test/Escrow.ts | 96 +++++++++------ .../human_protocol_sdk/escrow/escrow_utils.py | 51 ++++++++ .../escrow/test_escrow_utils.py | 93 ++++++++++++++ .../src/graphql/queries/escrow.ts | 5 + .../human-protocol-sdk/src/graphql/types.ts | 5 + .../human-protocol-sdk/src/interfaces.ts | 5 + .../human-protocol-sdk/test/escrow.test.ts | 30 +++++ .../sdk/typescript/subgraph/schema.graphql | 10 ++ .../subgraph/src/mapping/EscrowTemplate.ts | 41 ++++++- .../subgraph/src/mapping/legacy/Escrow.ts | 2 + .../sdk/typescript/subgraph/template.yaml | 2 +- .../subgraph/tests/escrow/escrow.test.ts | 114 ++++++++++++++++-- .../subgraph/tests/escrow/fixtures.ts | 6 + 14 files changed, 415 insertions(+), 67 deletions(-) diff --git a/packages/core/contracts/Escrow.sol b/packages/core/contracts/Escrow.sol index eeb21da0c7..095b3e8ace 100644 --- a/packages/core/contracts/Escrow.sol +++ b/packages/core/contracts/Escrow.sol @@ -46,7 +46,8 @@ contract Escrow is IEscrow, ReentrancyGuard { address[] recipients, uint256[] amounts, bool isPartial, - string finalResultsUrl + string finalResultsUrl, + string finalResultsHash ); event Cancelled(); event Completed(); @@ -380,9 +381,8 @@ contract Escrow is IEscrow, ReentrancyGuard { uint256 totalBulkAmount; for (uint256 i; i < _recipients.length; ) { - uint256 amount = _amounts[i]; - require(amount > 0, 'Zero amount'); - totalBulkAmount += amount; + require(_amounts[i] > 0, 'Zero amount'); + totalBulkAmount += _amounts[i]; unchecked { ++i; } @@ -399,20 +399,19 @@ contract Escrow is IEscrow, ReentrancyGuard { IERC20 erc20 = IERC20(token); for (uint256 i; i < _recipients.length; ) { - uint256 amount = _amounts[i]; uint256 reputationOracleFee = (reputationOracleFeePercentage * - amount) / 100; + _amounts[i]) / 100; uint256 recordingOracleFee = (recordingOracleFeePercentage * - amount) / 100; - uint256 exchangeOracleFee = (exchangeOracleFeePercentage * amount) / - 100; + _amounts[i]) / 100; + uint256 exchangeOracleFee = (exchangeOracleFeePercentage * + _amounts[i]) / 100; totalReputationOracleFee += reputationOracleFee; totalRecordingOracleFee += recordingOracleFee; totalExchangeOracleFee += exchangeOracleFee; netAmounts[i] = - amount - + _amounts[i] - reputationOracleFee - recordingOracleFee - exchangeOracleFee; @@ -454,7 +453,8 @@ contract Escrow is IEscrow, ReentrancyGuard { eventRecipients, netAmounts, isPartial, - _url + _url, + _hash ); if (!isPartial) { diff --git a/packages/core/test/Escrow.ts b/packages/core/test/Escrow.ts index bd7f2cae86..2ae8fbb40e 100644 --- a/packages/core/test/Escrow.ts +++ b/packages/core/test/Escrow.ts @@ -930,11 +930,13 @@ describe('Escrow', function () { ); await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(reputationOracle) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(reputationOracle) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -992,11 +994,13 @@ describe('Escrow', function () { await storeResults(FIXTURE_URL, FIXTURE_HASH, totalPayout); - await escrow - .connect(reputationOracle) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(reputationOracle) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1045,11 +1049,13 @@ describe('Escrow', function () { await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(reputationOracle) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', true); + await expect( + escrow + .connect(reputationOracle) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', true) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1104,11 +1110,13 @@ describe('Escrow', function () { await escrow.connect(launcher).requestCancellation(); await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(reputationOracle) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(reputationOracle) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1157,11 +1165,13 @@ describe('Escrow', function () { await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(admin) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(admin) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1219,11 +1229,13 @@ describe('Escrow', function () { await storeResults(FIXTURE_URL, FIXTURE_HASH, totalPayout); - await escrow - .connect(admin) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(admin) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1272,11 +1284,13 @@ describe('Escrow', function () { await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(admin) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', true); + await expect( + escrow + .connect(admin) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', true) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) @@ -1331,11 +1345,13 @@ describe('Escrow', function () { await escrow.connect(launcher).requestCancellation(); await storeResults(FIXTURE_URL, FIXTURE_HASH, totalAmount); - await escrow - .connect(admin) - [ - 'bulkPayOut(address[],uint256[],string,string,string,bool)' - ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false); + await expect( + escrow + .connect(admin) + [ + 'bulkPayOut(address[],uint256[],string,string,string,bool)' + ](recipients, amounts, FIXTURE_URL, FIXTURE_HASH, '000', false) + ).to.emit(escrow, 'BulkTransferV3'); const finalBalances = await Promise.all( recipients.map((r) => token.balanceOf(r)) diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_utils.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_utils.py index 41ba1377fa..18dc28bb98 100644 --- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_utils.py +++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_utils.py @@ -62,12 +62,17 @@ def __init__( total_funded_amount: int, created_at: datetime, final_results_url: Optional[str] = None, + final_results_hash: Optional[str] = None, intermediate_results_url: Optional[str] = None, + intermediate_results_hash: Optional[str] = None, manifest_hash: Optional[str] = None, manifest: Optional[str] = None, recording_oracle: Optional[str] = None, reputation_oracle: Optional[str] = None, exchange_oracle: Optional[str] = None, + recording_oracle_fee: Optional[int] = None, + reputation_oracle_fee: Optional[int] = None, + exchange_oracle_fee: Optional[int] = None, ): """ Initializes an EscrowData instance. @@ -85,12 +90,17 @@ def __init__( :param total_funded_amount: Total funded amount :param created_at: Creation date :param final_results_url: URL for final results. + :param final_results_hash: Hash for final results. :param intermediate_results_url: URL for intermediate results. + :param intermediate_results_hash: Hash for intermediate results. :param manifest_hash: Manifest hash. :param manifest: Manifest data (JSON/URL). :param recording_oracle: Recording Oracle address. :param reputation_oracle: Reputation Oracle address. :param exchange_oracle: Exchange Oracle address. + :param recording_oracle_fee: Fee for the Recording Oracle. + :param reputation_oracle_fee: Fee for the Reputation Oracle. + :param exchange_oracle_fee: Fee for the Exchange Oracle. """ self.id = id @@ -100,13 +110,18 @@ def __init__( self.count = count self.factory_address = factory_address self.final_results_url = final_results_url + self.final_results_hash = final_results_hash self.intermediate_results_url = intermediate_results_url + self.intermediate_results_hash = intermediate_results_hash self.launcher = launcher self.manifest_hash = manifest_hash self.manifest = manifest self.recording_oracle = recording_oracle self.reputation_oracle = reputation_oracle self.exchange_oracle = exchange_oracle + self.recording_oracle_fee = recording_oracle_fee + self.reputation_oracle_fee = reputation_oracle_fee + self.exchange_oracle_fee = exchange_oracle_fee self.status = status self.token = token self.total_funded_amount = total_funded_amount @@ -287,12 +302,31 @@ def get_escrows( total_funded_amount=int(escrow.get("totalFundedAmount", 0)), created_at=datetime.fromtimestamp(int(escrow.get("createdAt", 0))), final_results_url=escrow.get("finalResultsUrl", None), + final_results_hash=escrow.get("finalResultsHash", None), intermediate_results_url=escrow.get("intermediateResultsUrl", None), + intermediate_results_hash=escrow.get( + "intermediateResultsHash", None + ), manifest_hash=escrow.get("manifestHash", None), manifest=escrow.get("manifest", None), recording_oracle=escrow.get("recordingOracle", None), reputation_oracle=escrow.get("reputationOracle", None), exchange_oracle=escrow.get("exchangeOracle", None), + recording_oracle_fee=( + int(escrow.get("recordingOracleFee")) + if escrow.get("recordingOracleFee", None) not in (None, "") + else None + ), + reputation_oracle_fee=( + int(escrow.get("reputationOracleFee")) + if escrow.get("reputationOracleFee", None) not in (None, "") + else None + ), + exchange_oracle_fee=( + int(escrow.get("exchangeOracleFee")) + if escrow.get("exchangeOracleFee", None) not in (None, "") + else None + ), ) for escrow in escrows_raw ] @@ -369,12 +403,29 @@ def get_escrow( total_funded_amount=int(escrow.get("totalFundedAmount", 0)), created_at=datetime.fromtimestamp(int(escrow.get("createdAt", 0))), final_results_url=escrow.get("finalResultsUrl", None), + final_results_hash=escrow.get("finalResultsHash", None), intermediate_results_url=escrow.get("intermediateResultsUrl", None), + intermediate_results_hash=escrow.get("intermediateResultsHash", None), manifest_hash=escrow.get("manifestHash", None), manifest=escrow.get("manifest", None), recording_oracle=escrow.get("recordingOracle", None), reputation_oracle=escrow.get("reputationOracle", None), exchange_oracle=escrow.get("exchangeOracle", None), + recording_oracle_fee=( + int(escrow.get("recordingOracleFee")) + if escrow.get("recordingOracleFee", None) not in (None, "") + else None + ), + reputation_oracle_fee=( + int(escrow.get("reputationOracleFee")) + if escrow.get("reputationOracleFee", None) not in (None, "") + else None + ), + exchange_oracle_fee=( + int(escrow.get("exchangeOracleFee")) + if escrow.get("exchangeOracleFee", None) not in (None, "") + else None + ), ) @staticmethod diff --git a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_utils.py b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_utils.py index fae6c5f1b7..3f22ee0e4e 100644 --- a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_utils.py +++ b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_utils.py @@ -33,16 +33,22 @@ def test_get_escrows(self): "count": "1", "factoryAddress": "0x1234567890123456789012345678901234567890", "finalResultsUrl": "https://example.com", + "finalResultsHash": "0x1234567890123456789012345678901234567891", "intermediateResultsUrl": "https://example.com", + "intermediateResultsHash": "0x1234567890123456789012345678901234567891", "launcher": "0x1234567890123456789012345678901234567891", "manifestHash": "0x1234567890123456789012345678901234567891", "manifest": "https://example.com", "recordingOracle": "0x1234567890123456789012345678901234567891", "reputationOracle": "0x1234567890123456789012345678901234567891", "exchangeOracle": "0x1234567890123456789012345678901234567891", + "recordingOracleFee": "1000000000000000000", + "reputationOracleFee": "1000000000000000000", + "exchangeOracleFee": "1000000000000000000", "status": "Pending", "token": "0x1234567890123456789012345678901234567891", "totalFundedAmount": "1000000000000000000", + "createdAt": "1683811973", } def side_effect(subgraph_url, query, params): @@ -80,6 +86,53 @@ def side_effect(subgraph_url, query, params): ) self.assertEqual(len(filtered), 1) self.assertEqual(filtered[0].address, mock_escrow["address"]) + self.assertEqual(filtered[0].id, mock_escrow["id"]) + self.assertEqual(filtered[0].amount_paid, int(mock_escrow["amountPaid"])) + self.assertEqual(filtered[0].balance, int(mock_escrow["balance"])) + self.assertEqual(filtered[0].count, int(mock_escrow["count"])) + self.assertEqual(filtered[0].factory_address, mock_escrow["factoryAddress"]) + self.assertEqual( + filtered[0].final_results_url, mock_escrow["finalResultsUrl"] + ) + self.assertEqual( + filtered[0].final_results_hash, mock_escrow["finalResultsHash"] + ) + self.assertEqual( + filtered[0].intermediate_results_url, + mock_escrow["intermediateResultsUrl"], + ) + self.assertEqual( + filtered[0].intermediate_results_hash, + mock_escrow["intermediateResultsHash"], + ) + self.assertEqual(filtered[0].launcher, mock_escrow["launcher"]) + self.assertEqual(filtered[0].manifest_hash, mock_escrow["manifestHash"]) + self.assertEqual(filtered[0].manifest, mock_escrow["manifest"]) + self.assertEqual( + filtered[0].recording_oracle, mock_escrow["recordingOracle"] + ) + self.assertEqual( + filtered[0].reputation_oracle, mock_escrow["reputationOracle"] + ) + self.assertEqual(filtered[0].exchange_oracle, mock_escrow["exchangeOracle"]) + self.assertEqual( + filtered[0].recording_oracle_fee, int(mock_escrow["recordingOracleFee"]) + ) + self.assertEqual( + filtered[0].reputation_oracle_fee, + int(mock_escrow["reputationOracleFee"]), + ) + self.assertEqual( + filtered[0].exchange_oracle_fee, int(mock_escrow["exchangeOracleFee"]) + ) + self.assertEqual(filtered[0].status, mock_escrow["status"]) + self.assertEqual(filtered[0].token, mock_escrow["token"]) + self.assertEqual( + filtered[0].total_funded_amount, int(mock_escrow["totalFundedAmount"]) + ) + self.assertEqual( + int(filtered[0].created_at.timestamp()), int(mock_escrow["createdAt"]) + ) filter = EscrowFilter(chain_id=ChainId.POLYGON_AMOY) @@ -194,16 +247,22 @@ def test_get_escrow(self): "count": "1", "factoryAddress": "0x1234567890123456789012345678901234567890", "finalResultsUrl": "https://example.com", + "finalResultsHash": "0x1234567890123456789012345678901234567891", "intermediateResultsUrl": "https://example.com", + "intermediateResultsHash": "0x1234567890123456789012345678901234567891", "launcher": "0x1234567890123456789012345678901234567891", "manifestHash": "0x1234567890123456789012345678901234567891", "manifest": "https://example.com", "recordingOracle": "0x1234567890123456789012345678901234567891", "reputationOracle": "0x1234567890123456789012345678901234567891", "exchangeOracle": "0x1234567890123456789012345678901234567891", + "recordingOracleFee": "1000000000000000000", + "reputationOracleFee": "1000000000000000000", + "exchangeOracleFee": "1000000000000000000", "status": "Pending", "token": "0x1234567890123456789012345678901234567891", "totalFundedAmount": "1000000000000000000", + "createdAt": "1683813973", } mock_function.return_value = { @@ -227,6 +286,40 @@ def test_get_escrow(self): self.assertEqual(escrow.chain_id, ChainId.POLYGON_AMOY) self.assertEqual(escrow.address, mock_escrow["address"]) self.assertEqual(escrow.amount_paid, int(mock_escrow["amountPaid"])) + self.assertEqual(escrow.balance, int(mock_escrow["balance"])) + self.assertEqual(escrow.count, int(mock_escrow["count"])) + self.assertEqual(escrow.factory_address, mock_escrow["factoryAddress"]) + self.assertEqual(escrow.final_results_url, mock_escrow["finalResultsUrl"]) + self.assertEqual(escrow.final_results_hash, mock_escrow["finalResultsHash"]) + self.assertEqual( + escrow.intermediate_results_url, mock_escrow["intermediateResultsUrl"] + ) + self.assertEqual( + escrow.intermediate_results_hash, mock_escrow["intermediateResultsHash"] + ) + self.assertEqual(escrow.launcher, mock_escrow["launcher"]) + self.assertEqual(escrow.manifest_hash, mock_escrow["manifestHash"]) + self.assertEqual(escrow.manifest, mock_escrow["manifest"]) + self.assertEqual(escrow.recording_oracle, mock_escrow["recordingOracle"]) + self.assertEqual(escrow.reputation_oracle, mock_escrow["reputationOracle"]) + self.assertEqual(escrow.exchange_oracle, mock_escrow["exchangeOracle"]) + self.assertEqual( + escrow.recording_oracle_fee, int(mock_escrow["recordingOracleFee"]) + ) + self.assertEqual( + escrow.reputation_oracle_fee, int(mock_escrow["reputationOracleFee"]) + ) + self.assertEqual( + escrow.exchange_oracle_fee, int(mock_escrow["exchangeOracleFee"]) + ) + self.assertEqual(escrow.status, mock_escrow["status"]) + self.assertEqual(escrow.token, mock_escrow["token"]) + self.assertEqual( + escrow.total_funded_amount, int(mock_escrow["totalFundedAmount"]) + ) + self.assertEqual( + int(escrow.created_at.timestamp()), int(mock_escrow["createdAt"]) + ) def test_get_escrow_empty_data(self): with patch( diff --git a/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/escrow.ts b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/escrow.ts index 94707bca45..d173298396 100644 --- a/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/escrow.ts +++ b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/escrow.ts @@ -9,8 +9,10 @@ const ESCROW_FRAGMENT = gql` count factoryAddress finalResultsUrl + finalResultsHash id intermediateResultsUrl + intermediateResultsHash jobRequesterId launcher manifestHash @@ -18,6 +20,9 @@ const ESCROW_FRAGMENT = gql` recordingOracle reputationOracle exchangeOracle + recordingOracleFee + reputationOracleFee + exchangeOracleFee status token totalFundedAmount diff --git a/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts index 66ba242597..72d018be28 100644 --- a/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts +++ b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts @@ -8,13 +8,18 @@ export type EscrowData = { count: string; factoryAddress: string; finalResultsUrl?: string; + finalResultsHash?: string; intermediateResultsUrl?: string; + intermediateResultsHash?: string; launcher: string; manifestHash?: string; manifestUrl?: string; recordingOracle?: string; reputationOracle?: string; exchangeOracle?: string; + recordingOracleFee?: string; + reputationOracleFee?: string; + exchangeOracleFee?: string; status: string; token: string; totalFundedAmount: string; diff --git a/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts index 77ef961231..bc585f0f94 100644 --- a/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts +++ b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts @@ -82,13 +82,18 @@ export interface IEscrow { count: string; factoryAddress: string; finalResultsUrl?: string; + finalResultsHash?: string; intermediateResultsUrl?: string; + intermediateResultsHash?: string; launcher: string; manifestHash?: string; manifest?: string; recordingOracle?: string; reputationOracle?: string; exchangeOracle?: string; + recordingOracleFee?: string; + reputationOracleFee?: string; + exchangeOracleFee?: string; status: string; token: string; totalFundedAmount: string; diff --git a/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts b/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts index d64956b52d..7a0d9ef643 100644 --- a/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts +++ b/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts @@ -3039,6 +3039,16 @@ describe('EscrowUtils', () => { status: 'Completed', token: '0x0', totalFundedAmount: '3', + intermediateResultsUrl: 'http://test.com', + intermediateResultsHash: 'QmTestHash', + finalResultsUrl: 'http://test.com', + finalResultsHash: 'QmTestHash', + exchangeOracle: '0x0', + recordingOracle: '0x0', + reputationOracle: '0x0', + exchangeOracleFee: '1', + recordingOracleFee: '1', + reputationOracleFee: '1', }, { id: '2', @@ -3052,6 +3062,16 @@ describe('EscrowUtils', () => { status: 'Pending', token: '0x0', totalFundedAmount: '3', + intermediateResultsUrl: 'http://test.com', + intermediateResultsHash: 'QmTestHash', + finalResultsUrl: 'http://test.com', + finalResultsHash: 'QmTestHash', + exchangeOracle: '0x0', + recordingOracle: '0x0', + reputationOracle: '0x0', + exchangeOracleFee: '1', + recordingOracleFee: '1', + reputationOracleFee: '1', }, ]; const gqlFetchSpy = vi @@ -3118,6 +3138,16 @@ describe('EscrowUtils', () => { status: 'Completed', token: '0x0', totalFundedAmount: '3', + intermediateResultsUrl: 'http://test.com', + intermediateResultsHash: 'QmTestHash', + finalResultsUrl: 'http://test.com', + finalResultsHash: 'QmTestHash', + exchangeOracle: '0x0', + recordingOracle: '0x0', + reputationOracle: '0x0', + exchangeOracleFee: '1', + recordingOracleFee: '1', + reputationOracleFee: '1', }; const gqlFetchSpy = vi .spyOn(gqlFetch, 'default') diff --git a/packages/sdk/typescript/subgraph/schema.graphql b/packages/sdk/typescript/subgraph/schema.graphql index 40da8bdaa7..e4d122605c 100644 --- a/packages/sdk/typescript/subgraph/schema.graphql +++ b/packages/sdk/typescript/subgraph/schema.graphql @@ -81,8 +81,13 @@ type Escrow @entity(immutable: false) { reputationOracle: Bytes # address recordingOracle: Bytes # address exchangeOracle: Bytes # address + reputationOracleFee: BigInt + recordingOracleFee: BigInt + exchangeOracleFee: BigInt intermediateResultsUrl: String # string + intermediateResultsHash: String # string finalResultsUrl: String # string + finalResultsHash: String # string jobRequesterId: String # string createdAt: BigInt! } @@ -180,6 +185,7 @@ type StoreResultsEvent @entity(immutable: true) { escrowAddress: Bytes! # address sender: Bytes! # address intermediateResultsUrl: String! # string + intermediateResultsHash: String! # string } type BulkPayoutEvent @entity(immutable: true) { @@ -358,6 +364,10 @@ type EventDayData @entity(immutable: false) { dailyUniqueReceivers: BigInt! } +################################################## +# Transactions # +################################################## + type Transaction @entity(immutable: false) { id: Bytes! block: BigInt! diff --git a/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts b/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts index f1fe235bcd..7c2b5c24e1 100644 --- a/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts +++ b/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts @@ -27,6 +27,7 @@ import { DailyWorker, InternalTransaction, WithdrawEvent, + Operator, } from '../../generated/schema'; import { Address, @@ -153,14 +154,26 @@ function updateEscrowEntityForPending( // Update oracles if provided if (reputationOracle) { escrowEntity.reputationOracle = reputationOracle; + const reputationOracleEntity = Operator.load(reputationOracle); + if (reputationOracleEntity) { + escrowEntity.reputationOracleFee = reputationOracleEntity.fee; + } } if (recordingOracle) { escrowEntity.recordingOracle = recordingOracle; + const recordingOracleEntity = Operator.load(recordingOracle); + if (recordingOracleEntity) { + escrowEntity.recordingOracleFee = recordingOracleEntity.fee; + } } if (exchangeOracle) { escrowEntity.exchangeOracle = exchangeOracle; + const exchangeOracleEntity = Operator.load(exchangeOracle); + if (exchangeOracleEntity) { + escrowEntity.exchangeOracleFee = exchangeOracleEntity.fee; + } } escrowEntity.save(); @@ -280,6 +293,7 @@ export function handleIntermediateStorage(event: IntermediateStorage): void { eventEntity.escrowAddress = event.address; eventEntity.sender = event.transaction.from; eventEntity.intermediateResultsUrl = event.params.url; + eventEntity.intermediateResultsHash = event.params.hash; eventEntity.save(); // Updates escrow statistics @@ -301,6 +315,7 @@ export function handleIntermediateStorage(event: IntermediateStorage): void { const escrowEntity = Escrow.load(dataSource.address()); if (escrowEntity) { escrowEntity.intermediateResultsUrl = event.params.url; + escrowEntity.intermediateResultsHash = event.params.hash; escrowEntity.save(); createTransaction( event, @@ -398,7 +413,8 @@ function createAndSaveStatusEventForBulkTransfer( function updateEscrowEntityForBulkTransfer( escrowEntity: Escrow, isPartial: boolean, - finalResultsUrl: string | null + finalResultsUrl: string | null, + finalResultsHash: string | null ): void { escrowEntity.status = isPartial ? 'Partial' : 'Paid'; @@ -406,6 +422,10 @@ function updateEscrowEntityForBulkTransfer( escrowEntity.finalResultsUrl = finalResultsUrl; } + if (finalResultsHash) { + escrowEntity.finalResultsHash = finalResultsHash; + } + escrowEntity.save(); } @@ -433,7 +453,8 @@ export function handleBulkTransfer(event: BulkTransfer): void { updateEscrowEntityForBulkTransfer( escrowEntity, event.params.isPartial, - !finalResultsUrl.reverted ? finalResultsUrl.value : null + !finalResultsUrl.reverted ? finalResultsUrl.value : null, + null ); // Create and save EscrowStatusEvent entity @@ -460,7 +481,8 @@ function handleBulkTransferCommon( recipients: Address[], amounts: BigInt[], isPartial: boolean, - finalResultsUrl: string + finalResultsUrl: string, + finalResultsHash: string | null ): void { // Create BulkPayoutEvent entity createBulkPayoutEvent(event, payoutId, recipients.length); @@ -544,7 +566,12 @@ function handleBulkTransferCommon( } // Assign finalResultsUrl directly from the event - updateEscrowEntityForBulkTransfer(escrowEntity, isPartial, finalResultsUrl); + updateEscrowEntityForBulkTransfer( + escrowEntity, + isPartial, + finalResultsUrl, + finalResultsHash + ); // Create and save EscrowStatusEvent entity createAndSaveStatusEventForBulkTransfer( @@ -562,7 +589,8 @@ export function handleBulkTransferV2(event: BulkTransferV2): void { event.params.recipients, event.params.amounts, event.params.isPartial, - event.params.finalResultsUrl + event.params.finalResultsUrl, + null ); } @@ -573,7 +601,8 @@ export function handleBulkTransferV3(event: BulkTransferV3): void { event.params.recipients, event.params.amounts, event.params.isPartial, - event.params.finalResultsUrl + event.params.finalResultsUrl, + event.params.finalResultsHash ); } diff --git a/packages/sdk/typescript/subgraph/src/mapping/legacy/Escrow.ts b/packages/sdk/typescript/subgraph/src/mapping/legacy/Escrow.ts index c28fc037df..7e39c4ae6a 100644 --- a/packages/sdk/typescript/subgraph/src/mapping/legacy/Escrow.ts +++ b/packages/sdk/typescript/subgraph/src/mapping/legacy/Escrow.ts @@ -96,6 +96,7 @@ export function handleIntermediateStorage(event: IntermediateStorage): void { eventEntity.escrowAddress = event.address; eventEntity.sender = event.transaction.from; eventEntity.intermediateResultsUrl = event.params._url; + eventEntity.intermediateResultsHash = event.params._hash; eventEntity.save(); // Updates escrow statistics @@ -117,6 +118,7 @@ export function handleIntermediateStorage(event: IntermediateStorage): void { const escrowEntity = Escrow.load(dataSource.address()); if (escrowEntity) { escrowEntity.intermediateResultsUrl = event.params._url; + escrowEntity.intermediateResultsHash = event.params._hash; escrowEntity.save(); createTransaction( diff --git a/packages/sdk/typescript/subgraph/template.yaml b/packages/sdk/typescript/subgraph/template.yaml index bb0e10a8c8..5fb758cd8b 100644 --- a/packages/sdk/typescript/subgraph/template.yaml +++ b/packages/sdk/typescript/subgraph/template.yaml @@ -198,7 +198,7 @@ templates: handler: handleBulkTransfer - event: BulkTransferV2(indexed uint256,address[],uint256[],bool,string) handler: handleBulkTransferV2 - - event: BulkTransferV3(indexed bytes32,address[],uint256[],bool,string) + - event: BulkTransferV3(indexed bytes32,address[],uint256[],bool,string,string) handler: handleBulkTransferV3 - event: CancellationRequested() handler: handleCancellationRequested diff --git a/packages/sdk/typescript/subgraph/tests/escrow/escrow.test.ts b/packages/sdk/typescript/subgraph/tests/escrow/escrow.test.ts index 5fe194641f..b59bd85249 100644 --- a/packages/sdk/typescript/subgraph/tests/escrow/escrow.test.ts +++ b/packages/sdk/typescript/subgraph/tests/escrow/escrow.test.ts @@ -1,9 +1,11 @@ +/* eslint-disable @typescript-eslint/no-non-null-assertion */ import { Address, BigInt, Bytes, DataSourceContext, ethereum, + store, } from '@graphprotocol/graph-ts'; import { afterAll, @@ -16,7 +18,7 @@ import { describe, test, } from 'matchstick-as/assembly'; -import { Escrow } from '../../generated/schema'; +import { Escrow, Operator } from '../../generated/schema'; import { STATISTICS_ENTITY_ID, handleBulkTransfer, @@ -111,6 +113,24 @@ describe('Escrow', () => { escrow.createdAt = ZERO_BI; escrow.save(); + + const reputationOperator = new Operator(reputationOracleAddress); + reputationOperator.address = reputationOracleAddress; + reputationOperator.amountJobsProcessed = ZERO_BI; + reputationOperator.fee = BigInt.fromI32(11); + reputationOperator.save(); + + const recordingOperator = new Operator(recordingOracleAddress); + recordingOperator.address = recordingOracleAddress; + recordingOperator.amountJobsProcessed = ZERO_BI; + recordingOperator.fee = BigInt.fromI32(22); + recordingOperator.save(); + + const exchangeOperator = new Operator(exchangeOracleAddress); + exchangeOperator.address = exchangeOracleAddress; + exchangeOperator.amountJobsProcessed = ZERO_BI; + exchangeOperator.fee = BigInt.fromI32(33); + exchangeOperator.save(); }); afterAll(() => { @@ -220,6 +240,22 @@ describe('Escrow', () => { 'recordingOracle', recordingOracleAddressString ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'reputationOracleFee', + '11' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'recordingOracleFee', + '22' + ); + const escrowRaw = store.get('Escrow', escrowAddress.toHex()); + assert.assertTrue(escrowRaw != null); + assert.assertTrue(escrowRaw!.get('exchangeOracleFee') == null); + assert.fieldEquals( 'Transaction', newPending1.transaction.hash.toHex(), @@ -349,13 +385,27 @@ describe('Escrow', () => { 'reputationOracle', reputationOracleAddressString ); - assert.fieldEquals( 'Escrow', escrowAddress.toHex(), 'recordingOracle', recordingOracleAddressString ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'reputationOracleFee', + '11' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'recordingOracleFee', + '22' + ); + const escrowRaw = store.get('Escrow', escrowAddress.toHex()); + assert.assertTrue(escrowRaw != null); + assert.assertTrue(escrowRaw!.get('exchangeOracleFee') == null); assert.fieldEquals( 'Transaction', @@ -513,6 +563,25 @@ describe('Escrow', () => { 'exchangeOracle', exchangeOracleAddressString ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'reputationOracleFee', + '11' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'recordingOracleFee', + '22' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'exchangeOracleFee', + '33' + ); + assert.fieldEquals( 'Transaction', newPending1.transaction.hash.toHex(), @@ -711,13 +780,30 @@ describe('Escrow', () => { 'reputationOracle', reputationOracleAddressString ); - assert.fieldEquals( 'Escrow', escrowAddress.toHex(), 'recordingOracle', recordingOracleAddressString ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'reputationOracleFee', + '11' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'recordingOracleFee', + '22' + ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'exchangeOracleFee', + '33' + ); assert.fieldEquals( 'Transaction', @@ -775,12 +861,8 @@ describe('Escrow', () => { test('should properly handle IntermediateStorage event', () => { const URL = 'test.com'; - const newIS = createISEvent( - workerAddress, - URL, - 'is_hash_1', - BigInt.fromI32(6) - ); + const HASH = 'is_hash_1'; + const newIS = createISEvent(workerAddress, URL, HASH, BigInt.fromI32(6)); handleIntermediateStorage(newIS); const id = toEventId(newIS).toHex(); @@ -812,6 +894,13 @@ describe('Escrow', () => { ); assert.fieldEquals('StoreResultsEvent', id, 'sender', workerAddressString); assert.fieldEquals('StoreResultsEvent', id, 'intermediateResultsUrl', URL); + assert.fieldEquals( + 'StoreResultsEvent', + id, + 'intermediateResultsHash', + HASH + ); + assert.fieldEquals( 'Transaction', newIS.transaction.hash.toHex(), @@ -1229,6 +1318,7 @@ describe('Escrow', () => { [49, 49], false, 'test.com', + 'test-hash', BigInt.fromI32(9) ); @@ -1317,6 +1407,12 @@ describe('Escrow', () => { 'finalResultsUrl', 'test.com' ); + assert.fieldEquals( + 'Escrow', + escrowAddress.toHex(), + 'finalResultsHash', + 'test-hash' + ); assert.fieldEquals('Escrow', escrowAddress.toHex(), 'balance', '0'); assert.fieldEquals( diff --git a/packages/sdk/typescript/subgraph/tests/escrow/fixtures.ts b/packages/sdk/typescript/subgraph/tests/escrow/fixtures.ts index 75647f8944..77d0b2020f 100644 --- a/packages/sdk/typescript/subgraph/tests/escrow/fixtures.ts +++ b/packages/sdk/typescript/subgraph/tests/escrow/fixtures.ts @@ -234,6 +234,7 @@ export function createBulkTransferV3Event( amounts: i32[], isPartial: boolean, finalResultsUrl: string, + finalResultsHash: string, timestamp: BigInt ): BulkTransferV3 { const newBTEvent = changetype(newMockEvent()); @@ -268,12 +269,17 @@ export function createBulkTransferV3Event( 'finalResultsUrl', ethereum.Value.fromString(finalResultsUrl) ); + const finalResultsHashParam = new ethereum.EventParam( + 'finalResultsHash', + ethereum.Value.fromString(finalResultsHash) + ); newBTEvent.parameters.push(payoutIdParam); newBTEvent.parameters.push(recipientsParam); newBTEvent.parameters.push(amountsParam); newBTEvent.parameters.push(isPartialParam); newBTEvent.parameters.push(finalResultsUrlParam); + newBTEvent.parameters.push(finalResultsHashParam); return newBTEvent; } From 1bd56d89a93c09a4ec905eda511a395415025917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20L=C3=B3pez?= Date: Thu, 2 Oct 2025 11:40:18 +0200 Subject: [PATCH 2/4] Add missing escrow fields to Python SDK --- .../sdk/python/human-protocol-sdk/example.py | 37 +++++++++---------- .../human_protocol_sdk/gql/escrow.py | 7 +++- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/packages/sdk/python/human-protocol-sdk/example.py b/packages/sdk/python/human-protocol-sdk/example.py index ddc2c65264..522f25ee9c 100644 --- a/packages/sdk/python/human-protocol-sdk/example.py +++ b/packages/sdk/python/human-protocol-sdk/example.py @@ -158,10 +158,7 @@ def get_escrows(): print( EscrowUtils.get_escrows( EscrowFilter( - chain_id=ChainId.POLYGON_AMOY, - status=Status.Pending, - date_from=datetime.datetime(2023, 5, 8), - date_to=datetime.datetime(2023, 6, 8), + chain_id=ChainId.LOCALHOST, ) ) ) @@ -169,7 +166,7 @@ def get_escrows(): print( ( EscrowUtils.get_escrow( - ChainId.POLYGON_AMOY, "0xf9ec66feeafb850d85b88142a7305f55e0532959" + ChainId.LOCALHOST, "0xf9ec66feeafb850d85b88142a7305f55e0532959" ) ) ) @@ -249,18 +246,18 @@ def get_stakers_example(): # Run single example while testing, and remove comments before commit get_escrows() - get_operators() - get_payouts() - get_cancellation_refunds() - - statistics_client = StatisticsClient(ChainId.POLYGON_AMOY) - get_hmt_holders(statistics_client) - get_escrow_statistics(statistics_client) - get_hmt_statistics(statistics_client) - get_payment_statistics(statistics_client) - get_worker_statistics(statistics_client) - get_hmt_daily_data(statistics_client) - - agreement_example() - get_workers() - get_stakers_example() + # get_operators() + # get_payouts() + # get_cancellation_refunds() + + # statistics_client = StatisticsClient(ChainId.POLYGON_AMOY) + # get_hmt_holders(statistics_client) + # get_escrow_statistics(statistics_client) + # get_hmt_statistics(statistics_client) + # get_payment_statistics(statistics_client) + # get_worker_statistics(statistics_client) + # get_hmt_daily_data(statistics_client) + + # agreement_example() + # get_workers() + # get_stakers_example() diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py index 5fdff656d8..38a0ca8919 100644 --- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py +++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py @@ -9,8 +9,10 @@ count factoryAddress finalResultsUrl + finalResultsHash id - intermediateResultsUrl + intermediateResultsUrl + intermediateResultsHash launcher jobRequesterId manifestHash @@ -18,6 +20,9 @@ recordingOracle reputationOracle exchangeOracle + recordingOracleFee + reputationOracleFee + exchangeOracleFee status token totalFundedAmount From 8551ddf36370251a82fddadc0d28c34592acebaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20L=C3=B3pez?= Date: Thu, 2 Oct 2025 12:55:49 +0200 Subject: [PATCH 3/4] Refactor bulk payout logic to use Fees struct and reduce the amount of variables in stack --- packages/core/contracts/Escrow.sol | 94 ++++++++++++++++++------------ 1 file changed, 58 insertions(+), 36 deletions(-) diff --git a/packages/core/contracts/Escrow.sol b/packages/core/contracts/Escrow.sol index 095b3e8ace..9d4872076a 100644 --- a/packages/core/contracts/Escrow.sol +++ b/packages/core/contracts/Escrow.sol @@ -8,6 +8,12 @@ import '@openzeppelin/contracts/utils/ReentrancyGuard.sol'; import './interfaces/IEscrow.sol'; +struct Fees { + uint256 reputation; + uint256 recording; + uint256 exchange; +} + /** * @title Escrow Contract * @dev This contract manages the lifecycle of an escrow, including funding, @@ -331,6 +337,20 @@ contract Escrow is IEscrow, ReentrancyGuard { } } + function _calculateTotalBulkAmount( + uint256[] calldata amounts + ) internal pure returns (uint256 total) { + uint256 len = amounts.length; + for (uint256 i; i < len; ) { + uint256 amount = amounts[i]; + require(amount > 0, 'Zero amount'); + total += amount; + unchecked { + ++i; + } + } + } + /** * @dev Bulk payout to multiple recipients. * @param _recipients Array of recipient addresses. @@ -379,64 +399,66 @@ contract Escrow is IEscrow, ReentrancyGuard { 'Empty url/hash' ); - uint256 totalBulkAmount; - for (uint256 i; i < _recipients.length; ) { - require(_amounts[i] > 0, 'Zero amount'); - totalBulkAmount += _amounts[i]; - unchecked { - ++i; - } - } + uint256 totalBulkAmount = _calculateTotalBulkAmount(_amounts); require(totalBulkAmount <= reservedFunds, 'Not enough funds'); - uint256 totalReputationOracleFee = 0; - uint256 totalRecordingOracleFee = 0; - uint256 totalExchangeOracleFee = 0; - uint256[] memory netAmounts = new uint256[](_recipients.length + 3); - address[] memory eventRecipients = new address[]( - _recipients.length + 3 - ); + uint256 length = _recipients.length; + uint256[] memory netAmounts = new uint256[](length + 3); + address[] memory eventRecipients = new address[](length + 3); + IERC20 erc20 = IERC20(token); + Fees memory fees; - for (uint256 i; i < _recipients.length; ) { + for (uint256 i; i < length; ) { + uint256 amount = _amounts[i]; uint256 reputationOracleFee = (reputationOracleFeePercentage * - _amounts[i]) / 100; + amount) / 100; uint256 recordingOracleFee = (recordingOracleFeePercentage * - _amounts[i]) / 100; - uint256 exchangeOracleFee = (exchangeOracleFeePercentage * - _amounts[i]) / 100; + amount) / 100; + uint256 exchangeOracleFee = (exchangeOracleFeePercentage * amount) / + 100; - totalReputationOracleFee += reputationOracleFee; - totalRecordingOracleFee += recordingOracleFee; - totalExchangeOracleFee += exchangeOracleFee; + fees.reputation += reputationOracleFee; + fees.recording += recordingOracleFee; + fees.exchange += exchangeOracleFee; - netAmounts[i] = - _amounts[i] - + uint256 net = amount - reputationOracleFee - recordingOracleFee - exchangeOracleFee; - eventRecipients[i] = _recipients[i]; + netAmounts[i] = net; + address to = _recipients[i]; + eventRecipients[i] = to; - erc20.safeTransfer(_recipients[i], netAmounts[i]); + erc20.safeTransfer(to, net); unchecked { ++i; } } if (reputationOracleFeePercentage > 0) { - erc20.safeTransfer(reputationOracle, totalReputationOracleFee); - eventRecipients[_recipients.length] = reputationOracle; - netAmounts[_recipients.length] = totalReputationOracleFee; + erc20.safeTransfer(reputationOracle, fees.reputation); + eventRecipients[length] = reputationOracle; + netAmounts[length] = fees.reputation; + unchecked { + ++length; + } } if (recordingOracleFeePercentage > 0) { - erc20.safeTransfer(recordingOracle, totalRecordingOracleFee); - eventRecipients[_recipients.length + 1] = recordingOracle; - netAmounts[_recipients.length + 1] = totalRecordingOracleFee; + erc20.safeTransfer(recordingOracle, fees.recording); + eventRecipients[length] = recordingOracle; + netAmounts[length] = fees.recording; + unchecked { + ++length; + } } if (exchangeOracleFeePercentage > 0) { - erc20.safeTransfer(exchangeOracle, totalExchangeOracleFee); - eventRecipients[_recipients.length + 2] = exchangeOracle; - netAmounts[_recipients.length + 2] = totalExchangeOracleFee; + erc20.safeTransfer(exchangeOracle, fees.exchange); + eventRecipients[length] = exchangeOracle; + netAmounts[length] = fees.exchange; + unchecked { + ++length; + } } remainingFunds -= totalBulkAmount; From 1cfdb8b63ec8e3943cdbbc2e9d59cd6535f7b0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20L=C3=B3pez?= Date: Thu, 2 Oct 2025 13:37:38 +0200 Subject: [PATCH 4/4] Regenerate docs --- .../human_protocol_sdk.escrow.escrow_utils.md | 9 +- .../base/classes/BaseEthersClient.md | 49 ++-- .../encryption/classes/Encryption.md | 36 +-- .../encryption/classes/EncryptionUtils.md | 36 +-- .../typescript/enums/enumerations/ChainId.md | 60 +---- .../enums/enumerations/OperatorCategory.md | 18 +- .../enums/enumerations/OrderDirection.md | 18 +- .../typescript/escrow/classes/EscrowClient.md | 221 ++++------------- .../typescript/escrow/classes/EscrowUtils.md | 34 +-- .../types/type-aliases/DailyEscrowData.md | 42 +--- .../types/type-aliases/DailyHMTData.md | 36 +-- .../types/type-aliases/DailyPaymentData.md | 30 +-- .../types/type-aliases/DailyTaskData.md | 24 +- .../types/type-aliases/DailyWorkerData.md | 18 +- .../graphql/types/type-aliases/EscrowData.md | 160 +++++-------- .../types/type-aliases/EscrowStatistics.md | 18 +- .../type-aliases/EscrowStatisticsData.md | 66 +---- .../types/type-aliases/EventDayData.md | 114 ++------- .../graphql/types/type-aliases/HMTHolder.md | 18 +- .../types/type-aliases/HMTHolderData.md | 18 +- .../types/type-aliases/HMTStatistics.md | 24 +- .../types/type-aliases/HMTStatisticsData.md | 42 +--- .../graphql/types/type-aliases/IMData.md | 6 +- .../types/type-aliases/IMDataEntity.md | 18 +- .../graphql/types/type-aliases/KVStoreData.md | 42 +--- .../types/type-aliases/PaymentStatistics.md | 12 +- .../type-aliases/RewardAddedEventData.md | 30 +-- .../graphql/types/type-aliases/StatusEvent.md | 30 +-- .../types/type-aliases/TaskStatistics.md | 12 +- .../types/type-aliases/WorkerStatistics.md | 12 +- .../interfaces/ICancellationRefundFilter.md | 18 +- .../interfaces/interfaces/IEscrow.md | 160 +++++-------- .../interfaces/interfaces/IEscrowConfig.md | 54 +---- .../interfaces/interfaces/IEscrowsFilter.md | 78 +----- .../interfaces/IHMTHoldersParams.md | 30 +-- .../interfaces/interfaces/IKVStore.md | 18 +- .../interfaces/interfaces/IKeyPair.md | 30 +-- .../interfaces/interfaces/IOperator.md | 156 ++---------- .../interfaces/IOperatorSubgraph.md | 225 ++---------------- .../interfaces/interfaces/IOperatorsFilter.md | 48 +--- .../interfaces/interfaces/IPagination.md | 24 +- .../interfaces/interfaces/IPayoutFilter.md | 54 +---- .../interfaces/IReputationNetwork.md | 24 +- .../interfaces/IReputationNetworkSubgraph.md | 24 +- .../interfaces/interfaces/IReward.md | 18 +- .../interfaces/interfaces/IStaker.md | 16 +- .../interfaces/interfaces/IStakersFilter.md | 28 +-- .../interfaces/IStatisticsFilter.md | 36 +-- .../interfaces/IStatusEventFilter.md | 54 +---- .../interfaces/interfaces/ITransaction.md | 72 +----- .../interfaces/ITransactionsFilter.md | 84 ++----- .../interfaces/interfaces/IWorker.md | 30 +-- .../interfaces/interfaces/IWorkersFilter.md | 42 +--- .../interfaces/InternalTransaction.md | 48 +--- .../interfaces/interfaces/StakerInfo.md | 30 +-- .../kvstore/classes/KVStoreClient.md | 79 +++--- .../kvstore/classes/KVStoreUtils.md | 30 +-- .../operator/classes/OperatorUtils.md | 30 +-- .../staking/classes/StakingClient.md | 113 ++++----- .../staking/classes/StakingUtils.md | 6 +- .../statistics/classes/StatisticsClient.md | 60 +---- .../storage/classes/StorageClient.md | 42 +--- .../transaction/classes/TransactionUtils.md | 18 +- .../types/enumerations/EscrowStatus.md | 44 +--- .../types/type-aliases/CancellationRefund.md | 16 +- .../types/type-aliases/EscrowWithdraw.md | 33 +-- .../types/type-aliases/NetworkData.md | 72 +----- .../typescript/types/type-aliases/Payout.md | 36 +-- .../types/type-aliases/StorageCredentials.md | 18 +- .../types/type-aliases/StorageParams.md | 30 +-- .../type-aliases/TransactionLikeWithNonce.md | 6 +- .../types/type-aliases/UploadFile.md | 24 +- .../sdk/python/human-protocol-sdk/example.py | 37 +-- 73 files changed, 725 insertions(+), 2623 deletions(-) diff --git a/docs/sdk/python/human_protocol_sdk.escrow.escrow_utils.md b/docs/sdk/python/human_protocol_sdk.escrow.escrow_utils.md index 3024fa3629..1017658626 100644 --- a/docs/sdk/python/human_protocol_sdk.escrow.escrow_utils.md +++ b/docs/sdk/python/human_protocol_sdk.escrow.escrow_utils.md @@ -39,11 +39,11 @@ Represents a cancellation refund event. #### \_\_init_\_(id, escrow_address, receiver, amount, block, timestamp, tx_hash) -### *class* human_protocol_sdk.escrow.escrow_utils.EscrowData(chain_id, id, address, amount_paid, balance, count, factory_address, launcher, status, token, total_funded_amount, created_at, final_results_url=None, intermediate_results_url=None, manifest_hash=None, manifest=None, recording_oracle=None, reputation_oracle=None, exchange_oracle=None) +### *class* human_protocol_sdk.escrow.escrow_utils.EscrowData(chain_id, id, address, amount_paid, balance, count, factory_address, launcher, status, token, total_funded_amount, created_at, final_results_url=None, final_results_hash=None, intermediate_results_url=None, intermediate_results_hash=None, manifest_hash=None, manifest=None, recording_oracle=None, reputation_oracle=None, exchange_oracle=None, recording_oracle_fee=None, reputation_oracle_fee=None, exchange_oracle_fee=None) Bases: `object` -#### \_\_init_\_(chain_id, id, address, amount_paid, balance, count, factory_address, launcher, status, token, total_funded_amount, created_at, final_results_url=None, intermediate_results_url=None, manifest_hash=None, manifest=None, recording_oracle=None, reputation_oracle=None, exchange_oracle=None) +#### \_\_init_\_(chain_id, id, address, amount_paid, balance, count, factory_address, launcher, status, token, total_funded_amount, created_at, final_results_url=None, final_results_hash=None, intermediate_results_url=None, intermediate_results_hash=None, manifest_hash=None, manifest=None, recording_oracle=None, reputation_oracle=None, exchange_oracle=None, recording_oracle_fee=None, reputation_oracle_fee=None, exchange_oracle_fee=None) Initializes an EscrowData instance. @@ -61,12 +61,17 @@ Initializes an EscrowData instance. * **total_funded_amount** (`int`) – Total funded amount * **created_at** (`datetime`) – Creation date * **final_results_url** (`Optional`[`str`]) – URL for final results. + * **final_results_hash** (`Optional`[`str`]) – Hash for final results. * **intermediate_results_url** (`Optional`[`str`]) – URL for intermediate results. + * **intermediate_results_hash** (`Optional`[`str`]) – Hash for intermediate results. * **manifest_hash** (`Optional`[`str`]) – Manifest hash. * **manifest** (`Optional`[`str`]) – Manifest data (JSON/URL). * **recording_oracle** (`Optional`[`str`]) – Recording Oracle address. * **reputation_oracle** (`Optional`[`str`]) – Reputation Oracle address. * **exchange_oracle** (`Optional`[`str`]) – Exchange Oracle address. + * **recording_oracle_fee** (`Optional`[`int`]) – Fee for the Recording Oracle. + * **reputation_oracle_fee** (`Optional`[`int`]) – Fee for the Reputation Oracle. + * **exchange_oracle_fee** (`Optional`[`int`]) – Fee for the Exchange Oracle. ### *class* human_protocol_sdk.escrow.escrow_utils.EscrowUtils diff --git a/docs/sdk/typescript/base/classes/BaseEthersClient.md b/docs/sdk/typescript/base/classes/BaseEthersClient.md index 5d2c1d28cf..3932c589df 100644 --- a/docs/sdk/typescript/base/classes/BaseEthersClient.md +++ b/docs/sdk/typescript/base/classes/BaseEthersClient.md @@ -6,11 +6,7 @@ # Abstract Class: BaseEthersClient -<<<<<<< HEAD -Defined in: [base.ts:10](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L10) -======= -Defined in: [base.ts:10](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L10) ->>>>>>> develop +Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) ## Introduction @@ -28,11 +24,7 @@ This class is used as a base class for other clients making on-chain calls. > **new BaseEthersClient**(`runner`, `networkData`): `BaseEthersClient` -<<<<<<< HEAD -Defined in: [base.ts:20](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20) -======= -Defined in: [base.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20) ->>>>>>> develop +Defined in: [base.ts:22](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L22) **BaseClient constructor** @@ -60,11 +52,7 @@ The network information required to connect to the contracts > **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md) -<<<<<<< HEAD -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) -======= -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) ->>>>>>> develop +Defined in: [base.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L14) *** @@ -72,8 +60,29 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c > `protected` **runner**: `ContractRunner` -<<<<<<< HEAD -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) -======= -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) ->>>>>>> develop +Defined in: [base.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L13) + +## Methods + +### applyTxDefaults() + +> `protected` **applyTxDefaults**(`txOptions`): `Overrides` + +Defined in: [base.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L35) + +Internal helper to enrich transaction overrides with network specific defaults. + +Aurora networks use a fixed gas price. We always override any user provided +gasPrice with the canonical DEFAULT_AURORA_GAS_PRICE to avoid mismatches +or tx failures due to an unexpected value. For other networks the user +supplied fee parameters are left untouched. + +#### Parameters + +##### txOptions + +`Overrides` = `{}` + +#### Returns + +`Overrides` diff --git a/docs/sdk/typescript/encryption/classes/Encryption.md b/docs/sdk/typescript/encryption/classes/Encryption.md index f6837e939a..a2e998d3c1 100644 --- a/docs/sdk/typescript/encryption/classes/Encryption.md +++ b/docs/sdk/typescript/encryption/classes/Encryption.md @@ -6,11 +6,7 @@ # Class: Encryption -<<<<<<< HEAD -Defined in: [encryption.ts:58](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L58) -======= -Defined in: [encryption.ts:58](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L58) ->>>>>>> develop +Defined in: [encryption.ts:58](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L58) ## Introduction @@ -57,11 +53,7 @@ const encryption = await Encryption.build(privateKey, passphrase); > **new Encryption**(`privateKey`): `Encryption` -<<<<<<< HEAD -Defined in: [encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66) -======= -Defined in: [encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66) ->>>>>>> develop +Defined in: [encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66) Constructor for the Encryption class. @@ -83,11 +75,7 @@ The private key. > **decrypt**(`message`, `publicKey?`): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\> -<<<<<<< HEAD -Defined in: [encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194) -======= -Defined in: [encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194) ->>>>>>> develop +Defined in: [encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194) This function decrypts messages using the private key. In addition, the public key can be added for signature verification. @@ -141,11 +129,7 @@ const resultMessage = await encryption.decrypt('message'); > **sign**(`message`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251) -======= -Defined in: [encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251) ->>>>>>> develop +Defined in: [encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251) This function signs a message using the private key used to initialize the client. @@ -181,11 +165,7 @@ const resultMessage = await encryption.sign('message'); > **signAndEncrypt**(`message`, `publicKeys`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142) -======= -Defined in: [encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142) ->>>>>>> develop +Defined in: [encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142) This function signs and encrypts a message using the private key used to initialize the client and the specified public keys. @@ -252,11 +232,7 @@ const resultMessage = await encryption.signAndEncrypt('message', publicKeys); > `static` **build**(`privateKeyArmored`, `passphrase?`): `Promise`\<`Encryption`\> -<<<<<<< HEAD -Defined in: [encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77) -======= -Defined in: [encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77) ->>>>>>> develop +Defined in: [encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77) Builds an Encryption instance by decrypting the private key from an encrypted private key and passphrase. diff --git a/docs/sdk/typescript/encryption/classes/EncryptionUtils.md b/docs/sdk/typescript/encryption/classes/EncryptionUtils.md index 616b7558a5..fd306151ed 100644 --- a/docs/sdk/typescript/encryption/classes/EncryptionUtils.md +++ b/docs/sdk/typescript/encryption/classes/EncryptionUtils.md @@ -6,11 +6,7 @@ # Class: EncryptionUtils -<<<<<<< HEAD -Defined in: [encryption.ts:290](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L290) -======= -Defined in: [encryption.ts:290](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L290) ->>>>>>> develop +Defined in: [encryption.ts:290](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L290) ## Introduction @@ -52,11 +48,7 @@ const keyPair = await EncryptionUtils.generateKeyPair('Human', 'human@hmt.ai'); > `static` **encrypt**(`message`, `publicKeys`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444) -======= -Defined in: [encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444) ->>>>>>> develop +Defined in: [encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444) This function encrypts a message using the specified public keys. @@ -119,11 +111,7 @@ const result = await EncryptionUtils.encrypt('message', publicKeys); > `static` **generateKeyPair**(`name`, `email`, `passphrase`): `Promise`\<[`IKeyPair`](../../interfaces/interfaces/IKeyPair.md)\> -<<<<<<< HEAD -Defined in: [encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382) -======= -Defined in: [encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382) ->>>>>>> develop +Defined in: [encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382) This function generates a key pair for encryption and decryption. @@ -170,11 +158,7 @@ const result = await EncryptionUtils.generateKeyPair(name, email, passphrase); > `static` **getSignedData**(`message`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351) -======= -Defined in: [encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351) ->>>>>>> develop +Defined in: [encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351) This function gets signed data from a signed message. @@ -206,11 +190,7 @@ const signedData = await EncryptionUtils.getSignedData('message'); > `static` **isEncrypted**(`message`): `boolean` -<<<<<<< HEAD -Defined in: [encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494) -======= -Defined in: [encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494) ->>>>>>> develop +Defined in: [encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494) Verifies if a message appears to be encrypted with OpenPGP. @@ -258,11 +238,7 @@ if (isEncrypted) { > `static` **verify**(`message`, `publicKey`): `Promise`\<`boolean`\> -<<<<<<< HEAD -Defined in: [encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318) -======= -Defined in: [encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318) ->>>>>>> develop +Defined in: [encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318) This function verifies the signature of a signed message using the public key. diff --git a/docs/sdk/typescript/enums/enumerations/ChainId.md b/docs/sdk/typescript/enums/enumerations/ChainId.md index cb700f7f50..a610632fb3 100644 --- a/docs/sdk/typescript/enums/enumerations/ChainId.md +++ b/docs/sdk/typescript/enums/enumerations/ChainId.md @@ -6,11 +6,7 @@ # Enumeration: ChainId -<<<<<<< HEAD -Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L1) -======= -Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L1) ->>>>>>> develop +Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L1) ## Enumeration Members @@ -18,11 +14,7 @@ Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/8c > **ALL**: `-1` -<<<<<<< HEAD -Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2) -======= -Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2) ->>>>>>> develop +Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2) *** @@ -30,11 +22,7 @@ Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/8c > **AURORA\_TESTNET**: `1313161555` -<<<<<<< HEAD -Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9) -======= -Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9) ->>>>>>> develop +Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9) *** @@ -42,11 +30,7 @@ Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/8c > **BSC\_MAINNET**: `56` -<<<<<<< HEAD -Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5) -======= -Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5) ->>>>>>> develop +Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5) *** @@ -54,11 +38,7 @@ Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/8c > **BSC\_TESTNET**: `97` -<<<<<<< HEAD -Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6) -======= -Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6) ->>>>>>> develop +Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6) *** @@ -66,11 +46,7 @@ Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/8c > **LOCALHOST**: `1338` -<<<<<<< HEAD -Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10) -======= -Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10) ->>>>>>> develop +Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10) *** @@ -78,11 +54,7 @@ Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/8 > **MAINNET**: `1` -<<<<<<< HEAD -Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3) -======= -Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3) ->>>>>>> develop +Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3) *** @@ -90,11 +62,7 @@ Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/8c > **POLYGON**: `137` -<<<<<<< HEAD -Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7) -======= -Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7) ->>>>>>> develop +Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7) *** @@ -102,11 +70,7 @@ Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/8c > **POLYGON\_AMOY**: `80002` -<<<<<<< HEAD -Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8) -======= -Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8) ->>>>>>> develop +Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8) *** @@ -114,8 +78,4 @@ Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/8c > **SEPOLIA**: `11155111` -<<<<<<< HEAD -Defined in: [enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4) -======= -Defined in: [enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4) ->>>>>>> develop +Defined in: [enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4) diff --git a/docs/sdk/typescript/enums/enumerations/OperatorCategory.md b/docs/sdk/typescript/enums/enumerations/OperatorCategory.md index 3f56cd7e96..a1acc6f7fe 100644 --- a/docs/sdk/typescript/enums/enumerations/OperatorCategory.md +++ b/docs/sdk/typescript/enums/enumerations/OperatorCategory.md @@ -6,11 +6,7 @@ # Enumeration: OperatorCategory -<<<<<<< HEAD -Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18) -======= -Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18) ->>>>>>> develop +Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18) ## Enumeration Members @@ -18,11 +14,7 @@ Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/8 > **MACHINE\_LEARNING**: `"machine_learning"` -<<<<<<< HEAD -Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19) -======= -Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19) ->>>>>>> develop +Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19) *** @@ -30,8 +22,4 @@ Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/8 > **MARKET\_MAKING**: `"market_making"` -<<<<<<< HEAD -Defined in: [enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20) -======= -Defined in: [enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20) ->>>>>>> develop +Defined in: [enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20) diff --git a/docs/sdk/typescript/enums/enumerations/OrderDirection.md b/docs/sdk/typescript/enums/enumerations/OrderDirection.md index 2cd8f31ebd..6d2de64119 100644 --- a/docs/sdk/typescript/enums/enumerations/OrderDirection.md +++ b/docs/sdk/typescript/enums/enumerations/OrderDirection.md @@ -6,11 +6,7 @@ # Enumeration: OrderDirection -<<<<<<< HEAD -Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13) -======= -Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13) ->>>>>>> develop +Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13) ## Enumeration Members @@ -18,11 +14,7 @@ Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/8 > **ASC**: `"asc"` -<<<<<<< HEAD -Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14) -======= -Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14) ->>>>>>> develop +Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14) *** @@ -30,8 +22,4 @@ Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/8 > **DESC**: `"desc"` -<<<<<<< HEAD -Defined in: [enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15) -======= -Defined in: [enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15) ->>>>>>> develop +Defined in: [enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15) diff --git a/docs/sdk/typescript/escrow/classes/EscrowClient.md b/docs/sdk/typescript/escrow/classes/EscrowClient.md index 3453fd40cd..c9e4fd350f 100644 --- a/docs/sdk/typescript/escrow/classes/EscrowClient.md +++ b/docs/sdk/typescript/escrow/classes/EscrowClient.md @@ -6,11 +6,7 @@ # Class: EscrowClient -<<<<<<< HEAD -Defined in: [escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147) -======= -Defined in: [escrow.ts:143](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L143) ->>>>>>> develop +Defined in: [escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147) ## Introduction @@ -90,11 +86,7 @@ const escrowClient = await EscrowClient.build(provider); > **new EscrowClient**(`runner`, `networkData`): `EscrowClient` -<<<<<<< HEAD -Defined in: [escrow.ts:156](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L156) -======= -Defined in: [escrow.ts:152](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L152) ->>>>>>> develop +Defined in: [escrow.ts:156](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L156) **EscrowClient constructor** @@ -126,11 +118,7 @@ The network information required to connect to the Escrow contract > **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md) -<<<<<<< HEAD -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) -======= -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) ->>>>>>> develop +Defined in: [base.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L14) #### Inherited from @@ -142,11 +130,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c > `protected` **runner**: `ContractRunner` -<<<<<<< HEAD -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) -======= -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) ->>>>>>> develop +Defined in: [base.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L13) #### Inherited from @@ -154,75 +138,42 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c ## Methods -<<<<<<< HEAD -======= -### addTrustedHandlers() +### applyTxDefaults() -> **addTrustedHandlers**(`escrowAddress`, `trustedHandlers`, `txOptions?`): `Promise`\<`void`\> +> `protected` **applyTxDefaults**(`txOptions`): `Overrides` -Defined in: [escrow.ts:777](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L777) +Defined in: [base.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L35) -This function adds an array of addresses to the trusted handlers list. +Internal helper to enrich transaction overrides with network specific defaults. -#### Parameters - -##### escrowAddress - -`string` +Aurora networks use a fixed gas price. We always override any user provided +gasPrice with the canonical DEFAULT_AURORA_GAS_PRICE to avoid mismatches +or tx failures due to an unexpected value. For other networks the user +supplied fee parameters are left untouched. -Address of the escrow. - -##### trustedHandlers - -`string`[] - -Array of addresses of trusted handlers to add. +#### Parameters -##### txOptions? +##### 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. - -```ts -import { Wallet, providers } from 'ethers'; -import { EscrowClient } from '@human-protocol/sdk'; - -const rpcUrl = 'YOUR_RPC_URL'; -const privateKey = 'YOUR_PRIVATE_KEY'; +`Overrides` -const provider = new providers.JsonRpcProvider(rpcUrl); -const signer = new Wallet(privateKey, provider); -const escrowClient = await EscrowClient.build(signer); +#### Inherited from -const trustedHandlers = ['0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266']; -await escrowClient.addTrustedHandlers('0x62dD51230A30401C455c8398d06F85e4EaB6309f', trustedHandlers); -``` +[`BaseEthersClient`](../../base/classes/BaseEthersClient.md).[`applyTxDefaults`](../../base/classes/BaseEthersClient.md#applytxdefaults) *** ->>>>>>> develop ### bulkPayOut() #### Call Signature > **bulkPayOut**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `txId`, `forceComplete`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [escrow.ts:671](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L671) -======= -Defined in: [escrow.ts:610](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L610) ->>>>>>> develop +Defined in: [escrow.ts:677](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L677) This function pays out the amounts specified to the workers and sets the URL of the final results file. @@ -310,7 +261,7 @@ await escrowClient.bulkPayOut('0x62dD51230A30401C455c8398d06F85e4EaB6309f', reci > **bulkPayOut**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `payoutId`, `forceComplete`, `txOptions?`): `Promise`\<`void`\> -Defined in: [escrow.ts:721](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L721) +Defined in: [escrow.ts:727](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L727) This function pays out the amounts specified to the workers and sets the URL of the final results file. @@ -401,11 +352,7 @@ await escrowClient.bulkPayOut('0x62dD51230A30401C455c8398d06F85e4EaB6309f', reci > **cancel**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [escrow.ts:820](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L820) -======= -Defined in: [escrow.ts:691](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L691) ->>>>>>> develop +Defined in: [escrow.ts:826](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L826) This function cancels the specified escrow and sends the balance to the canceler. @@ -451,11 +398,7 @@ await escrowClient.cancel('0x62dD51230A30401C455c8398d06F85e4EaB6309f'); > **complete**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [escrow.ts:611](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L611) -======= -Defined in: [escrow.ts:549](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L549) ->>>>>>> develop +Defined in: [escrow.ts:615](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L615) This function sets the status of an escrow to completed. @@ -503,11 +446,7 @@ await escrowClient.complete('0x62dD51230A30401C455c8398d06F85e4EaB6309f'); > **createBulkPayoutTransaction**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `payoutId`, `forceComplete`, `txOptions?`): `Promise`\<[`TransactionLikeWithNonce`](../../types/type-aliases/TransactionLikeWithNonce.md)\> -<<<<<<< HEAD -Defined in: [escrow.ts:1020](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1020) -======= -Defined in: [escrow.ts:946](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L946) ->>>>>>> develop +Defined in: [escrow.ts:1035](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1035) Creates a prepared transaction for bulk payout without immediately sending it. @@ -601,11 +540,7 @@ console.log('Tx hash:', ethers.keccak256(signedTransaction)); > **createEscrow**(`tokenAddress`, `jobRequesterId`, `txOptions?`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:234](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L234) -======= -Defined in: [escrow.ts:232](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L232) ->>>>>>> develop +Defined in: [escrow.ts:234](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L234) This function creates an escrow contract that uses the token passed to pay oracle fees and reward workers. @@ -661,11 +596,7 @@ const escrowAddress = await escrowClient.createEscrow(tokenAddress, jobRequester > **fund**(`escrowAddress`, `amount`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [escrow.ts:414](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L414) -======= -Defined in: [escrow.ts:420](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L420) ->>>>>>> develop +Defined in: [escrow.ts:414](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L414) This function adds funds of the chosen token to the escrow. @@ -718,11 +649,7 @@ await escrowClient.fund('0x62dD51230A30401C455c8398d06F85e4EaB6309f', amount); > **getBalance**(`escrowAddress`): `Promise`\<`bigint`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1165](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1165) -======= -Defined in: [escrow.ts:1091](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1091) ->>>>>>> develop +Defined in: [escrow.ts:1181](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1181) This function returns the balance for a specified escrow address. @@ -760,11 +687,7 @@ const balance = await escrowClient.getBalance('0x62dD51230A30401C455c8398d06F85e > **getExchangeOracleAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1626](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1626) -======= -Defined in: [escrow.ts:1477](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1477) ->>>>>>> develop +Defined in: [escrow.ts:1642](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1642) This function returns the exchange oracle address for a given escrow. @@ -802,11 +725,7 @@ const oracleAddress = await escrowClient.getExchangeOracleAddress('0x62dD51230A3 > **getFactoryAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1664](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1664) -======= -Defined in: [escrow.ts:1515](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1515) ->>>>>>> develop +Defined in: [escrow.ts:1680](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1680) This function returns the escrow factory address for a given escrow. @@ -844,7 +763,7 @@ const factoryAddress = await escrowClient.getFactoryAddress('0x62dD51230A30401C4 > **getIntermediateResultsHash**(`escrowAddress`): `Promise`\<`string`\> -Defined in: [escrow.ts:1398](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1398) +Defined in: [escrow.ts:1414](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1414) This function returns the intermediate results hash. @@ -882,11 +801,7 @@ const intermediateResultsHash = await escrowClient.getIntermediateResultsHash('0 > **getIntermediateResultsUrl**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1360](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1360) -======= -Defined in: [escrow.ts:1249](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1249) ->>>>>>> develop +Defined in: [escrow.ts:1376](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1376) This function returns the intermediate results file URL. @@ -924,11 +839,7 @@ const intermediateResultsUrl = await escrowClient.getIntermediateResultsUrl('0x6 > **getJobLauncherAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1550](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1550) -======= -Defined in: [escrow.ts:1401](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1401) ->>>>>>> develop +Defined in: [escrow.ts:1566](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1566) This function returns the job launcher address for a given escrow. @@ -966,11 +877,7 @@ const jobLauncherAddress = await escrowClient.getJobLauncherAddress('0x62dD51230 > **getManifest**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1284](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1284) -======= -Defined in: [escrow.ts:1173](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1173) ->>>>>>> develop +Defined in: [escrow.ts:1300](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1300) This function returns the manifest. Could be a URL or a JSON string. @@ -1008,11 +915,7 @@ const manifest = await escrowClient.getManifest('0x62dD51230A30401C455c8398d06F8 > **getManifestHash**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1246](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1246) -======= -Defined in: [escrow.ts:1135](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1135) ->>>>>>> develop +Defined in: [escrow.ts:1262](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1262) This function returns the manifest file hash. @@ -1050,11 +953,7 @@ const manifestHash = await escrowClient.getManifestHash('0x62dD51230A30401C455c8 > **getRecordingOracleAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1512](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1512) -======= -Defined in: [escrow.ts:1363](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1363) ->>>>>>> develop +Defined in: [escrow.ts:1528](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1528) This function returns the recording oracle address for a given escrow. @@ -1092,11 +991,7 @@ const oracleAddress = await escrowClient.getRecordingOracleAddress('0x62dD51230A > **getReputationOracleAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1588](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1588) -======= -Defined in: [escrow.ts:1439](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1439) ->>>>>>> develop +Defined in: [escrow.ts:1604](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1604) This function returns the reputation oracle address for a given escrow. @@ -1134,7 +1029,7 @@ const oracleAddress = await escrowClient.getReputationOracleAddress('0x62dD51230 > **getReservedFunds**(`escrowAddress`): `Promise`\<`bigint`\> -Defined in: [escrow.ts:1209](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1209) +Defined in: [escrow.ts:1225](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1225) This function returns the reserved funds for a specified escrow address. @@ -1172,11 +1067,7 @@ const reservedFunds = await escrowClient.getReservedFunds('0x62dD51230A30401C455 > **getResultsUrl**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1322](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1322) -======= -Defined in: [escrow.ts:1211](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1211) ->>>>>>> develop +Defined in: [escrow.ts:1338](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1338) This function returns the results file URL. @@ -1214,11 +1105,7 @@ const resultsUrl = await escrowClient.getResultsUrl('0x62dD51230A30401C455c8398d > **getStatus**(`escrowAddress`): `Promise`\<[`EscrowStatus`](../../types/enumerations/EscrowStatus.md)\> -<<<<<<< HEAD -Defined in: [escrow.ts:1474](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1474) -======= -Defined in: [escrow.ts:1325](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1325) ->>>>>>> develop +Defined in: [escrow.ts:1490](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1490) This function returns the current status of the escrow. @@ -1256,11 +1143,7 @@ const status = await escrowClient.getStatus('0x62dD51230A30401C455c8398d06F85e4E > **getTokenAddress**(`escrowAddress`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [escrow.ts:1436](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1436) -======= -Defined in: [escrow.ts:1287](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1287) ->>>>>>> develop +Defined in: [escrow.ts:1452](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1452) This function returns the token address used for funding the escrow. @@ -1298,7 +1181,7 @@ const tokenAddress = await escrowClient.getTokenAddress('0x62dD51230A30401C455c8 > **requestCancellation**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\> -Defined in: [escrow.ts:866](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L866) +Defined in: [escrow.ts:874](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L874) This function requests the cancellation of the specified escrow (moves status to ToCancel or finalizes if expired). @@ -1346,11 +1229,7 @@ await escrowClient.requestCancellation('0x62dD51230A30401C455c8398d06F85e4EaB630 > **setup**(`escrowAddress`, `escrowConfig`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [escrow.ts:307](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L307) -======= -Defined in: [escrow.ts:313](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L313) ->>>>>>> develop +Defined in: [escrow.ts:307](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L307) This function sets up the parameters of the escrow. @@ -1415,13 +1294,9 @@ await escrowClient.setup(escrowAddress, escrowConfig); #### Call Signature -<<<<<<< HEAD > **storeResults**(`escrowAddress`, `url`, `hash`, `fundsToReserve`, `txOptions?`): `Promise`\<`void`\> -Defined in: [escrow.ts:480](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L480) -======= -Defined in: [escrow.ts:485](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L485) ->>>>>>> develop +Defined in: [escrow.ts:484](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L484) This function stores the results URL and hash. @@ -1485,7 +1360,7 @@ await escrowClient.storeResults('0x62dD51230A30401C455c8398d06F85e4EaB6309f', 'h > **storeResults**(`escrowAddress`, `url`, `hash`, `txOptions?`): `Promise`\<`void`\> -Defined in: [escrow.ts:516](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L516) +Defined in: [escrow.ts:520](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L520) This function stores the results URL and hash. @@ -1545,11 +1420,7 @@ await escrowClient.storeResults('0x62dD51230A30401C455c8398d06F85e4EaB6309f', 'h > **withdraw**(`escrowAddress`, `tokenAddress`, `txOptions?`): `Promise`\<[`EscrowWithdraw`](../../types/type-aliases/EscrowWithdraw.md)\> -<<<<<<< HEAD -Defined in: [escrow.ts:917](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L917) -======= -Defined in: [escrow.ts:843](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L843) ->>>>>>> develop +Defined in: [escrow.ts:929](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L929) This function withdraws additional tokens in the escrow to the canceler. @@ -1606,11 +1477,7 @@ await escrowClient.withdraw( > `static` **build**(`runner`): `Promise`\<`EscrowClient`\> -<<<<<<< HEAD -Defined in: [escrow.ts:174](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L174) -======= -Defined in: [escrow.ts:170](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L170) ->>>>>>> develop +Defined in: [escrow.ts:174](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L174) Creates an instance of EscrowClient from a Runner. diff --git a/docs/sdk/typescript/escrow/classes/EscrowUtils.md b/docs/sdk/typescript/escrow/classes/EscrowUtils.md index 7a634cf8f0..ec64a6aa28 100644 --- a/docs/sdk/typescript/escrow/classes/EscrowUtils.md +++ b/docs/sdk/typescript/escrow/classes/EscrowUtils.md @@ -6,11 +6,7 @@ # Class: EscrowUtils -<<<<<<< HEAD -Defined in: [escrow.ts:1713](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1713) -======= -Defined in: [escrow.ts:1564](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1564) ->>>>>>> develop +Defined in: [escrow.ts:1729](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1729) ## Introduction @@ -58,7 +54,7 @@ const escrowAddresses = new EscrowUtils.getEscrows({ > `static` **getCancellationRefund**(`chainId`, `escrowAddress`): `Promise`\<[`CancellationRefund`](../../types/type-aliases/CancellationRefund.md)\> -Defined in: [escrow.ts:2262](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2262) +Defined in: [escrow.ts:2278](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2278) This function returns the cancellation refund for a given escrow address. @@ -125,7 +121,7 @@ const cancellationRefund = await EscrowUtils.getCancellationRefund(ChainId.POLYG > `static` **getCancellationRefunds**(`filter`): `Promise`\<[`CancellationRefund`](../../types/type-aliases/CancellationRefund.md)[]\> -Defined in: [escrow.ts:2178](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2178) +Defined in: [escrow.ts:2194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2194) This function returns the cancellation refunds for a given set of networks. @@ -220,11 +216,7 @@ console.log(cancellationRefunds); > `static` **getEscrow**(`chainId`, `escrowAddress`): `Promise`\<[`IEscrow`](../../interfaces/interfaces/IEscrow.md)\> -<<<<<<< HEAD -Defined in: [escrow.ts:1926](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1926) -======= -Defined in: [escrow.ts:1777](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1777) ->>>>>>> develop +Defined in: [escrow.ts:1942](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1942) This function returns the escrow data for a given address. @@ -303,11 +295,7 @@ const escrow = new EscrowUtils.getEscrow(ChainId.POLYGON_AMOY, "0x12345678901234 > `static` **getEscrows**(`filter`): `Promise`\<[`IEscrow`](../../interfaces/interfaces/IEscrow.md)[]\> -<<<<<<< HEAD -Defined in: [escrow.ts:1810](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1810) -======= -Defined in: [escrow.ts:1661](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1661) ->>>>>>> develop +Defined in: [escrow.ts:1826](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1826) This function returns an array of escrows based on the specified filter parameters. @@ -419,11 +407,7 @@ const escrows = await EscrowUtils.getEscrows(filters); > `static` **getPayouts**(`filter`): `Promise`\<[`Payout`](../../types/type-aliases/Payout.md)[]\> -<<<<<<< HEAD -Defined in: [escrow.ts:2096](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2096) -======= -Defined in: [escrow.ts:1947](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1947) ->>>>>>> develop +Defined in: [escrow.ts:2112](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2112) This function returns the payouts for a given set of networks. @@ -467,11 +451,7 @@ console.log(payouts); > `static` **getStatusEvents**(`filter`): `Promise`\<[`StatusEvent`](../../graphql/types/type-aliases/StatusEvent.md)[]\> -<<<<<<< HEAD -Defined in: [escrow.ts:2005](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2005) -======= -Defined in: [escrow.ts:1856](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1856) ->>>>>>> develop +Defined in: [escrow.ts:2021](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2021) This function returns the status events for a given set of networks within an optional date range. diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md index ec37976cd9..177882bc6c 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md @@ -8,11 +8,7 @@ > **DailyEscrowData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L75) -======= -Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L75) ->>>>>>> develop +Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L80) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protoco > **escrowsCancelled**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L81) -======= -Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L81) ->>>>>>> develop +Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L86) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protoco > **escrowsPaid**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L80) -======= -Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L80) ->>>>>>> develop +Defined in: [graphql/types.ts:85](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L85) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protoco > **escrowsPending**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L78) -======= -Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L78) ->>>>>>> develop +Defined in: [graphql/types.ts:83](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L83) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protoco > **escrowsSolved**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L79) -======= -Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L79) ->>>>>>> develop +Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L84) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protoco > **escrowsTotal**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L77) -======= -Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L77) ->>>>>>> develop +Defined in: [graphql/types.ts:82](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L82) *** @@ -80,8 +56,4 @@ Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protoco > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:76](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L76) -======= -Defined in: [graphql/types.ts:76](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L76) ->>>>>>> develop +Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L81) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md index bf1e7fab49..fb685c934c 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md @@ -8,11 +8,7 @@ > **DailyHMTData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L119) -======= -Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L119) ->>>>>>> develop +Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L124) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protoc > **dailyUniqueReceivers**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L124) -======= -Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L124) ->>>>>>> develop +Defined in: [graphql/types.ts:129](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L129) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protoc > **dailyUniqueSenders**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L123) -======= -Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L123) ->>>>>>> develop +Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L128) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protoc > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L120) -======= -Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L120) ->>>>>>> develop +Defined in: [graphql/types.ts:125](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L125) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protoc > **totalTransactionAmount**: `bigint` -<<<<<<< HEAD -Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L121) -======= -Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L121) ->>>>>>> develop +Defined in: [graphql/types.ts:126](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L126) *** @@ -68,8 +48,4 @@ Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protoc > **totalTransactionCount**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:122](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L122) -======= -Defined in: [graphql/types.ts:122](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L122) ->>>>>>> develop +Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L127) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md index c33b8501ef..766c604721 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md @@ -8,11 +8,7 @@ > **DailyPaymentData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L98) -======= -Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L98) ->>>>>>> develop +Defined in: [graphql/types.ts:103](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L103) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protoco > **averageAmountPerWorker**: `bigint` -<<<<<<< HEAD -Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L102) -======= -Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L102) ->>>>>>> develop +Defined in: [graphql/types.ts:107](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L107) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protoc > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L99) -======= -Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L99) ->>>>>>> develop +Defined in: [graphql/types.ts:104](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L104) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protoco > **totalAmountPaid**: `bigint` -<<<<<<< HEAD -Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L100) -======= -Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L100) ->>>>>>> develop +Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L105) *** @@ -56,8 +40,4 @@ Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protoc > **totalCount**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:101](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L101) -======= -Defined in: [graphql/types.ts:101](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L101) ->>>>>>> develop +Defined in: [graphql/types.ts:106](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L106) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md index 7af1e60d48..5be9ce53e0 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md @@ -8,11 +8,7 @@ > **DailyTaskData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L140) -======= -Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L140) ->>>>>>> develop +Defined in: [graphql/types.ts:145](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L145) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protoc > **tasksSolved**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L143) -======= -Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L143) ->>>>>>> develop +Defined in: [graphql/types.ts:148](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L148) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protoc > **tasksTotal**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L142) -======= -Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L142) ->>>>>>> develop +Defined in: [graphql/types.ts:147](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L147) *** @@ -44,8 +32,4 @@ Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protoc > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:141](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L141) -======= -Defined in: [graphql/types.ts:141](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L141) ->>>>>>> develop +Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L146) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md index 9b2d41771d..71ef5c0358 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md @@ -8,11 +8,7 @@ > **DailyWorkerData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L89) -======= -Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L89) ->>>>>>> develop +Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L94) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protoco > **activeWorkers**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L91) -======= -Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L91) ->>>>>>> develop +Defined in: [graphql/types.ts:96](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L96) *** @@ -32,8 +24,4 @@ Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protoco > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:90](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L90) -======= -Defined in: [graphql/types.ts:90](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L90) ->>>>>>> develop +Defined in: [graphql/types.ts:95](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L95) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md index 35335cc54e..c5a642ab47 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md @@ -8,11 +8,7 @@ > **EscrowData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L3) -======= -Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L3) ->>>>>>> develop +Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L3) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol > **address**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L5) -======= -Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L5) ->>>>>>> develop +Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L5) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol > **amountPaid**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L6) -======= -Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L6) ->>>>>>> develop +Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L6) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol > **balance**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L7) -======= -Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L7) ->>>>>>> develop +Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L7) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol > **chainId**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L22) -======= -Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L22) ->>>>>>> develop +Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L27) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protoco > **count**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L8) -======= -Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L8) ->>>>>>> develop +Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L8) *** @@ -80,11 +56,7 @@ Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol > **createdAt**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L21) -======= -Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L21) ->>>>>>> develop +Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L26) *** @@ -92,11 +64,15 @@ Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protoco > `optional` **exchangeOracle**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L17) -======= -Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L17) ->>>>>>> develop +Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L19) + +*** + +### exchangeOracleFee? + +> `optional` **exchangeOracleFee**: `string` + +Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L22) *** @@ -104,11 +80,15 @@ Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protoco > **factoryAddress**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L9) -======= -Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L9) ->>>>>>> develop +Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L9) + +*** + +### finalResultsHash? + +> `optional` **finalResultsHash**: `string` + +Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L11) *** @@ -116,11 +96,7 @@ Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol > `optional` **finalResultsUrl**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L10) -======= -Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L10) ->>>>>>> develop +Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L10) *** @@ -128,11 +104,15 @@ Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protoco > **id**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L4) -======= -Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L4) ->>>>>>> develop +Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L4) + +*** + +### intermediateResultsHash? + +> `optional` **intermediateResultsHash**: `string` + +Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L13) *** @@ -140,11 +120,7 @@ Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol > `optional` **intermediateResultsUrl**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L11) -======= -Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L11) ->>>>>>> develop +Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L12) *** @@ -152,11 +128,7 @@ Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protoco > **launcher**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L12) -======= -Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L12) ->>>>>>> develop +Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L14) *** @@ -164,11 +136,7 @@ Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protoco > `optional` **manifestHash**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L13) -======= -Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L13) ->>>>>>> develop +Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L15) *** @@ -176,11 +144,7 @@ Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protoco > `optional` **manifestUrl**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L14) -======= -Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L14) ->>>>>>> develop +Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L16) *** @@ -188,11 +152,15 @@ Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protoco > `optional` **recordingOracle**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L15) -======= -Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L15) ->>>>>>> develop +Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L17) + +*** + +### recordingOracleFee? + +> `optional` **recordingOracleFee**: `string` + +Defined in: [graphql/types.ts:20](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L20) *** @@ -200,11 +168,15 @@ Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protoco > `optional` **reputationOracle**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L16) -======= -Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L16) ->>>>>>> develop +Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L18) + +*** + +### reputationOracleFee? + +> `optional` **reputationOracleFee**: `string` + +Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L21) *** @@ -212,11 +184,7 @@ Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protoco > **status**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L18) -======= -Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L18) ->>>>>>> develop +Defined in: [graphql/types.ts:23](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L23) *** @@ -224,11 +192,7 @@ Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protoco > **token**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L19) -======= -Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L19) ->>>>>>> develop +Defined in: [graphql/types.ts:24](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L24) *** @@ -236,8 +200,4 @@ Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protoco > **totalFundedAmount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:20](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L20) -======= -Defined in: [graphql/types.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L20) ->>>>>>> develop +Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L25) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md index 6058fc8e32..bcca40dbaa 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md @@ -8,11 +8,7 @@ > **EscrowStatistics** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L84) -======= -Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L84) ->>>>>>> develop +Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L89) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protoco > **dailyEscrowsData**: [`DailyEscrowData`](DailyEscrowData.md)[] -<<<<<<< HEAD -Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L86) -======= -Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L86) ->>>>>>> develop +Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L91) *** @@ -32,8 +24,4 @@ Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protoco > **totalEscrows**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:85](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L85) -======= -Defined in: [graphql/types.ts:85](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L85) ->>>>>>> develop +Defined in: [graphql/types.ts:90](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L90) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md index a1955da295..c8e6982ab6 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md @@ -8,11 +8,7 @@ > **EscrowStatisticsData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L34) -======= -Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L34) ->>>>>>> develop +Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L39) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protoco > **bulkPayoutEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L37) -======= -Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L37) ->>>>>>> develop +Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L42) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protoco > **cancelledStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L39) -======= -Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L39) ->>>>>>> develop +Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L44) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protoco > **completedStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L42) -======= -Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L42) ->>>>>>> develop +Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L47) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protoco > **fundEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L35) -======= -Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L35) ->>>>>>> develop +Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L40) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protoco > **paidStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L41) -======= -Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L41) ->>>>>>> develop +Defined in: [graphql/types.ts:46](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L46) *** @@ -80,11 +56,7 @@ Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protoco > **partialStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L40) -======= -Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L40) ->>>>>>> develop +Defined in: [graphql/types.ts:45](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L45) *** @@ -92,11 +64,7 @@ Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protoco > **pendingStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L38) -======= -Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L38) ->>>>>>> develop +Defined in: [graphql/types.ts:43](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L43) *** @@ -104,11 +72,7 @@ Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protoco > **storeResultsEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L36) -======= -Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L36) ->>>>>>> develop +Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L41) *** @@ -116,11 +80,7 @@ Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protoco > **totalEscrowCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L44) -======= -Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L44) ->>>>>>> develop +Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L49) *** @@ -128,8 +88,4 @@ Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protoco > **totalEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:43](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L43) -======= -Defined in: [graphql/types.ts:43](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L43) ->>>>>>> develop +Defined in: [graphql/types.ts:48](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L48) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md b/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md index 91559656f2..8634f278a6 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md @@ -8,11 +8,7 @@ > **EventDayData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L47) -======= -Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L47) ->>>>>>> develop +Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L52) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protoco > **dailyBulkPayoutEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L51) -======= -Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L51) ->>>>>>> develop +Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L56) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protoco > **dailyCancelledStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L53) -======= -Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L53) ->>>>>>> develop +Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L58) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protoco > **dailyCompletedStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L56) -======= -Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L56) ->>>>>>> develop +Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L61) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protoco > **dailyEscrowCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L58) -======= -Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L58) ->>>>>>> develop +Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L63) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protoco > **dailyFundEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L49) -======= -Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L49) ->>>>>>> develop +Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L54) *** @@ -80,11 +56,7 @@ Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protoco > **dailyHMTPayoutAmount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L61) -======= -Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L61) ->>>>>>> develop +Defined in: [graphql/types.ts:66](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L66) *** @@ -92,11 +64,7 @@ Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protoco > **dailyHMTTransferAmount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L63) -======= -Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L63) ->>>>>>> develop +Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L68) *** @@ -104,11 +72,7 @@ Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protoco > **dailyHMTTransferCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L62) -======= -Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L62) ->>>>>>> develop +Defined in: [graphql/types.ts:67](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L67) *** @@ -116,11 +80,7 @@ Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protoco > **dailyPaidStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L55) -======= -Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L55) ->>>>>>> develop +Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L60) *** @@ -128,11 +88,7 @@ Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protoco > **dailyPartialStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L54) -======= -Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L54) ->>>>>>> develop +Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L59) *** @@ -140,11 +96,7 @@ Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protoco > **dailyPayoutCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L60) -======= -Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L60) ->>>>>>> develop +Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L65) *** @@ -152,11 +104,7 @@ Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protoco > **dailyPendingStatusEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L52) -======= -Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L52) ->>>>>>> develop +Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L57) *** @@ -164,11 +112,7 @@ Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protoco > **dailyStoreResultsEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L50) -======= -Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L50) ->>>>>>> develop +Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L55) *** @@ -176,11 +120,7 @@ Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protoco > **dailyTotalEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L57) -======= -Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L57) ->>>>>>> develop +Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L62) *** @@ -188,11 +128,7 @@ Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protoco > **dailyUniqueReceivers**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L65) -======= -Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L65) ->>>>>>> develop +Defined in: [graphql/types.ts:70](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L70) *** @@ -200,11 +136,7 @@ Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protoco > **dailyUniqueSenders**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L64) -======= -Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L64) ->>>>>>> develop +Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L69) *** @@ -212,11 +144,7 @@ Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protoco > **dailyWorkerCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L59) -======= -Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L59) ->>>>>>> develop +Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L64) *** @@ -224,8 +152,4 @@ Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protoco > **timestamp**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:48](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L48) -======= -Defined in: [graphql/types.ts:48](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L48) ->>>>>>> develop +Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L53) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md index 4a3e279d68..4ef63f5a14 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md @@ -8,11 +8,7 @@ > **HMTHolder** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L114) -======= -Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L114) ->>>>>>> develop +Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L119) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protoc > **address**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L115) -======= -Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L115) ->>>>>>> develop +Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L120) *** @@ -32,8 +24,4 @@ Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protoc > **balance**: `bigint` -<<<<<<< HEAD -Defined in: [graphql/types.ts:116](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L116) -======= -Defined in: [graphql/types.ts:116](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L116) ->>>>>>> develop +Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L121) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md index 2a4d76f871..bec5212615 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md @@ -8,11 +8,7 @@ > **HMTHolderData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L109) -======= -Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L109) ->>>>>>> develop +Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L114) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protoc > **address**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L110) -======= -Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L110) ->>>>>>> develop +Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L115) *** @@ -32,8 +24,4 @@ Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protoc > **balance**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:111](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L111) -======= -Defined in: [graphql/types.ts:111](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L111) ->>>>>>> develop +Defined in: [graphql/types.ts:116](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L116) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md index 59fce206e9..cbdc92d14b 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md @@ -8,11 +8,7 @@ > **HMTStatistics** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L127) -======= -Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L127) ->>>>>>> develop +Defined in: [graphql/types.ts:132](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L132) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protoc > **totalHolders**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L130) -======= -Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L130) ->>>>>>> develop +Defined in: [graphql/types.ts:135](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L135) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protoc > **totalTransferAmount**: `bigint` -<<<<<<< HEAD -Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L128) -======= -Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L128) ->>>>>>> develop +Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L133) *** @@ -44,8 +32,4 @@ Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protoc > **totalTransferCount**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:129](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L129) -======= -Defined in: [graphql/types.ts:129](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L129) ->>>>>>> develop +Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L134) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md index 4fe96712fc..7a148875a4 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md @@ -8,11 +8,7 @@ > **HMTStatisticsData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L25) -======= -Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L25) ->>>>>>> develop +Defined in: [graphql/types.ts:30](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L30) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protoco > **holders**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L31) -======= -Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L31) ->>>>>>> develop +Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L36) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protoco > **totalApprovalEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L28) -======= -Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L28) ->>>>>>> develop +Defined in: [graphql/types.ts:33](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L33) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protoco > **totalBulkApprovalEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L29) -======= -Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L29) ->>>>>>> develop +Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L34) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protoco > **totalBulkTransferEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L27) -======= -Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L27) ->>>>>>> develop +Defined in: [graphql/types.ts:32](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L32) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protoco > **totalTransferEventCount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L26) -======= -Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L26) ->>>>>>> develop +Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L31) *** @@ -80,8 +56,4 @@ Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protoco > **totalValueTransfered**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:30](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L30) -======= -Defined in: [graphql/types.ts:30](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L30) ->>>>>>> develop +Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L35) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/IMData.md b/docs/sdk/typescript/graphql/types/type-aliases/IMData.md index 2aed2cfff9..99d1dddca9 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/IMData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/IMData.md @@ -8,8 +8,4 @@ > **IMData** = `Record`\<`string`, [`IMDataEntity`](IMDataEntity.md)\> -<<<<<<< HEAD -Defined in: [graphql/types.ts:138](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L138) -======= -Defined in: [graphql/types.ts:138](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L138) ->>>>>>> develop +Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L143) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md b/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md index dd8fc7c4c4..d29b87adc1 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md @@ -8,11 +8,7 @@ > **IMDataEntity** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L133) -======= -Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L133) ->>>>>>> develop +Defined in: [graphql/types.ts:138](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L138) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protoc > **served**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L134) -======= -Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L134) ->>>>>>> develop +Defined in: [graphql/types.ts:139](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L139) *** @@ -32,8 +24,4 @@ Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protoc > **solved**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:135](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L135) -======= -Defined in: [graphql/types.ts:135](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L135) ->>>>>>> develop +Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L140) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md b/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md index 19a1347e29..859750a2fc 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md @@ -8,11 +8,7 @@ > **KVStoreData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L157) -======= -Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L157) ->>>>>>> develop +Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L162) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protoc > **address**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L159) -======= -Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L159) ->>>>>>> develop +Defined in: [graphql/types.ts:164](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L164) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protoc > **block**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L163) -======= -Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L163) ->>>>>>> develop +Defined in: [graphql/types.ts:168](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L168) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protoc > **id**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L158) -======= -Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L158) ->>>>>>> develop +Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L163) *** @@ -56,11 +40,7 @@ Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protoc > **key**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L160) -======= -Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L160) ->>>>>>> develop +Defined in: [graphql/types.ts:165](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L165) *** @@ -68,11 +48,7 @@ Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protoc > **timestamp**: `Date` -<<<<<<< HEAD -Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L162) -======= -Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L162) ->>>>>>> develop +Defined in: [graphql/types.ts:167](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L167) *** @@ -80,8 +56,4 @@ Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protoc > **value**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:161](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L161) -======= -Defined in: [graphql/types.ts:161](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L161) ->>>>>>> develop +Defined in: [graphql/types.ts:166](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L166) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md index 7be126248f..33b23f5a99 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md @@ -8,11 +8,7 @@ > **PaymentStatistics** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L105) -======= -Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L105) ->>>>>>> develop +Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L110) ## Properties @@ -20,8 +16,4 @@ Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protoc > **dailyPaymentsData**: [`DailyPaymentData`](DailyPaymentData.md)[] -<<<<<<< HEAD -Defined in: [graphql/types.ts:106](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L106) -======= -Defined in: [graphql/types.ts:106](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L106) ->>>>>>> develop +Defined in: [graphql/types.ts:111](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L111) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md b/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md index ee1748d068..f15cdef299 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md @@ -8,11 +8,7 @@ > **RewardAddedEventData** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L68) -======= -Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L68) ->>>>>>> develop +Defined in: [graphql/types.ts:73](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L73) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protoco > **amount**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L72) -======= -Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L72) ->>>>>>> develop +Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L77) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protoco > **escrowAddress**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L69) -======= -Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L69) ->>>>>>> develop +Defined in: [graphql/types.ts:74](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L74) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protoco > **slasher**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L71) -======= -Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L71) ->>>>>>> develop +Defined in: [graphql/types.ts:76](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L76) *** @@ -56,8 +40,4 @@ Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protoco > **staker**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:70](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L70) -======= -Defined in: [graphql/types.ts:70](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L70) ->>>>>>> develop +Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L75) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md b/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md index bcb2fb5636..9c4608b6a1 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md @@ -8,11 +8,7 @@ > **StatusEvent** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L150) -======= -Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L150) ->>>>>>> develop +Defined in: [graphql/types.ts:155](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L155) ## Properties @@ -20,11 +16,7 @@ Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protoc > **chainId**: [`ChainId`](../../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L154) -======= -Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L154) ->>>>>>> develop +Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L159) *** @@ -32,11 +24,7 @@ Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protoc > **escrowAddress**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L152) -======= -Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L152) ->>>>>>> develop +Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L157) *** @@ -44,11 +32,7 @@ Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protoc > **status**: `string` -<<<<<<< HEAD -Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L153) -======= -Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L153) ->>>>>>> develop +Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L158) *** @@ -56,8 +40,4 @@ Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protoc > **timestamp**: `number` -<<<<<<< HEAD -Defined in: [graphql/types.ts:151](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L151) -======= -Defined in: [graphql/types.ts:151](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L151) ->>>>>>> develop +Defined in: [graphql/types.ts:156](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L156) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md index b36dd75f47..5a654ecf31 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md @@ -8,11 +8,7 @@ > **TaskStatistics** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L146) -======= -Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L146) ->>>>>>> develop +Defined in: [graphql/types.ts:151](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L151) ## Properties @@ -20,8 +16,4 @@ Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protoc > **dailyTasksData**: [`DailyTaskData`](DailyTaskData.md)[] -<<<<<<< HEAD -Defined in: [graphql/types.ts:147](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L147) -======= -Defined in: [graphql/types.ts:147](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L147) ->>>>>>> develop +Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L152) diff --git a/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md index 03d6519839..b7a434ab36 100644 --- a/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md +++ b/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md @@ -8,11 +8,7 @@ > **WorkerStatistics** = `object` -<<<<<<< HEAD -Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L94) -======= -Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L94) ->>>>>>> develop +Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L99) ## Properties @@ -20,8 +16,4 @@ Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protoco > **dailyWorkersData**: [`DailyWorkerData`](DailyWorkerData.md)[] -<<<<<<< HEAD -Defined in: [graphql/types.ts:95](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L95) -======= -Defined in: [graphql/types.ts:95](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L95) ->>>>>>> develop +Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L100) diff --git a/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md b/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md index 1c0d9c082c..4dc52cb41b 100644 --- a/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md @@ -6,7 +6,7 @@ # Interface: ICancellationRefundFilter -Defined in: [interfaces.ts:249](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L249) +Defined in: [interfaces.ts:254](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L254) ## Extends @@ -18,7 +18,7 @@ Defined in: [interfaces.ts:249](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -Defined in: [interfaces.ts:250](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L250) +Defined in: [interfaces.ts:255](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L255) *** @@ -26,7 +26,7 @@ Defined in: [interfaces.ts:250](https://github.com/humanprotocol/human-protocol/ > `optional` **escrowAddress**: `string` -Defined in: [interfaces.ts:251](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L251) +Defined in: [interfaces.ts:256](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L256) *** @@ -34,7 +34,7 @@ Defined in: [interfaces.ts:251](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -46,7 +46,7 @@ Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/ > `optional` **from**: `Date` -Defined in: [interfaces.ts:253](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L253) +Defined in: [interfaces.ts:258](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L258) *** @@ -54,7 +54,7 @@ Defined in: [interfaces.ts:253](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -66,7 +66,7 @@ Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/ > `optional` **receiver**: `string` -Defined in: [interfaces.ts:252](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L252) +Defined in: [interfaces.ts:257](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L257) *** @@ -74,7 +74,7 @@ Defined in: [interfaces.ts:252](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -86,4 +86,4 @@ Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/ > `optional` **to**: `Date` -Defined in: [interfaces.ts:254](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L254) +Defined in: [interfaces.ts:259](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L259) diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrow.md b/docs/sdk/typescript/interfaces/interfaces/IEscrow.md index 2a5874c978..f5e8f617be 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IEscrow.md +++ b/docs/sdk/typescript/interfaces/interfaces/IEscrow.md @@ -6,11 +6,7 @@ # Interface: IEscrow -<<<<<<< HEAD -Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L77) -======= -Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67) ->>>>>>> develop +Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L77) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/b > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L79) -======= -Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L69) ->>>>>>> develop +Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L79) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/b > **amountPaid**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L80) -======= -Defined in: [interfaces.ts:70](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L70) ->>>>>>> develop +Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L80) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:70](https://github.com/humanprotocol/human-protocol/b > **balance**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L81) -======= -Defined in: [interfaces.ts:71](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L71) ->>>>>>> develop +Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L81) *** @@ -54,11 +38,7 @@ Defined in: [interfaces.ts:71](https://github.com/humanprotocol/human-protocol/b > **chainId**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L96) -======= -Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L86) ->>>>>>> develop +Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L101) *** @@ -66,11 +46,7 @@ Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/b > **count**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L82) -======= -Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L72) ->>>>>>> develop +Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L82) *** @@ -78,11 +54,7 @@ Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/b > **createdAt**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L95) -======= -Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L85) ->>>>>>> develop +Defined in: [interfaces.ts:100](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L100) *** @@ -90,11 +62,15 @@ Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/b > `optional` **exchangeOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L91) -======= -Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L81) ->>>>>>> develop +Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L93) + +*** + +### exchangeOracleFee? + +> `optional` **exchangeOracleFee**: `string` + +Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L96) *** @@ -102,11 +78,15 @@ Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/b > **factoryAddress**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L83) -======= -Defined in: [interfaces.ts:73](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L73) ->>>>>>> develop +Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L83) + +*** + +### finalResultsHash? + +> `optional` **finalResultsHash**: `string` + +Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L85) *** @@ -114,11 +94,7 @@ Defined in: [interfaces.ts:73](https://github.com/humanprotocol/human-protocol/b > `optional` **finalResultsUrl**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:84](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L84) -======= -Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L74) ->>>>>>> develop +Defined in: [interfaces.ts:84](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L84) *** @@ -126,11 +102,15 @@ Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/b > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L78) -======= -Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68) ->>>>>>> develop +Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L78) + +*** + +### intermediateResultsHash? + +> `optional` **intermediateResultsHash**: `string` + +Defined in: [interfaces.ts:87](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L87) *** @@ -138,11 +118,7 @@ Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/b > `optional` **intermediateResultsUrl**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L85) -======= -Defined in: [interfaces.ts:75](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L75) ->>>>>>> develop +Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L86) *** @@ -150,11 +126,7 @@ Defined in: [interfaces.ts:75](https://github.com/humanprotocol/human-protocol/b > **launcher**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L86) -======= -Defined in: [interfaces.ts:76](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L76) ->>>>>>> develop +Defined in: [interfaces.ts:88](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L88) *** @@ -162,11 +134,7 @@ Defined in: [interfaces.ts:76](https://github.com/humanprotocol/human-protocol/b > `optional` **manifest**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:88](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L88) -======= -Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L78) ->>>>>>> develop +Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L90) *** @@ -174,11 +142,7 @@ Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/b > `optional` **manifestHash**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:87](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L87) -======= -Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L77) ->>>>>>> develop +Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L89) *** @@ -186,11 +150,15 @@ Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/b > `optional` **recordingOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L89) -======= -Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L79) ->>>>>>> develop +Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L91) + +*** + +### recordingOracleFee? + +> `optional` **recordingOracleFee**: `string` + +Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L94) *** @@ -198,11 +166,15 @@ Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/b > `optional` **reputationOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L90) -======= -Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L80) ->>>>>>> develop +Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L92) + +*** + +### reputationOracleFee? + +> `optional` **reputationOracleFee**: `string` + +Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L95) *** @@ -210,11 +182,7 @@ Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/b > **status**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L92) -======= -Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L82) ->>>>>>> develop +Defined in: [interfaces.ts:97](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L97) *** @@ -222,11 +190,7 @@ Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/b > **token**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L93) -======= -Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L83) ->>>>>>> develop +Defined in: [interfaces.ts:98](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L98) *** @@ -234,8 +198,4 @@ Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/b > **totalFundedAmount**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L94) -======= -Defined in: [interfaces.ts:84](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L84) ->>>>>>> develop +Defined in: [interfaces.ts:99](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L99) diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md b/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md index d8f455fa92..0311965101 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md +++ b/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md @@ -6,11 +6,7 @@ # Interface: IEscrowConfig -<<<<<<< HEAD -Defined in: [interfaces.ts:111](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L111) -======= -Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L101) ->>>>>>> develop +Defined in: [interfaces.ts:116](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L116) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/ > **exchangeOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L114) -======= -Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L104) ->>>>>>> develop +Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L119) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/ > **exchangeOracleFee**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:117](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L117) -======= -Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L107) ->>>>>>> develop +Defined in: [interfaces.ts:122](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L122) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/ > **manifest**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:118](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L118) -======= -Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L108) ->>>>>>> develop +Defined in: [interfaces.ts:123](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L123) *** @@ -54,11 +38,7 @@ Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/ > **manifestHash**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L119) -======= -Defined in: [interfaces.ts:109](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L109) ->>>>>>> develop +Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L124) *** @@ -66,11 +46,7 @@ Defined in: [interfaces.ts:109](https://github.com/humanprotocol/human-protocol/ > **recordingOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L112) -======= -Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L102) ->>>>>>> develop +Defined in: [interfaces.ts:117](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L117) *** @@ -78,11 +54,7 @@ Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/ > **recordingOracleFee**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L115) -======= -Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L105) ->>>>>>> develop +Defined in: [interfaces.ts:120](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L120) *** @@ -90,11 +62,7 @@ Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/ > **reputationOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L113) -======= -Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L103) ->>>>>>> develop +Defined in: [interfaces.ts:118](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L118) *** @@ -102,8 +70,4 @@ Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/ > **reputationOracleFee**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:116](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L116) -======= -Defined in: [interfaces.ts:106](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L106) ->>>>>>> develop +Defined in: [interfaces.ts:121](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L121) diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md b/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md index c8c14844e1..d2ea9f836f 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md @@ -6,11 +6,7 @@ # Interface: IEscrowsFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:99](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L99) -======= -Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L89) ->>>>>>> develop +Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L104) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/b > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L108) -======= -Defined in: [interfaces.ts:98](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L98) ->>>>>>> develop +Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L113) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:98](https://github.com/humanprotocol/human-protocol/b > `optional` **exchangeOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L103) -======= -Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L93) ->>>>>>> develop +Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L108) *** @@ -46,11 +34,7 @@ Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/b > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -62,11 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **from**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:106](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L106) -======= -Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L96) ->>>>>>> develop +Defined in: [interfaces.ts:111](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L111) *** @@ -74,11 +54,7 @@ Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/b > `optional` **jobRequesterId**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L104) -======= -Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L94) ->>>>>>> develop +Defined in: [interfaces.ts:109](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L109) *** @@ -86,11 +62,7 @@ Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/b > `optional` **launcher**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:100](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L100) -======= -Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L90) ->>>>>>> develop +Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L105) *** @@ -98,11 +70,7 @@ Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/b > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -114,11 +82,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **recordingOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L102) -======= -Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L92) ->>>>>>> develop +Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L107) *** @@ -126,11 +90,7 @@ Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/b > `optional` **reputationOracle**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L101) -======= -Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L91) ->>>>>>> develop +Defined in: [interfaces.ts:106](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L106) *** @@ -138,11 +98,7 @@ Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/b > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -154,11 +110,7 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/ > `optional` **status**: [`EscrowStatus`](../../types/enumerations/EscrowStatus.md) \| [`EscrowStatus`](../../types/enumerations/EscrowStatus.md)[] -<<<<<<< HEAD -Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L105) -======= -Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L95) ->>>>>>> develop +Defined in: [interfaces.ts:110](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L110) *** @@ -166,8 +118,4 @@ Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/b > `optional` **to**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L107) -======= -Defined in: [interfaces.ts:97](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L97) ->>>>>>> develop +Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L112) diff --git a/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md b/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md index ea8a2f287b..c9a6ef535b 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md +++ b/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md @@ -6,11 +6,7 @@ # Interface: IHMTHoldersParams -<<<<<<< HEAD -Defined in: [interfaces.ts:134](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L134) -======= -Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L124) ->>>>>>> develop +Defined in: [interfaces.ts:139](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L139) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/ > `optional` **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:135](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L135) -======= -Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L125) ->>>>>>> develop +Defined in: [interfaces.ts:140](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L140) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -50,11 +38,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -66,11 +50,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from diff --git a/docs/sdk/typescript/interfaces/interfaces/IKVStore.md b/docs/sdk/typescript/interfaces/interfaces/IKVStore.md index d8546c29ab..e83b57634d 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IKVStore.md +++ b/docs/sdk/typescript/interfaces/interfaces/IKVStore.md @@ -6,11 +6,7 @@ # Interface: IKVStore -<<<<<<< HEAD -Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L146) -======= -Defined in: [interfaces.ts:136](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L136) ->>>>>>> develop +Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L151) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:136](https://github.com/humanprotocol/human-protocol/ > **key**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L147) -======= -Defined in: [interfaces.ts:137](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L137) ->>>>>>> develop +Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L152) *** @@ -30,8 +22,4 @@ Defined in: [interfaces.ts:137](https://github.com/humanprotocol/human-protocol/ > **value**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L148) -======= -Defined in: [interfaces.ts:138](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L138) ->>>>>>> develop +Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L153) diff --git a/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md b/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md index 155d85d586..9bd9cbff82 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md +++ b/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md @@ -6,11 +6,7 @@ # Interface: IKeyPair -<<<<<<< HEAD -Defined in: [interfaces.ts:122](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L122) -======= -Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L112) ->>>>>>> develop +Defined in: [interfaces.ts:127](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L127) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/ > **passphrase**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L125) -======= -Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L115) ->>>>>>> develop +Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L130) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/ > **privateKey**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:123](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L123) -======= -Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L113) ->>>>>>> develop +Defined in: [interfaces.ts:128](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L128) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/ > **publicKey**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L124) -======= -Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L114) ->>>>>>> develop +Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L129) *** @@ -54,8 +38,4 @@ Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/ > `optional` **revocationCertificate**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:126](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L126) -======= -Defined in: [interfaces.ts:116](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L116) ->>>>>>> develop +Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L131) diff --git a/docs/sdk/typescript/interfaces/interfaces/IOperator.md b/docs/sdk/typescript/interfaces/interfaces/IOperator.md index 9a3976d27f..e8f707508f 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IOperator.md +++ b/docs/sdk/typescript/interfaces/interfaces/IOperator.md @@ -6,11 +6,7 @@ # Interface: IOperator -<<<<<<< HEAD -Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L9) -======= -Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L9) ->>>>>>> develop +Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L9) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/bl > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12) -======= -Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12) ->>>>>>> develop +Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12) *** @@ -30,43 +22,7 @@ Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/b > **amountJobsProcessed**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18) -======= -Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L19) - -*** - -### amountLocked - -> **amountLocked**: `bigint` - -Defined in: [interfaces.ts:14](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L14) - -*** - -### amountSlashed - -> **amountSlashed**: `bigint` - -Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L17) - -*** - -### amountStaked - -> **amountStaked**: `bigint` - -Defined in: [interfaces.ts:13](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L13) - -*** - -### amountWithdrawn - -> **amountWithdrawn**: `bigint` - -Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16) ->>>>>>> develop +Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18) *** @@ -74,11 +30,7 @@ Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/b > `optional` **category**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30) -======= -Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L31) ->>>>>>> develop +Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30) *** @@ -86,11 +38,7 @@ Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/b > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L11) -======= -Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L11) ->>>>>>> develop +Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L11) *** @@ -98,11 +46,7 @@ Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/b > `optional` **fee**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20) -======= -Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21) ->>>>>>> develop +Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20) *** @@ -110,11 +54,7 @@ Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/b > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10) -======= -Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10) ->>>>>>> develop +Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10) *** @@ -122,8 +62,7 @@ Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/b > `optional` **jobTypes**: `string`[] -<<<<<<< HEAD -Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25) +Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25) *** @@ -131,10 +70,7 @@ Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/b > **lockedAmount**: `bigint` -Defined in: [interfaces.ts:14](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L14) -======= -Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L26) ->>>>>>> develop +Defined in: [interfaces.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L14) *** @@ -142,11 +78,7 @@ Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/b > **lockedUntilTimestamp**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15) -======= -Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15) ->>>>>>> develop +Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15) *** @@ -154,11 +86,7 @@ Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/b > `optional` **name**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:29](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L29) -======= -Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30) ->>>>>>> develop +Defined in: [interfaces.ts:29](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L29) *** @@ -166,11 +94,7 @@ Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/b > `optional` **publicKey**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21) -======= -Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22) ->>>>>>> develop +Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21) *** @@ -178,11 +102,7 @@ Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/b > `optional` **registrationInstructions**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27) -======= -Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28) ->>>>>>> develop +Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27) *** @@ -190,11 +110,7 @@ Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/b > `optional` **registrationNeeded**: `boolean` -<<<<<<< HEAD -Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L26) -======= -Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27) ->>>>>>> develop +Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L26) *** @@ -202,19 +118,7 @@ Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/b > `optional` **reputationNetworks**: `string`[] -<<<<<<< HEAD -Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28) -======= -Defined in: [interfaces.ts:29](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L29) - -*** - -### reward - -> **reward**: `bigint` - -Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18) ->>>>>>> develop +Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28) *** @@ -222,8 +126,7 @@ Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/b > `optional` **role**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L19) +Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L19) *** @@ -231,7 +134,7 @@ Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/b > **slashedAmount**: `bigint` -Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L17) +Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L17) *** @@ -239,10 +142,7 @@ Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/b > **stakedAmount**: `bigint` -Defined in: [interfaces.ts:13](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L13) -======= -Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20) ->>>>>>> develop +Defined in: [interfaces.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L13) *** @@ -250,11 +150,7 @@ Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/b > `optional` **url**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24) -======= -Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25) ->>>>>>> develop +Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24) *** @@ -262,11 +158,7 @@ Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/b > `optional` **webhookUrl**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22) -======= -Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23) ->>>>>>> develop +Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22) *** @@ -274,8 +166,7 @@ Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/b > `optional` **website**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23) +Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23) *** @@ -283,7 +174,4 @@ Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/b > **withdrawnAmount**: `bigint` -Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16) -======= -Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24) ->>>>>>> develop +Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16) diff --git a/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md b/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md index d336a3cad9..60b7d50f22 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md +++ b/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md @@ -6,15 +6,7 @@ # Interface: IOperatorSubgraph -<<<<<<< HEAD -Defined in: [interfaces.ts:33](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L33) -======= -Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L34) - -## Extends - -- `Omit`\<[`IOperator`](IOperator.md), `"jobTypes"` \| `"reputationNetworks"` \| `"chainId"`\> ->>>>>>> develop +Defined in: [interfaces.ts:33](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L33) ## Properties @@ -22,15 +14,7 @@ Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/b > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:35](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L35) -======= -Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12) - -#### Inherited from - -`Omit.address` ->>>>>>> develop +Defined in: [interfaces.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L35) *** @@ -38,63 +22,7 @@ Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/b > **amountJobsProcessed**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:36](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L36) -======= -Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L19) - -#### Inherited from - -`Omit.amountJobsProcessed` - -*** - -### amountLocked - -> **amountLocked**: `bigint` - -Defined in: [interfaces.ts:14](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L14) - -#### Inherited from - -`Omit.amountLocked` - -*** - -### amountSlashed - -> **amountSlashed**: `bigint` - -Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L17) - -#### Inherited from - -`Omit.amountSlashed` - -*** - -### amountStaked - -> **amountStaked**: `bigint` - -Defined in: [interfaces.ts:13](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L13) - -#### Inherited from - -`Omit.amountStaked` - -*** - -### amountWithdrawn - -> **amountWithdrawn**: `bigint` - -Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16) - -#### Inherited from - -`Omit.amountWithdrawn` ->>>>>>> develop +Defined in: [interfaces.ts:36](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L36) *** @@ -102,15 +30,7 @@ Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/b > `optional` **category**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:46](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L46) -======= -Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L31) - -#### Inherited from - -`Omit.category` ->>>>>>> develop +Defined in: [interfaces.ts:46](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L46) *** @@ -118,15 +38,7 @@ Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/b > `optional` **fee**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:38](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L38) -======= -Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21) - -#### Inherited from - -`Omit.fee` ->>>>>>> develop +Defined in: [interfaces.ts:38](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L38) *** @@ -134,15 +46,7 @@ Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/b > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L34) -======= -Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10) - -#### Inherited from - -`Omit.id` ->>>>>>> develop +Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L34) *** @@ -150,23 +54,7 @@ Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/b > `optional` **jobTypes**: `string` \| `string`[] -<<<<<<< HEAD -Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L47) -======= -Defined in: [interfaces.ts:36](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L36) - -*** - -### lockedUntilTimestamp - -> **lockedUntilTimestamp**: `bigint` - -Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15) - -#### Inherited from - -`Omit.lockedUntilTimestamp` ->>>>>>> develop +Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L47) *** @@ -174,15 +62,7 @@ Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/b > `optional` **name**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:45](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L45) -======= -Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30) - -#### Inherited from - -`Omit.name` ->>>>>>> develop +Defined in: [interfaces.ts:45](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L45) *** @@ -190,15 +70,7 @@ Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/b > `optional` **publicKey**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:39](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L39) -======= -Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22) - -#### Inherited from - -`Omit.publicKey` ->>>>>>> develop +Defined in: [interfaces.ts:39](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L39) *** @@ -206,15 +78,7 @@ Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/b > `optional` **registrationInstructions**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L44) -======= -Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28) - -#### Inherited from - -`Omit.registrationInstructions` ->>>>>>> develop +Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L44) *** @@ -222,15 +86,7 @@ Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/b > `optional` **registrationNeeded**: `boolean` -<<<<<<< HEAD -Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L43) -======= -Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27) - -#### Inherited from - -`Omit.registrationNeeded` ->>>>>>> develop +Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L43) *** @@ -238,11 +94,7 @@ Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/b > `optional` **reputationNetworks**: `object`[] -<<<<<<< HEAD -Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48) -======= -Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L37) ->>>>>>> develop +Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48) #### address @@ -250,30 +102,11 @@ Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/b *** -<<<<<<< HEAD -======= -### reward - -> **reward**: `bigint` - -Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18) - -#### Inherited from - -`Omit.reward` - -*** - ->>>>>>> develop ### role? > `optional` **role**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L37) -======= -Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20) ->>>>>>> develop +Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L37) *** @@ -281,7 +114,7 @@ Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/b > `optional` **staker**: `object` -Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49) +Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49) #### lastDepositTimestamp @@ -313,15 +146,7 @@ Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/b > `optional` **url**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L42) -======= -Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25) - -#### Inherited from - -`Omit.url` ->>>>>>> develop +Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L42) *** @@ -329,15 +154,7 @@ Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/b > `optional` **webhookUrl**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L40) -======= -Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23) - -#### Inherited from - -`Omit.webhookUrl` ->>>>>>> develop +Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L40) *** @@ -345,12 +162,4 @@ Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/b > `optional` **website**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L41) -======= -Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24) - -#### Inherited from - -`Omit.website` ->>>>>>> develop +Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L41) diff --git a/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md b/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md index 4b8ae256b3..2ae0b4d33d 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md @@ -6,11 +6,7 @@ # Interface: IOperatorsFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:59](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L59) -======= -Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L40) ->>>>>>> develop +Defined in: [interfaces.ts:59](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L59) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/b > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:60](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L60) -======= -Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L41) ->>>>>>> develop +Defined in: [interfaces.ts:60](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L60) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/b > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -50,11 +38,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **minStakedAmount**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:62](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L62) -======= -Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L43) ->>>>>>> develop +Defined in: [interfaces.ts:62](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L62) *** @@ -62,11 +46,7 @@ Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/b > `optional` **orderBy**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:63](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L63) -======= -Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L44) ->>>>>>> develop +Defined in: [interfaces.ts:63](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L63) *** @@ -74,11 +54,7 @@ Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/b > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -90,11 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **roles**: `string`[] -<<<<<<< HEAD -Defined in: [interfaces.ts:61](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L61) -======= -Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L42) ->>>>>>> develop +Defined in: [interfaces.ts:61](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L61) *** @@ -102,11 +74,7 @@ Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/b > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from diff --git a/docs/sdk/typescript/interfaces/interfaces/IPagination.md b/docs/sdk/typescript/interfaces/interfaces/IPagination.md index 9beac7a6c6..394893aefd 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IPagination.md +++ b/docs/sdk/typescript/interfaces/interfaces/IPagination.md @@ -6,11 +6,7 @@ # Interface: IPagination -<<<<<<< HEAD -Defined in: [interfaces.ts:188](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L188) -======= -Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L178) ->>>>>>> develop +Defined in: [interfaces.ts:193](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L193) ## Extended by @@ -31,11 +27,7 @@ Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) *** @@ -43,11 +35,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) *** @@ -55,8 +43,4 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) diff --git a/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md b/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md index 75cf9c48e3..fd99f08621 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md @@ -6,11 +6,7 @@ # Interface: IPayoutFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:138](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L138) -======= -Defined in: [interfaces.ts:128](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L128) ->>>>>>> develop +Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L143) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:128](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:139](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L139) -======= -Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L129) ->>>>>>> develop +Defined in: [interfaces.ts:144](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L144) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/ > `optional` **escrowAddress**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:140](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L140) -======= -Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L130) ->>>>>>> develop +Defined in: [interfaces.ts:145](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L145) *** @@ -46,11 +34,7 @@ Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -62,11 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **from**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L142) -======= -Defined in: [interfaces.ts:132](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L132) ->>>>>>> develop +Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L147) *** @@ -74,11 +54,7 @@ Defined in: [interfaces.ts:132](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -90,11 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **recipient**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L141) -======= -Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L131) ->>>>>>> develop +Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L146) *** @@ -102,11 +74,7 @@ Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -118,8 +86,4 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/ > `optional` **to**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L143) -======= -Defined in: [interfaces.ts:133](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L133) ->>>>>>> develop +Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L148) diff --git a/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md b/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md index 95cca9e673..9d96a8c7ad 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md +++ b/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md @@ -6,11 +6,7 @@ # Interface: IReputationNetwork -<<<<<<< HEAD -Defined in: [interfaces.ts:66](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L66) -======= -Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L47) ->>>>>>> develop +Defined in: [interfaces.ts:66](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L66) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/b > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68) -======= -Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49) ->>>>>>> develop +Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/b > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67) -======= -Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48) ->>>>>>> develop +Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67) *** @@ -42,8 +30,4 @@ Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/b > **operators**: [`IOperator`](IOperator.md)[] -<<<<<<< HEAD -Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L69) -======= -Defined in: [interfaces.ts:50](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L50) ->>>>>>> develop +Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L69) diff --git a/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md b/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md index 4d1f2d2608..e7c6518db8 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md +++ b/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md @@ -6,11 +6,7 @@ # Interface: IReputationNetworkSubgraph -<<<<<<< HEAD -Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L72) -======= -Defined in: [interfaces.ts:53](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L53) ->>>>>>> develop +Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L72) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:53](https://github.com/humanprotocol/human-protocol/b > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68) -======= -Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49) ->>>>>>> develop +Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68) #### Inherited from @@ -38,11 +30,7 @@ Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/b > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67) -======= -Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48) ->>>>>>> develop +Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67) #### Inherited from @@ -54,8 +42,4 @@ Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/b > **operators**: [`IOperatorSubgraph`](IOperatorSubgraph.md)[] -<<<<<<< HEAD -Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L74) -======= -Defined in: [interfaces.ts:55](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L55) ->>>>>>> develop +Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L74) diff --git a/docs/sdk/typescript/interfaces/interfaces/IReward.md b/docs/sdk/typescript/interfaces/interfaces/IReward.md index aa5e40ab85..18c5a4e10f 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IReward.md +++ b/docs/sdk/typescript/interfaces/interfaces/IReward.md @@ -6,11 +6,7 @@ # Interface: IReward -<<<<<<< HEAD -Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L4) -======= -Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L4) ->>>>>>> develop +Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L4) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/bl > **amount**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L6) -======= -Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L6) ->>>>>>> develop +Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L6) *** @@ -30,8 +22,4 @@ Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/bl > **escrowAddress**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:5](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L5) -======= -Defined in: [interfaces.ts:5](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L5) ->>>>>>> develop +Defined in: [interfaces.ts:5](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L5) diff --git a/docs/sdk/typescript/interfaces/interfaces/IStaker.md b/docs/sdk/typescript/interfaces/interfaces/IStaker.md index 81bbbb4371..3752b55c09 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IStaker.md +++ b/docs/sdk/typescript/interfaces/interfaces/IStaker.md @@ -6,7 +6,7 @@ # Interface: IStaker -Defined in: [interfaces.ts:222](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L222) +Defined in: [interfaces.ts:227](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L227) ## Properties @@ -14,7 +14,7 @@ Defined in: [interfaces.ts:222](https://github.com/humanprotocol/human-protocol/ > **address**: `string` -Defined in: [interfaces.ts:223](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L223) +Defined in: [interfaces.ts:228](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L228) *** @@ -22,7 +22,7 @@ Defined in: [interfaces.ts:223](https://github.com/humanprotocol/human-protocol/ > **lastDepositTimestamp**: `bigint` -Defined in: [interfaces.ts:229](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L229) +Defined in: [interfaces.ts:234](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L234) *** @@ -30,7 +30,7 @@ Defined in: [interfaces.ts:229](https://github.com/humanprotocol/human-protocol/ > **lockedAmount**: `bigint` -Defined in: [interfaces.ts:225](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L225) +Defined in: [interfaces.ts:230](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L230) *** @@ -38,7 +38,7 @@ Defined in: [interfaces.ts:225](https://github.com/humanprotocol/human-protocol/ > **lockedUntil**: `bigint` -Defined in: [interfaces.ts:226](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L226) +Defined in: [interfaces.ts:231](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L231) *** @@ -46,7 +46,7 @@ Defined in: [interfaces.ts:226](https://github.com/humanprotocol/human-protocol/ > **slashedAmount**: `bigint` -Defined in: [interfaces.ts:228](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L228) +Defined in: [interfaces.ts:233](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L233) *** @@ -54,7 +54,7 @@ Defined in: [interfaces.ts:228](https://github.com/humanprotocol/human-protocol/ > **stakedAmount**: `bigint` -Defined in: [interfaces.ts:224](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L224) +Defined in: [interfaces.ts:229](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L229) *** @@ -62,4 +62,4 @@ Defined in: [interfaces.ts:224](https://github.com/humanprotocol/human-protocol/ > **withdrawableAmount**: `bigint` -Defined in: [interfaces.ts:227](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L227) +Defined in: [interfaces.ts:232](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L232) diff --git a/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md index 67fd1d5ac9..19a3593958 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md @@ -6,7 +6,7 @@ # Interface: IStakersFilter -Defined in: [interfaces.ts:232](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L232) +Defined in: [interfaces.ts:237](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L237) ## Extends @@ -18,7 +18,7 @@ Defined in: [interfaces.ts:232](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -Defined in: [interfaces.ts:233](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L233) +Defined in: [interfaces.ts:238](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L238) *** @@ -26,7 +26,7 @@ Defined in: [interfaces.ts:233](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -38,7 +38,7 @@ Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/ > `optional` **maxLockedAmount**: `string` -Defined in: [interfaces.ts:237](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L237) +Defined in: [interfaces.ts:242](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L242) *** @@ -46,7 +46,7 @@ Defined in: [interfaces.ts:237](https://github.com/humanprotocol/human-protocol/ > `optional` **maxSlashedAmount**: `string` -Defined in: [interfaces.ts:241](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L241) +Defined in: [interfaces.ts:246](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L246) *** @@ -54,7 +54,7 @@ Defined in: [interfaces.ts:241](https://github.com/humanprotocol/human-protocol/ > `optional` **maxStakedAmount**: `string` -Defined in: [interfaces.ts:235](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L235) +Defined in: [interfaces.ts:240](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L240) *** @@ -62,7 +62,7 @@ Defined in: [interfaces.ts:235](https://github.com/humanprotocol/human-protocol/ > `optional` **maxWithdrawnAmount**: `string` -Defined in: [interfaces.ts:239](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L239) +Defined in: [interfaces.ts:244](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L244) *** @@ -70,7 +70,7 @@ Defined in: [interfaces.ts:239](https://github.com/humanprotocol/human-protocol/ > `optional` **minLockedAmount**: `string` -Defined in: [interfaces.ts:236](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L236) +Defined in: [interfaces.ts:241](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L241) *** @@ -78,7 +78,7 @@ Defined in: [interfaces.ts:236](https://github.com/humanprotocol/human-protocol/ > `optional` **minSlashedAmount**: `string` -Defined in: [interfaces.ts:240](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L240) +Defined in: [interfaces.ts:245](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L245) *** @@ -86,7 +86,7 @@ Defined in: [interfaces.ts:240](https://github.com/humanprotocol/human-protocol/ > `optional` **minStakedAmount**: `string` -Defined in: [interfaces.ts:234](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L234) +Defined in: [interfaces.ts:239](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L239) *** @@ -94,7 +94,7 @@ Defined in: [interfaces.ts:234](https://github.com/humanprotocol/human-protocol/ > `optional` **minWithdrawnAmount**: `string` -Defined in: [interfaces.ts:238](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L238) +Defined in: [interfaces.ts:243](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L243) *** @@ -102,7 +102,7 @@ Defined in: [interfaces.ts:238](https://github.com/humanprotocol/human-protocol/ > `optional` **orderBy**: `"stakedAmount"` \| `"lockedAmount"` \| `"withdrawnAmount"` \| `"slashedAmount"` \| `"lastDepositTimestamp"` -Defined in: [interfaces.ts:242](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L242) +Defined in: [interfaces.ts:247](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L247) *** @@ -110,7 +110,7 @@ Defined in: [interfaces.ts:242](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -122,7 +122,7 @@ Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from diff --git a/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md index 4e467ceb96..d5f50a6bde 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md @@ -6,11 +6,7 @@ # Interface: IStatisticsFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L129) -======= -Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L119) ->>>>>>> develop +Defined in: [interfaces.ts:134](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L134) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -38,11 +30,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **from**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L130) -======= -Defined in: [interfaces.ts:120](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L120) ->>>>>>> develop +Defined in: [interfaces.ts:135](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L135) *** @@ -50,11 +38,7 @@ Defined in: [interfaces.ts:120](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -66,11 +50,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -82,8 +62,4 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/ > `optional` **to**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L131) -======= -Defined in: [interfaces.ts:121](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L121) ->>>>>>> develop +Defined in: [interfaces.ts:136](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L136) diff --git a/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md index e397431f16..66966658a9 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md @@ -6,11 +6,7 @@ # Interface: IStatusEventFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L201) -======= -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) ->>>>>>> develop +Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L206) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:202](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L202) -======= -Defined in: [interfaces.ts:192](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L192) ->>>>>>> develop +Defined in: [interfaces.ts:207](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L207) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:192](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -50,11 +38,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **from**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:204](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L204) -======= -Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) ->>>>>>> develop +Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L209) *** @@ -62,11 +46,7 @@ Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/ > `optional` **launcher**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L206) -======= -Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) ->>>>>>> develop +Defined in: [interfaces.ts:211](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L211) *** @@ -74,11 +54,7 @@ Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -90,11 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -106,11 +78,7 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/ > `optional` **statuses**: [`EscrowStatus`](../../types/enumerations/EscrowStatus.md)[] -<<<<<<< HEAD -Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L203) -======= -Defined in: [interfaces.ts:193](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L193) ->>>>>>> develop +Defined in: [interfaces.ts:208](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L208) *** @@ -118,8 +86,4 @@ Defined in: [interfaces.ts:193](https://github.com/humanprotocol/human-protocol/ > `optional` **to**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:205](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L205) -======= -Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) ->>>>>>> develop +Defined in: [interfaces.ts:210](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L210) diff --git a/docs/sdk/typescript/interfaces/interfaces/ITransaction.md b/docs/sdk/typescript/interfaces/interfaces/ITransaction.md index cd9a5fa851..656c7ab984 100644 --- a/docs/sdk/typescript/interfaces/interfaces/ITransaction.md +++ b/docs/sdk/typescript/interfaces/interfaces/ITransaction.md @@ -6,11 +6,7 @@ # Interface: ITransaction -<<<<<<< HEAD -Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L161) -======= -Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L151) ->>>>>>> develop +Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L166) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/ > **block**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L162) -======= -Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L152) ->>>>>>> develop +Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L167) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/ > `optional` **escrow**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L170) -======= -Defined in: [interfaces.ts:160](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L160) ->>>>>>> develop +Defined in: [interfaces.ts:175](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L175) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:160](https://github.com/humanprotocol/human-protocol/ > **from**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:164](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L164) -======= -Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L154) ->>>>>>> develop +Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L169) *** @@ -54,11 +38,7 @@ Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/ > **internalTransactions**: [`InternalTransaction`](InternalTransaction.md)[] -<<<<<<< HEAD -Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L172) -======= -Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L162) ->>>>>>> develop +Defined in: [interfaces.ts:177](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L177) *** @@ -66,11 +46,7 @@ Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/ > **method**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L168) -======= -Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L158) ->>>>>>> develop +Defined in: [interfaces.ts:173](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L173) *** @@ -78,11 +54,7 @@ Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/ > `optional` **receiver**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L169) -======= -Defined in: [interfaces.ts:159](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L159) ->>>>>>> develop +Defined in: [interfaces.ts:174](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L174) *** @@ -90,11 +62,7 @@ Defined in: [interfaces.ts:159](https://github.com/humanprotocol/human-protocol/ > **timestamp**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L166) -======= -Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L156) ->>>>>>> develop +Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L171) *** @@ -102,11 +70,7 @@ Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/ > **to**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L165) -======= -Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L155) ->>>>>>> develop +Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L170) *** @@ -114,11 +78,7 @@ Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/ > `optional` **token**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L171) -======= -Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L161) ->>>>>>> develop +Defined in: [interfaces.ts:176](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L176) *** @@ -126,11 +86,7 @@ Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/ > **txHash**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:163](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L163) -======= -Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L153) ->>>>>>> develop +Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L168) *** @@ -138,8 +94,4 @@ Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/ > **value**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L167) -======= -Defined in: [interfaces.ts:157](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L157) ->>>>>>> develop +Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L172) diff --git a/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md b/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md index ede8520502..3013f3c86f 100644 --- a/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md @@ -6,11 +6,7 @@ # Interface: ITransactionsFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:175](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L175) -======= -Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L165) ->>>>>>> develop +Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:176](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L176) -======= -Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L166) ->>>>>>> develop +Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/ > `optional` **endBlock**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L178) -======= -Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L168) ->>>>>>> develop +Defined in: [interfaces.ts:183](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L183) *** @@ -46,11 +34,7 @@ Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/ > `optional` **endDate**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) -======= -Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L170) ->>>>>>> develop +Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L185) *** @@ -58,11 +42,7 @@ Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/ > `optional` **escrow**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L184) -======= -Defined in: [interfaces.ts:174](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L174) ->>>>>>> develop +Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) *** @@ -70,11 +50,7 @@ Defined in: [interfaces.ts:174](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -86,11 +62,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **fromAddress**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) -======= -Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L171) ->>>>>>> develop +Defined in: [interfaces.ts:186](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L186) *** @@ -98,11 +70,7 @@ Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/ > `optional` **method**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:183](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L183) -======= -Defined in: [interfaces.ts:173](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L173) ->>>>>>> develop +Defined in: [interfaces.ts:188](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L188) *** @@ -110,11 +78,7 @@ Defined in: [interfaces.ts:173](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -126,11 +90,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from @@ -142,11 +102,7 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/ > `optional` **startBlock**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:177](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L177) -======= -Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L167) ->>>>>>> develop +Defined in: [interfaces.ts:182](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L182) *** @@ -154,11 +110,7 @@ Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/ > `optional` **startDate**: `Date` -<<<<<<< HEAD -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) -======= -Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L169) ->>>>>>> develop +Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L184) *** @@ -166,11 +118,7 @@ Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/ > `optional` **toAddress**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:182](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L182) -======= -Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L172) ->>>>>>> develop +Defined in: [interfaces.ts:187](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L187) *** @@ -178,8 +126,4 @@ Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/ > `optional` **token**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L185) -======= -Defined in: [interfaces.ts:175](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L175) ->>>>>>> develop +Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) diff --git a/docs/sdk/typescript/interfaces/interfaces/IWorker.md b/docs/sdk/typescript/interfaces/interfaces/IWorker.md index a0990edea6..72be9b3fcf 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IWorker.md +++ b/docs/sdk/typescript/interfaces/interfaces/IWorker.md @@ -6,11 +6,7 @@ # Interface: IWorker -<<<<<<< HEAD -Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L209) -======= -Defined in: [interfaces.ts:199](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L199) ->>>>>>> develop +Defined in: [interfaces.ts:214](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L214) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:199](https://github.com/humanprotocol/human-protocol/ > **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:211](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L211) -======= -Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L201) ->>>>>>> develop +Defined in: [interfaces.ts:216](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L216) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/ > **id**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:210](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L210) -======= -Defined in: [interfaces.ts:200](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L200) ->>>>>>> develop +Defined in: [interfaces.ts:215](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L215) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:200](https://github.com/humanprotocol/human-protocol/ > **payoutCount**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:213](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L213) -======= -Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L203) ->>>>>>> develop +Defined in: [interfaces.ts:218](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L218) *** @@ -54,8 +38,4 @@ Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/ > **totalHMTAmountReceived**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:212](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L212) -======= -Defined in: [interfaces.ts:202](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L202) ->>>>>>> develop +Defined in: [interfaces.ts:217](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L217) diff --git a/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md b/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md index 801d172a7d..77c6439e95 100644 --- a/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md +++ b/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md @@ -6,11 +6,7 @@ # Interface: IWorkersFilter -<<<<<<< HEAD -Defined in: [interfaces.ts:216](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L216) -======= -Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L206) ->>>>>>> develop +Defined in: [interfaces.ts:221](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L221) ## Extends @@ -22,11 +18,7 @@ Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/ > `optional` **address**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:218](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L218) -======= -Defined in: [interfaces.ts:208](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L208) ->>>>>>> develop +Defined in: [interfaces.ts:223](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L223) *** @@ -34,11 +26,7 @@ Defined in: [interfaces.ts:208](https://github.com/humanprotocol/human-protocol/ > **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:217](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L217) -======= -Defined in: [interfaces.ts:207](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L207) ->>>>>>> develop +Defined in: [interfaces.ts:222](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L222) *** @@ -46,11 +34,7 @@ Defined in: [interfaces.ts:207](https://github.com/humanprotocol/human-protocol/ > `optional` **first**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189) -======= -Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179) ->>>>>>> develop +Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) #### Inherited from @@ -62,11 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/ > `optional` **orderBy**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:219](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L219) -======= -Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L209) ->>>>>>> develop +Defined in: [interfaces.ts:224](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L224) *** @@ -74,11 +54,7 @@ Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/ > `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md) -<<<<<<< HEAD -Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191) -======= -Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181) ->>>>>>> develop +Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) #### Inherited from @@ -90,11 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/ > `optional` **skip**: `number` -<<<<<<< HEAD -Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190) -======= -Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180) ->>>>>>> develop +Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) #### Inherited from diff --git a/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md b/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md index 01b259d2a8..ac2f6ddef9 100644 --- a/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md +++ b/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md @@ -6,11 +6,7 @@ # Interface: InternalTransaction -<<<<<<< HEAD -Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L151) -======= -Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L141) ->>>>>>> develop +Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L156) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/ > `optional` **escrow**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:157](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L157) -======= -Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L147) ->>>>>>> develop +Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L162) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/ > **from**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L152) -======= -Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L142) ->>>>>>> develop +Defined in: [interfaces.ts:157](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L157) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/ > **method**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L155) -======= -Defined in: [interfaces.ts:145](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L145) ->>>>>>> develop +Defined in: [interfaces.ts:160](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L160) *** @@ -54,11 +38,7 @@ Defined in: [interfaces.ts:145](https://github.com/humanprotocol/human-protocol/ > `optional` **receiver**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L156) -======= -Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L146) ->>>>>>> develop +Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L161) *** @@ -66,11 +46,7 @@ Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/ > **to**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L153) -======= -Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L143) ->>>>>>> develop +Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L158) *** @@ -78,11 +54,7 @@ Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/ > `optional` **token**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L158) -======= -Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L148) ->>>>>>> develop +Defined in: [interfaces.ts:163](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L163) *** @@ -90,8 +62,4 @@ Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/ > **value**: `string` -<<<<<<< HEAD -Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L154) -======= -Defined in: [interfaces.ts:144](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L144) ->>>>>>> develop +Defined in: [interfaces.ts:159](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L159) diff --git a/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md b/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md index ac2c0f67c8..023f73a8b5 100644 --- a/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md +++ b/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md @@ -6,11 +6,7 @@ # Interface: StakerInfo -<<<<<<< HEAD -Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194) -======= -Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L184) ->>>>>>> develop +Defined in: [interfaces.ts:199](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L199) ## Properties @@ -18,11 +14,7 @@ Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/ > **lockedAmount**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196) -======= -Defined in: [interfaces.ts:186](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L186) ->>>>>>> develop +Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L201) *** @@ -30,11 +22,7 @@ Defined in: [interfaces.ts:186](https://github.com/humanprotocol/human-protocol/ > **lockedUntil**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:197](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L197) -======= -Defined in: [interfaces.ts:187](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L187) ->>>>>>> develop +Defined in: [interfaces.ts:202](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L202) *** @@ -42,11 +30,7 @@ Defined in: [interfaces.ts:187](https://github.com/humanprotocol/human-protocol/ > **stakedAmount**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195) -======= -Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L185) ->>>>>>> develop +Defined in: [interfaces.ts:200](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L200) *** @@ -54,8 +38,4 @@ Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/ > **withdrawableAmount**: `bigint` -<<<<<<< HEAD -Defined in: [interfaces.ts:198](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L198) -======= -Defined in: [interfaces.ts:188](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L188) ->>>>>>> develop +Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L203) diff --git a/docs/sdk/typescript/kvstore/classes/KVStoreClient.md b/docs/sdk/typescript/kvstore/classes/KVStoreClient.md index 89565532a6..60371e28b9 100644 --- a/docs/sdk/typescript/kvstore/classes/KVStoreClient.md +++ b/docs/sdk/typescript/kvstore/classes/KVStoreClient.md @@ -6,11 +6,7 @@ # Class: KVStoreClient -<<<<<<< HEAD -Defined in: [kvstore.ts:99](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L99) -======= -Defined in: [kvstore.ts:99](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L99) ->>>>>>> develop +Defined in: [kvstore.ts:99](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L99) ## Introduction @@ -90,11 +86,7 @@ const kvstoreClient = await KVStoreClient.build(provider); > **new KVStoreClient**(`runner`, `networkData`): `KVStoreClient` -<<<<<<< HEAD -Defined in: [kvstore.ts:108](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L108) -======= -Defined in: [kvstore.ts:108](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L108) ->>>>>>> develop +Defined in: [kvstore.ts:108](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L108) **KVStoreClient constructor** @@ -126,11 +118,7 @@ The network information required to connect to the KVStore contract > **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md) -<<<<<<< HEAD -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) -======= -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) ->>>>>>> develop +Defined in: [base.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L14) #### Inherited from @@ -142,11 +130,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c > `protected` **runner**: `ContractRunner` -<<<<<<< HEAD -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) -======= -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) ->>>>>>> develop +Defined in: [base.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L13) #### Inherited from @@ -154,11 +138,40 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c ## Methods +### applyTxDefaults() + +> `protected` **applyTxDefaults**(`txOptions`): `Overrides` + +Defined in: [base.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L35) + +Internal helper to enrich transaction overrides with network specific defaults. + +Aurora networks use a fixed gas price. We always override any user provided +gasPrice with the canonical DEFAULT_AURORA_GAS_PRICE to avoid mismatches +or tx failures due to an unexpected value. For other networks the user +supplied fee parameters are left untouched. + +#### Parameters + +##### txOptions + +`Overrides` = `{}` + +#### Returns + +`Overrides` + +#### Inherited from + +[`BaseEthersClient`](../../base/classes/BaseEthersClient.md).[`applyTxDefaults`](../../base/classes/BaseEthersClient.md#applytxdefaults) + +*** + ### get() > **get**(`address`, `key`): `Promise`\<`string`\> -Defined in: [kvstore.ts:308](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L308) +Defined in: [kvstore.ts:316](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L316) Gets the value of a key-value pair in the contract. @@ -204,11 +217,7 @@ const value = await kvstoreClient.get('0xf39Fd6e51aad88F6F4ce6aB8827279cffFb9226 > **set**(`key`, `value`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:171](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L171) -======= -Defined in: [kvstore.ts:171](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L171) ->>>>>>> develop +Defined in: [kvstore.ts:171](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L171) This function sets a key-value pair associated with the address that submits the transaction. @@ -262,11 +271,7 @@ await kvstoreClient.set('Role', 'RecordingOracle'); > **setBulk**(`keys`, `values`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:214](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L214) -======= -Defined in: [kvstore.ts:214](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L214) ->>>>>>> develop +Defined in: [kvstore.ts:216](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L216) This function sets key-value pairs in bulk associated with the address that submits the transaction. @@ -322,11 +327,7 @@ await kvstoreClient.setBulk(keys, values); > **setFileUrlAndHash**(`url`, `urlKey`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:257](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L257) -======= -Defined in: [kvstore.ts:257](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L257) ->>>>>>> develop +Defined in: [kvstore.ts:265](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L265) Sets a URL value for the address that submits the transaction, and its hash. @@ -379,11 +380,7 @@ await kvstoreClient.setFileUrlAndHash('linkedin.com/example', 'linkedin_url'); > `static` **build**(`runner`): `Promise`\<`KVStoreClient`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:126](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L126) -======= -Defined in: [kvstore.ts:126](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L126) ->>>>>>> develop +Defined in: [kvstore.ts:126](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L126) Creates an instance of KVStoreClient from a runner. diff --git a/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md b/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md index 1d9ea0480c..7341d2d95d 100644 --- a/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md +++ b/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md @@ -6,11 +6,7 @@ # Class: KVStoreUtils -<<<<<<< HEAD -Defined in: [kvstore.ts:318](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L318) -======= -Defined in: [kvstore.ts:354](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L354) ->>>>>>> develop +Defined in: [kvstore.ts:362](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L362) ## Introduction @@ -59,11 +55,7 @@ const KVStoreAddresses = await KVStoreUtils.getKVStoreData( > `static` **get**(`chainId`, `address`, `key`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:389](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L389) -======= -Defined in: [kvstore.ts:425](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L425) ->>>>>>> develop +Defined in: [kvstore.ts:433](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L433) Gets the value of a key-value pair in the KVStore using the subgraph. @@ -124,11 +116,7 @@ console.log(value); > `static` **getFileUrlAndVerifyHash**(`chainId`, `address`, `urlKey`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:436](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L436) -======= -Defined in: [kvstore.ts:472](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L472) ->>>>>>> develop +Defined in: [kvstore.ts:480](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L480) Gets the URL value of the given entity, and verifies its hash. @@ -176,11 +164,7 @@ console.log(url); > `static` **getKVStoreData**(`chainId`, `address`): `Promise`\<[`IKVStore`](../../interfaces/interfaces/IKVStore.md)[]\> -<<<<<<< HEAD -Defined in: [kvstore.ts:337](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L337) -======= -Defined in: [kvstore.ts:373](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L373) ->>>>>>> develop +Defined in: [kvstore.ts:381](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L381) This function returns the KVStore data for a given address. @@ -227,11 +211,7 @@ console.log(kvStoreData); > `static` **getPublicKey**(`chainId`, `address`): `Promise`\<`string`\> -<<<<<<< HEAD -Defined in: [kvstore.ts:496](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L496) -======= -Defined in: [kvstore.ts:532](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L532) ->>>>>>> develop +Defined in: [kvstore.ts:540](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L540) Gets the public key of the given entity, and verifies its hash. diff --git a/docs/sdk/typescript/operator/classes/OperatorUtils.md b/docs/sdk/typescript/operator/classes/OperatorUtils.md index 471f0de6c4..37e2eecc76 100644 --- a/docs/sdk/typescript/operator/classes/OperatorUtils.md +++ b/docs/sdk/typescript/operator/classes/OperatorUtils.md @@ -6,11 +6,7 @@ # Class: OperatorUtils -<<<<<<< HEAD -Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L27) -======= -Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L27) ->>>>>>> develop +Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L27) ## Constructors @@ -28,11 +24,7 @@ Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blo > `static` **getOperator**(`chainId`, `address`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)\> -<<<<<<< HEAD -Defined in: [operator.ts:43](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L43) -======= -Defined in: [operator.ts:43](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L43) ->>>>>>> develop +Defined in: [operator.ts:43](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L43) This function returns the operator data for the given address. @@ -70,11 +62,7 @@ const operator = await OperatorUtils.getOperator(ChainId.POLYGON_AMOY, '0x62dD51 > `static` **getOperators**(`filter`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)[]\> -<<<<<<< HEAD -Defined in: [operator.ts:86](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L86) -======= -Defined in: [operator.ts:109](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L109) ->>>>>>> develop +Defined in: [operator.ts:86](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L86) This function returns all the operator details of the protocol. @@ -109,11 +97,7 @@ const operators = await OperatorUtils.getOperators(filter); > `static` **getReputationNetworkOperators**(`chainId`, `address`, `role?`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)[]\> -<<<<<<< HEAD -Defined in: [operator.ts:146](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L146) -======= -Defined in: [operator.ts:190](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L190) ->>>>>>> develop +Defined in: [operator.ts:146](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L146) Retrieves the reputation network operators of the specified address. @@ -157,11 +141,7 @@ const operators = await OperatorUtils.getReputationNetworkOperators(ChainId.POLY > `static` **getRewards**(`chainId`, `slasherAddress`): `Promise`\<[`IReward`](../../interfaces/interfaces/IReward.md)[]\> -<<<<<<< HEAD -Defined in: [operator.ts:185](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L185) -======= -Defined in: [operator.ts:244](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L244) ->>>>>>> develop +Defined in: [operator.ts:185](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L185) This function returns information about the rewards for a given slasher address. diff --git a/docs/sdk/typescript/staking/classes/StakingClient.md b/docs/sdk/typescript/staking/classes/StakingClient.md index 9c19561b7e..19f079dd74 100644 --- a/docs/sdk/typescript/staking/classes/StakingClient.md +++ b/docs/sdk/typescript/staking/classes/StakingClient.md @@ -6,11 +6,7 @@ # Class: StakingClient -<<<<<<< HEAD -Defined in: [staking.ts:103](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L103) -======= -Defined in: [staking.ts:97](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L97) ->>>>>>> develop +Defined in: [staking.ts:103](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L103) ## Introduction @@ -90,11 +86,7 @@ const stakingClient = await StakingClient.build(provider); > **new StakingClient**(`runner`, `networkData`): `StakingClient` -<<<<<<< HEAD -Defined in: [staking.ts:114](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L114) -======= -Defined in: [staking.ts:108](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L108) ->>>>>>> develop +Defined in: [staking.ts:114](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L114) **StakingClient constructor** @@ -126,11 +118,7 @@ The network information required to connect to the Staking contract > **escrowFactoryContract**: `EscrowFactory` -<<<<<<< HEAD -Defined in: [staking.ts:106](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L106) -======= -Defined in: [staking.ts:100](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L100) ->>>>>>> develop +Defined in: [staking.ts:106](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L106) *** @@ -138,11 +126,7 @@ Defined in: [staking.ts:100](https://github.com/humanprotocol/human-protocol/blo > **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md) -<<<<<<< HEAD -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) -======= -Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12) ->>>>>>> develop +Defined in: [base.ts:14](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L14) #### Inherited from @@ -154,11 +138,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c > `protected` **runner**: `ContractRunner` -<<<<<<< HEAD -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) -======= -Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11) ->>>>>>> develop +Defined in: [base.ts:13](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L13) #### Inherited from @@ -170,11 +150,7 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/8c > **stakingContract**: `Staking` -<<<<<<< HEAD -Defined in: [staking.ts:105](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L105) -======= -Defined in: [staking.ts:99](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L99) ->>>>>>> develop +Defined in: [staking.ts:105](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L105) *** @@ -182,23 +158,44 @@ Defined in: [staking.ts:99](https://github.com/humanprotocol/human-protocol/blob > **tokenContract**: `HMToken` -<<<<<<< HEAD -Defined in: [staking.ts:104](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L104) -======= -Defined in: [staking.ts:98](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L98) ->>>>>>> develop +Defined in: [staking.ts:104](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L104) ## Methods +### applyTxDefaults() + +> `protected` **applyTxDefaults**(`txOptions`): `Overrides` + +Defined in: [base.ts:35](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L35) + +Internal helper to enrich transaction overrides with network specific defaults. + +Aurora networks use a fixed gas price. We always override any user provided +gasPrice with the canonical DEFAULT_AURORA_GAS_PRICE to avoid mismatches +or tx failures due to an unexpected value. For other networks the user +supplied fee parameters are left untouched. + +#### Parameters + +##### txOptions + +`Overrides` = `{}` + +#### Returns + +`Overrides` + +#### Inherited from + +[`BaseEthersClient`](../../base/classes/BaseEthersClient.md).[`applyTxDefaults`](../../base/classes/BaseEthersClient.md#applytxdefaults) + +*** + ### approveStake() > **approveStake**(`amount`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [staking.ts:199](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L199) -======= -Defined in: [staking.ts:193](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L193) ->>>>>>> develop +Defined in: [staking.ts:199](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L199) This function approves the staking contract to transfer a specified amount of tokens when the user stakes. It increases the allowance for the staking contract. @@ -245,11 +242,7 @@ await stakingClient.approveStake(amount); > **getStakerInfo**(`stakerAddress`): `Promise`\<[`StakerInfo`](../../interfaces/interfaces/StakerInfo.md)\> -<<<<<<< HEAD -Defined in: [staking.ts:441](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L441) -======= -Defined in: [staking.ts:435](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L435) ->>>>>>> develop +Defined in: [staking.ts:453](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L453) Retrieves comprehensive staking information for a staker. @@ -285,11 +278,7 @@ console.log(stakingInfo.tokensStaked); > **slash**(`slasher`, `staker`, `escrowAddress`, `amount`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [staking.ts:379](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L379) -======= -Defined in: [staking.ts:373](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L373) ->>>>>>> develop +Defined in: [staking.ts:391](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L391) This function reduces the allocated amount by a staker in an escrow and transfers those tokens to the reward pool. This allows the slasher to claim them later. @@ -354,11 +343,7 @@ await stakingClient.slash('0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', '0xf39Fd > **stake**(`amount`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [staking.ts:253](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L253) -======= -Defined in: [staking.ts:247](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L247) ->>>>>>> develop +Defined in: [staking.ts:253](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L253) This function stakes a specified amount of tokens on a specific network. @@ -408,11 +393,7 @@ await stakingClient.stake(amount); > **unstake**(`amount`, `txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [staking.ts:297](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L297) -======= -Defined in: [staking.ts:291](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L291) ->>>>>>> develop +Defined in: [staking.ts:302](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L302) This function unstakes tokens from staking contract. The unstaked tokens stay locked for a period of time. @@ -461,11 +442,7 @@ await stakingClient.unstake(amount); > **withdraw**(`txOptions?`): `Promise`\<`void`\> -<<<<<<< HEAD -Defined in: [staking.ts:342](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L342) -======= -Defined in: [staking.ts:336](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L336) ->>>>>>> develop +Defined in: [staking.ts:352](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L352) This function withdraws unstaked and non-locked tokens from staking contract to the user wallet. @@ -507,11 +484,7 @@ await stakingClient.withdraw(); > `static` **build**(`runner`): `Promise`\<`StakingClient`\> -<<<<<<< HEAD -Defined in: [staking.ts:142](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L142) -======= -Defined in: [staking.ts:136](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L136) ->>>>>>> develop +Defined in: [staking.ts:142](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L142) Creates an instance of StakingClient from a Runner. diff --git a/docs/sdk/typescript/staking/classes/StakingUtils.md b/docs/sdk/typescript/staking/classes/StakingUtils.md index 3c3722ea2f..0a829a89a7 100644 --- a/docs/sdk/typescript/staking/classes/StakingUtils.md +++ b/docs/sdk/typescript/staking/classes/StakingUtils.md @@ -6,7 +6,7 @@ # Class: StakingUtils -Defined in: [staking.ts:479](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L479) +Defined in: [staking.ts:491](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L491) Utility class for Staking-related subgraph queries. @@ -26,7 +26,7 @@ Utility class for Staking-related subgraph queries. > `static` **getStaker**(`chainId`, `stakerAddress`): `Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)\> -Defined in: [staking.ts:487](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L487) +Defined in: [staking.ts:499](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L499) Gets staking info for a staker from the subgraph. @@ -56,7 +56,7 @@ Staker info from subgraph > `static` **getStakers**(`filter`): `Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)[]\> -Defined in: [staking.ts:518](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L518) +Defined in: [staking.ts:530](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L530) Gets all stakers from the subgraph with filters, pagination and ordering. diff --git a/docs/sdk/typescript/statistics/classes/StatisticsClient.md b/docs/sdk/typescript/statistics/classes/StatisticsClient.md index aba9d8b380..9130af84bb 100644 --- a/docs/sdk/typescript/statistics/classes/StatisticsClient.md +++ b/docs/sdk/typescript/statistics/classes/StatisticsClient.md @@ -6,11 +6,7 @@ # Class: StatisticsClient -<<<<<<< HEAD -Defined in: [statistics.ts:58](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L58) -======= -Defined in: [statistics.ts:58](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L58) ->>>>>>> develop +Defined in: [statistics.ts:58](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L58) ## Introduction @@ -49,11 +45,7 @@ const statisticsClient = new StatisticsClient(NETWORKS[ChainId.POLYGON_AMOY]); > **new StatisticsClient**(`networkData`): `StatisticsClient` -<<<<<<< HEAD -Defined in: [statistics.ts:67](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L67) -======= -Defined in: [statistics.ts:67](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L67) ->>>>>>> develop +Defined in: [statistics.ts:67](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L67) **StatisticsClient constructor** @@ -75,11 +67,7 @@ The network information required to connect to the Statistics contract > **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md) -<<<<<<< HEAD -Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L59) -======= -Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L59) ->>>>>>> develop +Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L59) *** @@ -87,11 +75,7 @@ Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/b > **subgraphUrl**: `string` -<<<<<<< HEAD -Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L60) -======= -Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L60) ->>>>>>> develop +Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L60) ## Methods @@ -99,11 +83,7 @@ Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/b > **getEscrowStatistics**(`filter`): `Promise`\<[`EscrowStatistics`](../../graphql/types/type-aliases/EscrowStatistics.md)\> -<<<<<<< HEAD -Defined in: [statistics.ts:120](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L120) -======= -Defined in: [statistics.ts:120](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L120) ->>>>>>> develop +Defined in: [statistics.ts:120](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L120) This function returns the statistical data of escrows. @@ -169,11 +149,7 @@ const escrowStatisticsApril = await statisticsClient.getEscrowStatistics({ > **getHMTDailyData**(`filter`): `Promise`\<[`DailyHMTData`](../../graphql/types/type-aliases/DailyHMTData.md)[]\> -<<<<<<< HEAD -Defined in: [statistics.ts:478](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L478) -======= -Defined in: [statistics.ts:478](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L478) ->>>>>>> develop +Defined in: [statistics.ts:478](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L478) This function returns the statistical data of HMToken day by day. @@ -238,11 +214,7 @@ console.log('HMT statistics from 5/8 - 6/8:', hmtStatisticsRange); > **getHMTHolders**(`params`): `Promise`\<[`HMTHolder`](../../graphql/types/type-aliases/HMTHolder.md)[]\> -<<<<<<< HEAD -Defined in: [statistics.ts:407](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L407) -======= -Defined in: [statistics.ts:407](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L407) ->>>>>>> develop +Defined in: [statistics.ts:407](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L407) This function returns the holders of the HMToken with optional filters and ordering. @@ -285,11 +257,7 @@ console.log('HMT holders:', hmtHolders.map((h) => ({ > **getHMTStatistics**(): `Promise`\<[`HMTStatistics`](../../graphql/types/type-aliases/HMTStatistics.md)\> -<<<<<<< HEAD -Defined in: [statistics.ts:364](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L364) -======= -Defined in: [statistics.ts:364](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L364) ->>>>>>> develop +Defined in: [statistics.ts:364](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L364) This function returns the statistical data of HMToken. @@ -328,11 +296,7 @@ console.log('HMT statistics:', { > **getPaymentStatistics**(`filter`): `Promise`\<[`PaymentStatistics`](../../graphql/types/type-aliases/PaymentStatistics.md)\> -<<<<<<< HEAD -Defined in: [statistics.ts:300](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L300) -======= -Defined in: [statistics.ts:300](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L300) ->>>>>>> develop +Defined in: [statistics.ts:300](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L300) This function returns the statistical data of payments. @@ -416,11 +380,7 @@ console.log( > **getWorkerStatistics**(`filter`): `Promise`\<[`WorkerStatistics`](../../graphql/types/type-aliases/WorkerStatistics.md)\> -<<<<<<< HEAD -Defined in: [statistics.ts:204](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L204) -======= -Defined in: [statistics.ts:204](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L204) ->>>>>>> develop +Defined in: [statistics.ts:204](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L204) This function returns the statistical data of workers. diff --git a/docs/sdk/typescript/storage/classes/StorageClient.md b/docs/sdk/typescript/storage/classes/StorageClient.md index 53ab4c3f17..0321379e0d 100644 --- a/docs/sdk/typescript/storage/classes/StorageClient.md +++ b/docs/sdk/typescript/storage/classes/StorageClient.md @@ -6,11 +6,7 @@ # ~~Class: StorageClient~~ -<<<<<<< HEAD -Defined in: [storage.ts:63](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L63) -======= -Defined in: [storage.ts:63](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L63) ->>>>>>> develop +Defined in: [storage.ts:63](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L63) ## Deprecated @@ -65,11 +61,7 @@ const storageClient = new StorageClient(params, credentials); > **new StorageClient**(`params`, `credentials?`): `StorageClient` -<<<<<<< HEAD -Defined in: [storage.ts:73](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L73) -======= -Defined in: [storage.ts:73](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L73) ->>>>>>> develop +Defined in: [storage.ts:73](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L73) **Storage client constructor** @@ -97,11 +89,7 @@ Optional. Cloud storage access data. If credentials are not provided - use anony > **bucketExists**(`bucket`): `Promise`\<`boolean`\> -<<<<<<< HEAD -Defined in: [storage.ts:262](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L262) -======= -Defined in: [storage.ts:262](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L262) ->>>>>>> develop +Defined in: [storage.ts:262](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L262) This function checks if a bucket exists. @@ -145,11 +133,7 @@ const exists = await storageClient.bucketExists('bucket-name'); > **downloadFiles**(`keys`, `bucket`): `Promise`\<`any`[]\> -<<<<<<< HEAD -Defined in: [storage.ts:112](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L112) -======= -Defined in: [storage.ts:112](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L112) ->>>>>>> develop +Defined in: [storage.ts:112](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L112) This function downloads files from a bucket. @@ -197,11 +181,7 @@ const files = await storageClient.downloadFiles(keys, 'bucket-name'); > **listObjects**(`bucket`): `Promise`\<`string`[]\> -<<<<<<< HEAD -Defined in: [storage.ts:292](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L292) -======= -Defined in: [storage.ts:292](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L292) ->>>>>>> develop +Defined in: [storage.ts:292](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L292) This function lists all file names contained in the bucket. @@ -245,11 +225,7 @@ const fileNames = await storageClient.listObjects('bucket-name'); > **uploadFiles**(`files`, `bucket`): `Promise`\<[`UploadFile`](../../types/type-aliases/UploadFile.md)[]\> -<<<<<<< HEAD -Defined in: [storage.ts:198](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L198) -======= -Defined in: [storage.ts:198](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L198) ->>>>>>> develop +Defined in: [storage.ts:198](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L198) This function uploads files to a bucket. @@ -302,11 +278,7 @@ const uploadedFiles = await storageClient.uploadFiles(files, 'bucket-name'); > `static` **downloadFileFromUrl**(`url`): `Promise`\<`any`\> -<<<<<<< HEAD -Defined in: [storage.ts:146](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L146) -======= -Defined in: [storage.ts:146](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L146) ->>>>>>> develop +Defined in: [storage.ts:146](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L146) This function downloads files from a URL. diff --git a/docs/sdk/typescript/transaction/classes/TransactionUtils.md b/docs/sdk/typescript/transaction/classes/TransactionUtils.md index a90341de15..b9fed9eaa1 100644 --- a/docs/sdk/typescript/transaction/classes/TransactionUtils.md +++ b/docs/sdk/typescript/transaction/classes/TransactionUtils.md @@ -6,11 +6,7 @@ # Class: TransactionUtils -<<<<<<< HEAD -Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L18) -======= -Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L18) ->>>>>>> develop +Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L18) ## Constructors @@ -28,11 +24,7 @@ Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/ > `static` **getTransaction**(`chainId`, `hash`): `Promise`\<[`ITransaction`](../../interfaces/interfaces/ITransaction.md)\> -<<<<<<< HEAD -Defined in: [transaction.ts:50](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L50) -======= -Defined in: [transaction.ts:50](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L50) ->>>>>>> develop +Defined in: [transaction.ts:50](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L50) This function returns the transaction data for the given hash. @@ -86,11 +78,7 @@ const transaction = await TransactionUtils.getTransaction(ChainId.POLYGON, '0x62 > `static` **getTransactions**(`filter`): `Promise`\<[`ITransaction`](../../interfaces/interfaces/ITransaction.md)[]\> -<<<<<<< HEAD -Defined in: [transaction.ts:132](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L132) -======= -Defined in: [transaction.ts:132](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L132) ->>>>>>> develop +Defined in: [transaction.ts:132](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L132) This function returns all transaction details based on the provided filter. diff --git a/docs/sdk/typescript/types/enumerations/EscrowStatus.md b/docs/sdk/typescript/types/enumerations/EscrowStatus.md index 84a529d494..9b068d50ea 100644 --- a/docs/sdk/typescript/types/enumerations/EscrowStatus.md +++ b/docs/sdk/typescript/types/enumerations/EscrowStatus.md @@ -6,11 +6,7 @@ # Enumeration: EscrowStatus -<<<<<<< HEAD -Defined in: [types.ts:8](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L8) -======= -Defined in: [types.ts:8](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L8) ->>>>>>> develop +Defined in: [types.ts:8](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L8) Enum for escrow statuses. @@ -20,11 +16,7 @@ Enum for escrow statuses. > **Cancelled**: `5` -<<<<<<< HEAD -Defined in: [types.ts:32](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L32) -======= -Defined in: [types.ts:32](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L32) ->>>>>>> develop +Defined in: [types.ts:32](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L32) Escrow is cancelled. @@ -34,11 +26,7 @@ Escrow is cancelled. > **Complete**: `4` -<<<<<<< HEAD -Defined in: [types.ts:28](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L28) -======= -Defined in: [types.ts:28](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L28) ->>>>>>> develop +Defined in: [types.ts:28](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L28) Escrow is finished. @@ -48,11 +36,7 @@ Escrow is finished. > **Launched**: `0` -<<<<<<< HEAD -Defined in: [types.ts:12](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L12) -======= -Defined in: [types.ts:12](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L12) ->>>>>>> develop +Defined in: [types.ts:12](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L12) Escrow is launched. @@ -62,11 +46,7 @@ Escrow is launched. > **Paid**: `3` -<<<<<<< HEAD -Defined in: [types.ts:24](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L24) -======= -Defined in: [types.ts:24](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L24) ->>>>>>> develop +Defined in: [types.ts:24](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L24) Escrow is fully paid. @@ -76,11 +56,7 @@ Escrow is fully paid. > **Partial**: `2` -<<<<<<< HEAD -Defined in: [types.ts:20](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L20) -======= -Defined in: [types.ts:20](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L20) ->>>>>>> develop +Defined in: [types.ts:20](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L20) Escrow is partially paid out. @@ -90,11 +66,7 @@ Escrow is partially paid out. > **Pending**: `1` -<<<<<<< HEAD -Defined in: [types.ts:16](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L16) -======= -Defined in: [types.ts:16](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L16) ->>>>>>> develop +Defined in: [types.ts:16](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L16) Escrow is funded, and waiting for the results to be submitted. @@ -104,6 +76,6 @@ Escrow is funded, and waiting for the results to be submitted. > **ToCancel**: `6` -Defined in: [types.ts:36](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L36) +Defined in: [types.ts:36](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L36) Escrow is cancelled. diff --git a/docs/sdk/typescript/types/type-aliases/CancellationRefund.md b/docs/sdk/typescript/types/type-aliases/CancellationRefund.md index e245741b37..971fc81208 100644 --- a/docs/sdk/typescript/types/type-aliases/CancellationRefund.md +++ b/docs/sdk/typescript/types/type-aliases/CancellationRefund.md @@ -8,7 +8,7 @@ > **CancellationRefund** = `object` -Defined in: [types.ts:193](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L193) +Defined in: [types.ts:193](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L193) Represents a cancellation refund event. @@ -18,7 +18,7 @@ Represents a cancellation refund event. > **amount**: `bigint` -Defined in: [types.ts:209](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L209) +Defined in: [types.ts:209](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L209) The amount refunded to the receiver. @@ -28,7 +28,7 @@ The amount refunded to the receiver. > **block**: `number` -Defined in: [types.ts:214](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L214) +Defined in: [types.ts:214](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L214) The block number in which the cancellation refund event occurred. @@ -38,7 +38,7 @@ The block number in which the cancellation refund event occurred. > **escrowAddress**: `string` -Defined in: [types.ts:201](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L201) +Defined in: [types.ts:201](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L201) The address of the escrow associated with the cancellation refund. @@ -48,7 +48,7 @@ The address of the escrow associated with the cancellation refund. > **id**: `string` -Defined in: [types.ts:197](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L197) +Defined in: [types.ts:197](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L197) Unique identifier of the cancellation refund event. @@ -58,7 +58,7 @@ Unique identifier of the cancellation refund event. > **receiver**: `string` -Defined in: [types.ts:205](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L205) +Defined in: [types.ts:205](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L205) The address of the receiver who received the refund. @@ -68,7 +68,7 @@ The address of the receiver who received the refund. > **timestamp**: `number` -Defined in: [types.ts:218](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L218) +Defined in: [types.ts:218](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L218) The timestamp when the cancellation refund event occurred (in UNIX format). @@ -78,6 +78,6 @@ The timestamp when the cancellation refund event occurred (in UNIX format). > **txHash**: `string` -Defined in: [types.ts:222](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L222) +Defined in: [types.ts:222](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L222) The transaction hash of the cancellation refund event. diff --git a/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md b/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md index abf39b4b96..79bca8a1f4 100644 --- a/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md +++ b/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md @@ -8,38 +8,17 @@ > **EscrowWithdraw** = `object` -<<<<<<< HEAD -Defined in: [types.ts:149](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L149) -======= -Defined in: [types.ts:159](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L159) ->>>>>>> develop +Defined in: [types.ts:149](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L149) Represents the response data for an escrow withdrawal. ## Properties -<<<<<<< HEAD -======= -### amountWithdrawn - -> **amountWithdrawn**: `bigint` - -Defined in: [types.ts:171](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L171) - -The amount withdrawn from the escrow. - -*** - ->>>>>>> develop ### tokenAddress > **tokenAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:157](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L157) -======= -Defined in: [types.ts:167](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L167) ->>>>>>> develop +Defined in: [types.ts:157](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L157) The address of the token used for the withdrawal. @@ -49,11 +28,7 @@ The address of the token used for the withdrawal. > **txHash**: `string` -<<<<<<< HEAD -Defined in: [types.ts:153](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L153) -======= -Defined in: [types.ts:163](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L163) ->>>>>>> develop +Defined in: [types.ts:153](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L153) The hash of the transaction associated with the escrow withdrawal. @@ -63,6 +38,6 @@ The hash of the transaction associated with the escrow withdrawal. > **withdrawnAmount**: `bigint` -Defined in: [types.ts:161](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L161) +Defined in: [types.ts:161](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L161) The amount withdrawn from the escrow. diff --git a/docs/sdk/typescript/types/type-aliases/NetworkData.md b/docs/sdk/typescript/types/type-aliases/NetworkData.md index 2b4dd058ad..85a969f922 100644 --- a/docs/sdk/typescript/types/type-aliases/NetworkData.md +++ b/docs/sdk/typescript/types/type-aliases/NetworkData.md @@ -8,11 +8,7 @@ > **NetworkData** = `object` -<<<<<<< HEAD -Defined in: [types.ts:99](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L99) -======= -Defined in: [types.ts:95](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L95) ->>>>>>> develop +Defined in: [types.ts:99](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L99) Network data @@ -22,11 +18,7 @@ Network data > **chainId**: `number` -<<<<<<< HEAD -Defined in: [types.ts:103](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L103) -======= -Defined in: [types.ts:99](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L99) ->>>>>>> develop +Defined in: [types.ts:103](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L103) Network chain id @@ -36,11 +28,7 @@ Network chain id > **factoryAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:119](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L119) -======= -Defined in: [types.ts:115](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L115) ->>>>>>> develop +Defined in: [types.ts:119](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L119) Escrow Factory contract address @@ -50,11 +38,7 @@ Escrow Factory contract address > **hmtAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:115](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L115) -======= -Defined in: [types.ts:111](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L111) ->>>>>>> develop +Defined in: [types.ts:115](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L115) HMT Token contract address @@ -64,11 +48,7 @@ HMT Token contract address > **kvstoreAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:127](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L127) -======= -Defined in: [types.ts:123](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L123) ->>>>>>> develop +Defined in: [types.ts:127](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L127) KVStore contract address @@ -78,11 +58,7 @@ KVStore contract address > **oldFactoryAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:143](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L143) -======= -Defined in: [types.ts:139](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L139) ->>>>>>> develop +Defined in: [types.ts:143](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L143) Old Escrow Factory contract address @@ -92,11 +68,7 @@ Old Escrow Factory contract address > **oldSubgraphUrl**: `string` -<<<<<<< HEAD -Defined in: [types.ts:139](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L139) -======= -Defined in: [types.ts:135](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L135) ->>>>>>> develop +Defined in: [types.ts:139](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L139) Old subgraph URL @@ -106,11 +78,7 @@ Old subgraph URL > **scanUrl**: `string` -<<<<<<< HEAD -Defined in: [types.ts:111](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L111) -======= -Defined in: [types.ts:107](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L107) ->>>>>>> develop +Defined in: [types.ts:111](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L111) Network scanner URL @@ -120,11 +88,7 @@ Network scanner URL > **stakingAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:123](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L123) -======= -Defined in: [types.ts:119](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L119) ->>>>>>> develop +Defined in: [types.ts:123](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L123) Staking contract address @@ -134,11 +98,7 @@ Staking contract address > **subgraphUrl**: `string` -<<<<<<< HEAD -Defined in: [types.ts:131](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L131) -======= -Defined in: [types.ts:127](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L127) ->>>>>>> develop +Defined in: [types.ts:131](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L131) Subgraph URL @@ -148,11 +108,7 @@ Subgraph URL > **subgraphUrlApiKey**: `string` -<<<<<<< HEAD -Defined in: [types.ts:135](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L135) -======= -Defined in: [types.ts:131](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L131) ->>>>>>> develop +Defined in: [types.ts:135](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L135) Subgraph URL API key @@ -162,10 +118,6 @@ Subgraph URL API key > **title**: `string` -<<<<<<< HEAD -Defined in: [types.ts:107](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L107) -======= -Defined in: [types.ts:103](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L103) ->>>>>>> develop +Defined in: [types.ts:107](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L107) Network title diff --git a/docs/sdk/typescript/types/type-aliases/Payout.md b/docs/sdk/typescript/types/type-aliases/Payout.md index 7e36020801..957d13b96f 100644 --- a/docs/sdk/typescript/types/type-aliases/Payout.md +++ b/docs/sdk/typescript/types/type-aliases/Payout.md @@ -8,11 +8,7 @@ > **Payout** = `object` -<<<<<<< HEAD -Defined in: [types.ts:167](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L167) -======= -Defined in: [types.ts:177](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L177) ->>>>>>> develop +Defined in: [types.ts:167](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L167) Represents a payout from an escrow. @@ -22,11 +18,7 @@ Represents a payout from an escrow. > **amount**: `bigint` -<<<<<<< HEAD -Defined in: [types.ts:183](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L183) -======= -Defined in: [types.ts:193](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L193) ->>>>>>> develop +Defined in: [types.ts:183](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L183) The amount paid to the recipient. @@ -36,11 +28,7 @@ The amount paid to the recipient. > **createdAt**: `number` -<<<<<<< HEAD -Defined in: [types.ts:187](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L187) -======= -Defined in: [types.ts:197](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L197) ->>>>>>> develop +Defined in: [types.ts:187](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L187) The timestamp when the payout was created (in UNIX format). @@ -50,11 +38,7 @@ The timestamp when the payout was created (in UNIX format). > **escrowAddress**: `string` -<<<<<<< HEAD -Defined in: [types.ts:175](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L175) -======= -Defined in: [types.ts:185](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L185) ->>>>>>> develop +Defined in: [types.ts:175](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L175) The address of the escrow associated with the payout. @@ -64,11 +48,7 @@ The address of the escrow associated with the payout. > **id**: `string` -<<<<<<< HEAD -Defined in: [types.ts:171](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L171) -======= -Defined in: [types.ts:181](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L181) ->>>>>>> develop +Defined in: [types.ts:171](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L171) Unique identifier of the payout. @@ -78,10 +58,6 @@ Unique identifier of the payout. > **recipient**: `string` -<<<<<<< HEAD -Defined in: [types.ts:179](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L179) -======= -Defined in: [types.ts:189](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L189) ->>>>>>> develop +Defined in: [types.ts:179](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L179) The address of the recipient who received the payout. diff --git a/docs/sdk/typescript/types/type-aliases/StorageCredentials.md b/docs/sdk/typescript/types/type-aliases/StorageCredentials.md index fa105b109f..241fa8fe80 100644 --- a/docs/sdk/typescript/types/type-aliases/StorageCredentials.md +++ b/docs/sdk/typescript/types/type-aliases/StorageCredentials.md @@ -8,11 +8,7 @@ > `readonly` **StorageCredentials** = `object` -<<<<<<< HEAD -Defined in: [types.ts:44](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L44) -======= -Defined in: [types.ts:40](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L40) ->>>>>>> develop +Defined in: [types.ts:44](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L44) AWS/GCP cloud storage access data @@ -26,11 +22,7 @@ StorageClient is deprecated. Use Minio.Client directly. > **accessKey**: `string` -<<<<<<< HEAD -Defined in: [types.ts:48](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L48) -======= -Defined in: [types.ts:44](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L44) ->>>>>>> develop +Defined in: [types.ts:48](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L48) Access Key @@ -40,10 +32,6 @@ Access Key > **secretKey**: `string` -<<<<<<< HEAD -Defined in: [types.ts:52](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L52) -======= -Defined in: [types.ts:48](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L48) ->>>>>>> develop +Defined in: [types.ts:52](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L52) Secret Key diff --git a/docs/sdk/typescript/types/type-aliases/StorageParams.md b/docs/sdk/typescript/types/type-aliases/StorageParams.md index 2f1874f128..3665a85079 100644 --- a/docs/sdk/typescript/types/type-aliases/StorageParams.md +++ b/docs/sdk/typescript/types/type-aliases/StorageParams.md @@ -8,11 +8,7 @@ > **StorageParams** = `object` -<<<<<<< HEAD -Defined in: [types.ts:58](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L58) -======= -Defined in: [types.ts:54](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L54) ->>>>>>> develop +Defined in: [types.ts:58](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L58) ## Deprecated @@ -24,11 +20,7 @@ StorageClient is deprecated. Use Minio.Client directly. > **endPoint**: `string` -<<<<<<< HEAD -Defined in: [types.ts:62](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L62) -======= -Defined in: [types.ts:58](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L58) ->>>>>>> develop +Defined in: [types.ts:62](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L62) Request endPoint @@ -38,11 +30,7 @@ Request endPoint > `optional` **port**: `number` -<<<<<<< HEAD -Defined in: [types.ts:74](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L74) -======= -Defined in: [types.ts:70](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L70) ->>>>>>> develop +Defined in: [types.ts:74](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L74) TCP/IP port number. Default value set to 80 for HTTP and 443 for HTTPs @@ -52,11 +40,7 @@ TCP/IP port number. Default value set to 80 for HTTP and 443 for HTTPs > `optional` **region**: `string` -<<<<<<< HEAD -Defined in: [types.ts:70](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L70) -======= -Defined in: [types.ts:66](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L66) ->>>>>>> develop +Defined in: [types.ts:70](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L70) Region @@ -66,10 +50,6 @@ Region > **useSSL**: `boolean` -<<<<<<< HEAD -Defined in: [types.ts:66](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L66) -======= -Defined in: [types.ts:62](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L62) ->>>>>>> develop +Defined in: [types.ts:66](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L66) Enable secure (HTTPS) access. Default value set to false diff --git a/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md b/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md index da01701a8e..81e59c6fb2 100644 --- a/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md +++ b/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md @@ -8,11 +8,7 @@ > **TransactionLikeWithNonce** = `TransactionLike` & `object` -<<<<<<< HEAD -Defined in: [types.ts:225](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L225) -======= -Defined in: [types.ts:200](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L200) ->>>>>>> develop +Defined in: [types.ts:225](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L225) ## Type Declaration diff --git a/docs/sdk/typescript/types/type-aliases/UploadFile.md b/docs/sdk/typescript/types/type-aliases/UploadFile.md index cecbc8ef40..58c67c748f 100644 --- a/docs/sdk/typescript/types/type-aliases/UploadFile.md +++ b/docs/sdk/typescript/types/type-aliases/UploadFile.md @@ -8,11 +8,7 @@ > `readonly` **UploadFile** = `object` -<<<<<<< HEAD -Defined in: [types.ts:81](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L81) -======= -Defined in: [types.ts:77](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L77) ->>>>>>> develop +Defined in: [types.ts:81](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L81) Upload file data @@ -22,11 +18,7 @@ Upload file data > **hash**: `string` -<<<<<<< HEAD -Defined in: [types.ts:93](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L93) -======= -Defined in: [types.ts:89](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L89) ->>>>>>> develop +Defined in: [types.ts:93](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L93) Hash of uploaded object key @@ -36,11 +28,7 @@ Hash of uploaded object key > **key**: `string` -<<<<<<< HEAD -Defined in: [types.ts:85](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L85) -======= -Defined in: [types.ts:81](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L81) ->>>>>>> develop +Defined in: [types.ts:85](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L85) Uploaded object key @@ -50,10 +38,6 @@ Uploaded object key > **url**: `string` -<<<<<<< HEAD -Defined in: [types.ts:89](https://github.com/humanprotocol/human-protocol/blob/daa33ac30e8a8fd3dd7bbd077ced2e0ab16f7bab/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L89) -======= -Defined in: [types.ts:85](https://github.com/humanprotocol/human-protocol/blob/8c6afbe01e352b593635124b575731df11c509c7/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L85) ->>>>>>> develop +Defined in: [types.ts:89](https://github.com/humanprotocol/human-protocol/blob/8551ddf36370251a82fddadc0d28c34592acebaf/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L89) Uploaded object URL diff --git a/packages/sdk/python/human-protocol-sdk/example.py b/packages/sdk/python/human-protocol-sdk/example.py index 522f25ee9c..ddc2c65264 100644 --- a/packages/sdk/python/human-protocol-sdk/example.py +++ b/packages/sdk/python/human-protocol-sdk/example.py @@ -158,7 +158,10 @@ def get_escrows(): print( EscrowUtils.get_escrows( EscrowFilter( - chain_id=ChainId.LOCALHOST, + chain_id=ChainId.POLYGON_AMOY, + status=Status.Pending, + date_from=datetime.datetime(2023, 5, 8), + date_to=datetime.datetime(2023, 6, 8), ) ) ) @@ -166,7 +169,7 @@ def get_escrows(): print( ( EscrowUtils.get_escrow( - ChainId.LOCALHOST, "0xf9ec66feeafb850d85b88142a7305f55e0532959" + ChainId.POLYGON_AMOY, "0xf9ec66feeafb850d85b88142a7305f55e0532959" ) ) ) @@ -246,18 +249,18 @@ def get_stakers_example(): # Run single example while testing, and remove comments before commit get_escrows() - # get_operators() - # get_payouts() - # get_cancellation_refunds() - - # statistics_client = StatisticsClient(ChainId.POLYGON_AMOY) - # get_hmt_holders(statistics_client) - # get_escrow_statistics(statistics_client) - # get_hmt_statistics(statistics_client) - # get_payment_statistics(statistics_client) - # get_worker_statistics(statistics_client) - # get_hmt_daily_data(statistics_client) - - # agreement_example() - # get_workers() - # get_stakers_example() + get_operators() + get_payouts() + get_cancellation_refunds() + + statistics_client = StatisticsClient(ChainId.POLYGON_AMOY) + get_hmt_holders(statistics_client) + get_escrow_statistics(statistics_client) + get_hmt_statistics(statistics_client) + get_payment_statistics(statistics_client) + get_worker_statistics(statistics_client) + get_hmt_daily_data(statistics_client) + + agreement_example() + get_workers() + get_stakers_example()