@human-protocol/sdk 5.0.0-beta.3 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/base.d.ts +1 -10
  2. package/dist/base.d.ts.map +1 -1
  3. package/dist/base.js +0 -21
  4. package/dist/constants.d.ts +0 -1
  5. package/dist/constants.d.ts.map +1 -1
  6. package/dist/constants.js +7 -22
  7. package/dist/enums.d.ts +0 -1
  8. package/dist/enums.d.ts.map +1 -1
  9. package/dist/enums.js +0 -1
  10. package/dist/error.d.ts +4 -0
  11. package/dist/error.d.ts.map +1 -1
  12. package/dist/error.js +5 -1
  13. package/dist/escrow.d.ts +75 -19
  14. package/dist/escrow.d.ts.map +1 -1
  15. package/dist/escrow.js +144 -58
  16. package/dist/interfaces.d.ts +9 -0
  17. package/dist/interfaces.d.ts.map +1 -1
  18. package/dist/kvstore.d.ts +9 -5
  19. package/dist/kvstore.d.ts.map +1 -1
  20. package/dist/kvstore.js +15 -15
  21. package/dist/operator.d.ts +9 -5
  22. package/dist/operator.d.ts.map +1 -1
  23. package/dist/operator.js +16 -16
  24. package/dist/staking.d.ts +6 -3
  25. package/dist/staking.d.ts.map +1 -1
  26. package/dist/staking.js +13 -14
  27. package/dist/statistics.d.ts +13 -7
  28. package/dist/statistics.d.ts.map +1 -1
  29. package/dist/statistics.js +24 -22
  30. package/dist/transaction.d.ts +5 -3
  31. package/dist/transaction.d.ts.map +1 -1
  32. package/dist/transaction.js +8 -10
  33. package/dist/utils.d.ts +7 -0
  34. package/dist/utils.d.ts.map +1 -1
  35. package/dist/utils.js +51 -1
  36. package/dist/worker.d.ts +5 -3
  37. package/dist/worker.d.ts.map +1 -1
  38. package/dist/worker.js +8 -10
  39. package/package.json +3 -2
  40. package/src/base.ts +1 -23
  41. package/src/constants.ts +6 -24
  42. package/src/enums.ts +0 -1
  43. package/src/error.ts +7 -0
  44. package/src/escrow.ts +232 -97
  45. package/src/interfaces.ts +10 -0
  46. package/src/kvstore.ts +26 -24
  47. package/src/operator.ts +54 -26
  48. package/src/staking.ts +27 -26
  49. package/src/statistics.ts +87 -47
  50. package/src/transaction.ts +39 -25
  51. package/src/utils.ts +64 -0
  52. package/src/worker.ts +32 -17
package/dist/escrow.js CHANGED
@@ -8,15 +8,11 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
8
  var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
- var __importDefault = (this && this.__importDefault) || function (mod) {
12
- return (mod && mod.__esModule) ? mod : { "default": mod };
13
- };
14
11
  Object.defineProperty(exports, "__esModule", { value: true });
15
12
  exports.EscrowUtils = exports.EscrowClient = void 0;
16
13
  /* eslint-disable @typescript-eslint/no-explicit-any */
17
14
  const typechain_types_1 = require("@human-protocol/core/typechain-types");
18
15
  const ethers_1 = require("ethers");
19
- const graphql_request_1 = __importDefault(require("graphql-request"));
20
16
  const base_1 = require("./base");
21
17
  const constants_1 = require("./constants");
22
18
  const decorators_1 = require("./decorators");
@@ -142,8 +138,8 @@ class EscrowClient extends base_1.BaseEthersClient {
142
138
  /**
143
139
  * This function creates an escrow contract that uses the token passed to pay oracle fees and reward workers.
144
140
  *
145
- * @param {string} tokenAddress Token address to use for payouts.
146
- * @param {string} jobRequesterId Job Requester Id
141
+ * @param {string} tokenAddress - The address of the token to use for escrow funding.
142
+ * @param {string} jobRequesterId - Identifier for the job requester.
147
143
  * @param {Overrides} [txOptions] - Additional transaction parameters (optional, defaults to an empty object).
148
144
  * @returns {Promise<string>} Returns the address of the escrow created.
149
145
  *
@@ -173,7 +169,109 @@ class EscrowClient extends base_1.BaseEthersClient {
173
169
  throw error_1.ErrorInvalidTokenAddress;
174
170
  }
175
171
  try {
176
- const result = await (await this.escrowFactoryContract.createEscrow(tokenAddress, jobRequesterId, this.applyTxDefaults(txOptions))).wait();
172
+ const result = await (await this.escrowFactoryContract.createEscrow(tokenAddress, jobRequesterId, txOptions)).wait();
173
+ const event = result?.logs?.find(({ topics }) => topics.includes(ethers_1.ethers.id('LaunchedV2(address,address,string)')))?.args;
174
+ if (!event) {
175
+ throw error_1.ErrorLaunchedEventIsNotEmitted;
176
+ }
177
+ return event.escrow;
178
+ }
179
+ catch (e) {
180
+ return (0, utils_1.throwError)(e);
181
+ }
182
+ }
183
+ verifySetupParameters(escrowConfig) {
184
+ const { recordingOracle, reputationOracle, exchangeOracle, recordingOracleFee, reputationOracleFee, exchangeOracleFee, manifest, manifestHash, } = escrowConfig;
185
+ if (!ethers_1.ethers.isAddress(recordingOracle)) {
186
+ throw error_1.ErrorInvalidRecordingOracleAddressProvided;
187
+ }
188
+ if (!ethers_1.ethers.isAddress(reputationOracle)) {
189
+ throw error_1.ErrorInvalidReputationOracleAddressProvided;
190
+ }
191
+ if (!ethers_1.ethers.isAddress(exchangeOracle)) {
192
+ throw error_1.ErrorInvalidExchangeOracleAddressProvided;
193
+ }
194
+ if (recordingOracleFee <= 0 ||
195
+ reputationOracleFee <= 0 ||
196
+ exchangeOracleFee <= 0) {
197
+ throw error_1.ErrorAmountMustBeGreaterThanZero;
198
+ }
199
+ if (recordingOracleFee + reputationOracleFee + exchangeOracleFee > 100) {
200
+ throw error_1.ErrorTotalFeeMustBeLessThanHundred;
201
+ }
202
+ const isManifestValid = (0, utils_1.isValidUrl)(manifest) || (0, utils_1.isValidJson)(manifest);
203
+ if (!isManifestValid) {
204
+ throw error_1.ErrorInvalidManifest;
205
+ }
206
+ if (!manifestHash) {
207
+ throw error_1.ErrorHashIsEmptyString;
208
+ }
209
+ }
210
+ /**
211
+ * Creates, funds, and sets up a new escrow contract in a single transaction.
212
+ *
213
+ * @param {string} tokenAddress - The ERC-20 token address used to fund the escrow.
214
+ * @param {bigint} amount - The token amount to fund the escrow with.
215
+ * @param {string} jobRequesterId - An off-chain identifier for the job requester.
216
+ * @param {IEscrowConfig} escrowConfig - Configuration parameters for escrow setup:
217
+ * - `recordingOracle`: Address of the recording oracle.
218
+ * - `reputationOracle`: Address of the reputation oracle.
219
+ * - `exchangeOracle`: Address of the exchange oracle.
220
+ * - `recordingOracleFee`: Fee (in basis points or percentage * 100) for the recording oracle.
221
+ * - `reputationOracleFee`: Fee for the reputation oracle.
222
+ * - `exchangeOracleFee`: Fee for the exchange oracle.
223
+ * - `manifest`: URL to the manifest file.
224
+ * - `manifestHash`: Hash of the manifest content.
225
+ * @param {Overrides} [txOptions] - Additional transaction parameters (optional, defaults to an empty object).
226
+ *
227
+ * @returns {Promise<string>} Returns the address of the escrow created.
228
+ *
229
+ * @example
230
+ * import { Wallet, ethers } from 'ethers';
231
+ * import { EscrowClient, IERC20__factory } from '@human-protocol/sdk';
232
+ *
233
+ * const rpcUrl = 'YOUR_RPC_URL';
234
+ * const privateKey = 'YOUR_PRIVATE_KEY';
235
+ * const provider = new ethers.JsonRpcProvider(rpcUrl);
236
+ * const signer = new Wallet(privateKey, provider);
237
+ *
238
+ * const escrowClient = await EscrowClient.build(signer);
239
+ *
240
+ * const tokenAddress = '0xTokenAddress';
241
+ * const amount = ethers.parseUnits('1000', 18);
242
+ * const jobRequesterId = 'requester-123';
243
+ *
244
+ * const token = IERC20__factory.connect(tokenAddress, signer);
245
+ * await token.approve(escrowClient.escrowFactoryContract.target, amount);
246
+ *
247
+ * const escrowConfig = {
248
+ * recordingOracle: '0xRecordingOracle',
249
+ * reputationOracle: '0xReputationOracle',
250
+ * exchangeOracle: '0xExchangeOracle',
251
+ * recordingOracleFee: 5n,
252
+ * reputationOracleFee: 5n,
253
+ * exchangeOracleFee: 5n,
254
+ * manifest: 'https://example.com/manifest.json',
255
+ * manifestHash: 'manifestHash-123',
256
+ * } satisfies IEscrowConfig;
257
+ *
258
+ * const escrowAddress = await escrowClient.createFundAndSetupEscrow(
259
+ * tokenAddress,
260
+ * amount,
261
+ * jobRequesterId,
262
+ * escrowConfig
263
+ * );
264
+ *
265
+ * console.log('Escrow created at:', escrowAddress);
266
+ */
267
+ async createFundAndSetupEscrow(tokenAddress, amount, jobRequesterId, escrowConfig, txOptions = {}) {
268
+ if (!ethers_1.ethers.isAddress(tokenAddress)) {
269
+ throw error_1.ErrorInvalidTokenAddress;
270
+ }
271
+ this.verifySetupParameters(escrowConfig);
272
+ const { recordingOracle, reputationOracle, exchangeOracle, recordingOracleFee, reputationOracleFee, exchangeOracleFee, manifest, manifestHash, } = escrowConfig;
273
+ try {
274
+ const result = await (await this.escrowFactoryContract.createFundAndSetupEscrow(tokenAddress, amount, jobRequesterId, reputationOracle, recordingOracle, exchangeOracle, reputationOracleFee, recordingOracleFee, exchangeOracleFee, manifest, manifestHash, txOptions)).wait();
177
275
  const event = result?.logs?.find(({ topics }) => topics.includes(ethers_1.ethers.id('LaunchedV2(address,address,string)')))?.args;
178
276
  if (!event) {
179
277
  throw error_1.ErrorLaunchedEventIsNotEmitted;
@@ -224,39 +322,16 @@ class EscrowClient extends base_1.BaseEthersClient {
224
322
  */
225
323
  async setup(escrowAddress, escrowConfig, txOptions = {}) {
226
324
  const { recordingOracle, reputationOracle, exchangeOracle, recordingOracleFee, reputationOracleFee, exchangeOracleFee, manifest, manifestHash, } = escrowConfig;
227
- if (!ethers_1.ethers.isAddress(recordingOracle)) {
228
- throw error_1.ErrorInvalidRecordingOracleAddressProvided;
229
- }
230
- if (!ethers_1.ethers.isAddress(reputationOracle)) {
231
- throw error_1.ErrorInvalidReputationOracleAddressProvided;
232
- }
233
- if (!ethers_1.ethers.isAddress(exchangeOracle)) {
234
- throw error_1.ErrorInvalidExchangeOracleAddressProvided;
235
- }
325
+ this.verifySetupParameters(escrowConfig);
236
326
  if (!ethers_1.ethers.isAddress(escrowAddress)) {
237
327
  throw error_1.ErrorInvalidEscrowAddressProvided;
238
328
  }
239
- if (recordingOracleFee <= 0 ||
240
- reputationOracleFee <= 0 ||
241
- exchangeOracleFee <= 0) {
242
- throw error_1.ErrorAmountMustBeGreaterThanZero;
243
- }
244
- if (recordingOracleFee + reputationOracleFee + exchangeOracleFee > 100) {
245
- throw error_1.ErrorTotalFeeMustBeLessThanHundred;
246
- }
247
- const isManifestValid = (0, utils_1.isValidUrl)(manifest) || (0, utils_1.isValidJson)(manifest);
248
- if (!isManifestValid) {
249
- throw error_1.ErrorInvalidManifest;
250
- }
251
- if (!manifestHash) {
252
- throw error_1.ErrorHashIsEmptyString;
253
- }
254
329
  if (!(await this.escrowFactoryContract.hasEscrow(escrowAddress))) {
255
330
  throw error_1.ErrorEscrowAddressIsNotProvidedByFactory;
256
331
  }
257
332
  try {
258
333
  const escrowContract = this.getEscrowContract(escrowAddress);
259
- await (await escrowContract.setup(reputationOracle, recordingOracle, exchangeOracle, reputationOracleFee, recordingOracleFee, exchangeOracleFee, manifest, manifestHash, this.applyTxDefaults(txOptions))).wait();
334
+ await (await escrowContract.setup(reputationOracle, recordingOracle, exchangeOracle, reputationOracleFee, recordingOracleFee, exchangeOracleFee, manifest, manifestHash, txOptions)).wait();
260
335
  return;
261
336
  }
262
337
  catch (e) {
@@ -303,7 +378,7 @@ class EscrowClient extends base_1.BaseEthersClient {
303
378
  const escrowContract = this.getEscrowContract(escrowAddress);
304
379
  const tokenAddress = await escrowContract.token();
305
380
  const tokenContract = typechain_types_1.HMToken__factory.connect(tokenAddress, this.runner);
306
- await (await tokenContract.transfer(escrowAddress, amount, this.applyTxDefaults(txOptions))).wait();
381
+ await (await tokenContract.transfer(escrowAddress, amount, txOptions)).wait();
307
382
  return;
308
383
  }
309
384
  catch (e) {
@@ -332,10 +407,10 @@ class EscrowClient extends base_1.BaseEthersClient {
332
407
  }
333
408
  try {
334
409
  if (fundsToReserve !== null) {
335
- await (await escrowContract['storeResults(string,string,uint256)'](url, hash, fundsToReserve, this.applyTxDefaults(txOptions))).wait();
410
+ await (await escrowContract['storeResults(string,string,uint256)'](url, hash, fundsToReserve, txOptions)).wait();
336
411
  }
337
412
  else {
338
- await (await escrowContract['storeResults(string,string)'](url, hash, this.applyTxDefaults(txOptions))).wait();
413
+ await (await escrowContract['storeResults(string,string)'](url, hash, txOptions)).wait();
339
414
  }
340
415
  }
341
416
  catch (e) {
@@ -382,7 +457,7 @@ class EscrowClient extends base_1.BaseEthersClient {
382
457
  }
383
458
  try {
384
459
  const escrowContract = this.getEscrowContract(escrowAddress);
385
- await (await escrowContract.complete(this.applyTxDefaults(txOptions))).wait();
460
+ await (await escrowContract.complete(txOptions)).wait();
386
461
  return;
387
462
  }
388
463
  catch (e) {
@@ -395,10 +470,10 @@ class EscrowClient extends base_1.BaseEthersClient {
395
470
  const idIsString = typeof id === 'string';
396
471
  try {
397
472
  if (idIsString) {
398
- await (await escrowContract['bulkPayOut(address[],uint256[],string,string,string,bool)'](recipients, amounts, finalResultsUrl, finalResultsHash, id, forceComplete, this.applyTxDefaults(txOptions))).wait();
473
+ await (await escrowContract['bulkPayOut(address[],uint256[],string,string,string,bool)'](recipients, amounts, finalResultsUrl, finalResultsHash, id, forceComplete, txOptions)).wait();
399
474
  }
400
475
  else {
401
- await (await escrowContract['bulkPayOut(address[],uint256[],string,string,uint256,bool)'](recipients, amounts, finalResultsUrl, finalResultsHash, id, forceComplete, this.applyTxDefaults(txOptions))).wait();
476
+ await (await escrowContract['bulkPayOut(address[],uint256[],string,string,uint256,bool)'](recipients, amounts, finalResultsUrl, finalResultsHash, id, forceComplete, txOptions)).wait();
402
477
  }
403
478
  }
404
479
  catch (e) {
@@ -444,7 +519,7 @@ class EscrowClient extends base_1.BaseEthersClient {
444
519
  }
445
520
  try {
446
521
  const escrowContract = this.getEscrowContract(escrowAddress);
447
- await (await escrowContract.cancel(this.applyTxDefaults(txOptions))).wait();
522
+ await (await escrowContract.cancel(txOptions)).wait();
448
523
  }
449
524
  catch (e) {
450
525
  return (0, utils_1.throwError)(e);
@@ -484,7 +559,7 @@ class EscrowClient extends base_1.BaseEthersClient {
484
559
  }
485
560
  try {
486
561
  const escrowContract = this.getEscrowContract(escrowAddress);
487
- await (await escrowContract.requestCancellation(this.applyTxDefaults(txOptions))).wait();
562
+ await (await escrowContract.requestCancellation(txOptions)).wait();
488
563
  }
489
564
  catch (e) {
490
565
  return (0, utils_1.throwError)(e);
@@ -532,7 +607,7 @@ class EscrowClient extends base_1.BaseEthersClient {
532
607
  }
533
608
  try {
534
609
  const escrowContract = this.getEscrowContract(escrowAddress);
535
- const transactionReceipt = await (await escrowContract.withdraw(tokenAddress, this.applyTxDefaults(txOptions))).wait();
610
+ const transactionReceipt = await (await escrowContract.withdraw(tokenAddress, txOptions)).wait();
536
611
  let amountTransferred = undefined;
537
612
  const tokenContract = typechain_types_1.ERC20__factory.connect(tokenAddress, this.runner);
538
613
  if (transactionReceipt)
@@ -603,7 +678,6 @@ class EscrowClient extends base_1.BaseEthersClient {
603
678
  * (await signer.sendTransaction(rawTransaction)).wait();
604
679
  */
605
680
  async createBulkPayoutTransaction(escrowAddress, recipients, amounts, finalResultsUrl, finalResultsHash, payoutId, forceComplete = false, txOptions = {}) {
606
- txOptions = this.applyTxDefaults(txOptions);
607
681
  await this.ensureCorrectBulkPayoutInput(escrowAddress, recipients, amounts, finalResultsUrl, finalResultsHash);
608
682
  const signer = this.runner;
609
683
  try {
@@ -1184,6 +1258,12 @@ __decorate([
1184
1258
  __metadata("design:paramtypes", [String, String, Object]),
1185
1259
  __metadata("design:returntype", Promise)
1186
1260
  ], EscrowClient.prototype, "createEscrow", null);
1261
+ __decorate([
1262
+ decorators_1.requiresSigner,
1263
+ __metadata("design:type", Function),
1264
+ __metadata("design:paramtypes", [String, BigInt, String, Object, Object]),
1265
+ __metadata("design:returntype", Promise)
1266
+ ], EscrowClient.prototype, "createFundAndSetupEscrow", null);
1187
1267
  __decorate([
1188
1268
  decorators_1.requiresSigner,
1189
1269
  __metadata("design:type", Function),
@@ -1356,6 +1436,7 @@ class EscrowUtils {
1356
1436
  *
1357
1437
  *
1358
1438
  * @param {IEscrowsFilter} filter Filter parameters.
1439
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1359
1440
  * @returns {IEscrow[]} List of escrows that match the filter.
1360
1441
  *
1361
1442
  * **Code example**
@@ -1372,7 +1453,7 @@ class EscrowUtils {
1372
1453
  * const escrows = await EscrowUtils.getEscrows(filters);
1373
1454
  * ```
1374
1455
  */
1375
- static async getEscrows(filter) {
1456
+ static async getEscrows(filter, options) {
1376
1457
  if (filter.launcher && !ethers_1.ethers.isAddress(filter.launcher)) {
1377
1458
  throw error_1.ErrorInvalidAddress;
1378
1459
  }
@@ -1397,7 +1478,7 @@ class EscrowUtils {
1397
1478
  statuses = Array.isArray(filter.status) ? filter.status : [filter.status];
1398
1479
  statuses = statuses.map((status) => types_1.EscrowStatus[status]);
1399
1480
  }
1400
- const { escrows } = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_ESCROWS_QUERY)(filter), {
1481
+ const { escrows } = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_ESCROWS_QUERY)(filter), {
1401
1482
  ...filter,
1402
1483
  launcher: filter.launcher?.toLowerCase(),
1403
1484
  reputationOracle: filter.reputationOracle?.toLowerCase(),
@@ -1409,7 +1490,7 @@ class EscrowUtils {
1409
1490
  orderDirection: orderDirection,
1410
1491
  first: first,
1411
1492
  skip: skip,
1412
- });
1493
+ }, options);
1413
1494
  return (escrows || []).map((e) => mapEscrow(e, networkData.chainId));
1414
1495
  }
1415
1496
  /**
@@ -1465,6 +1546,7 @@ class EscrowUtils {
1465
1546
  *
1466
1547
  * @param {ChainId} chainId Network in which the escrow has been deployed
1467
1548
  * @param {string} escrowAddress Address of the escrow
1549
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1468
1550
  * @returns {Promise<IEscrow | null>} - Escrow data or null if not found.
1469
1551
  *
1470
1552
  * **Code example**
@@ -1475,7 +1557,7 @@ class EscrowUtils {
1475
1557
  * const escrow = new EscrowUtils.getEscrow(ChainId.POLYGON_AMOY, "0x1234567890123456789012345678901234567890");
1476
1558
  * ```
1477
1559
  */
1478
- static async getEscrow(chainId, escrowAddress) {
1560
+ static async getEscrow(chainId, escrowAddress, options) {
1479
1561
  const networkData = constants_1.NETWORKS[chainId];
1480
1562
  if (!networkData) {
1481
1563
  throw error_1.ErrorUnsupportedChainID;
@@ -1483,7 +1565,7 @@ class EscrowUtils {
1483
1565
  if (escrowAddress && !ethers_1.ethers.isAddress(escrowAddress)) {
1484
1566
  throw error_1.ErrorInvalidAddress;
1485
1567
  }
1486
- const { escrow } = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_ESCROW_BY_ADDRESS_QUERY)(), { escrowAddress: escrowAddress.toLowerCase() });
1568
+ const { escrow } = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_ESCROW_BY_ADDRESS_QUERY)(), { escrowAddress: escrowAddress.toLowerCase() }, options);
1487
1569
  if (!escrow)
1488
1570
  return null;
1489
1571
  return mapEscrow(escrow, networkData.chainId);
@@ -1524,6 +1606,7 @@ class EscrowUtils {
1524
1606
  * ```
1525
1607
  *
1526
1608
  * @param {IStatusEventFilter} filter Filter parameters.
1609
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1527
1610
  * @returns {Promise<StatusEvent[]>} - Array of status events with their corresponding statuses.
1528
1611
  *
1529
1612
  * **Code example**
@@ -1544,7 +1627,7 @@ class EscrowUtils {
1544
1627
  * })();
1545
1628
  * ```
1546
1629
  */
1547
- static async getStatusEvents(filter) {
1630
+ static async getStatusEvents(filter, options) {
1548
1631
  const { chainId, statuses, from, to, launcher, first = 10, skip = 0, orderDirection = enums_1.OrderDirection.DESC, } = filter;
1549
1632
  if (launcher && !ethers_1.ethers.isAddress(launcher)) {
1550
1633
  throw error_1.ErrorInvalidAddress;
@@ -1563,7 +1646,7 @@ class EscrowUtils {
1563
1646
  types_1.EscrowStatus.Cancelled,
1564
1647
  ];
1565
1648
  const statusNames = effectiveStatuses.map((status) => types_1.EscrowStatus[status]);
1566
- const data = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_STATUS_UPDATES_QUERY)(from, to, launcher), {
1649
+ const data = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_STATUS_UPDATES_QUERY)(from, to, launcher), {
1567
1650
  status: statusNames,
1568
1651
  from: from ? (0, utils_1.getUnixTimestamp)(from) : undefined,
1569
1652
  to: to ? (0, utils_1.getUnixTimestamp)(to) : undefined,
@@ -1571,7 +1654,7 @@ class EscrowUtils {
1571
1654
  orderDirection,
1572
1655
  first: Math.min(first, 1000),
1573
1656
  skip,
1574
- });
1657
+ }, options);
1575
1658
  if (!data || !data['escrowStatusEvents']) {
1576
1659
  return [];
1577
1660
  }
@@ -1591,6 +1674,7 @@ class EscrowUtils {
1591
1674
  * Fetch payouts from the subgraph.
1592
1675
  *
1593
1676
  * @param {IPayoutFilter} filter Filter parameters.
1677
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1594
1678
  * @returns {Promise<IPayout[]>} List of payouts matching the filters.
1595
1679
  *
1596
1680
  * **Code example**
@@ -1608,7 +1692,7 @@ class EscrowUtils {
1608
1692
  * console.log(payouts);
1609
1693
  * ```
1610
1694
  */
1611
- static async getPayouts(filter) {
1695
+ static async getPayouts(filter, options) {
1612
1696
  const networkData = constants_1.NETWORKS[filter.chainId];
1613
1697
  if (!networkData) {
1614
1698
  throw error_1.ErrorUnsupportedChainID;
@@ -1622,7 +1706,7 @@ class EscrowUtils {
1622
1706
  const first = filter.first !== undefined ? Math.min(filter.first, 1000) : 10;
1623
1707
  const skip = filter.skip || 0;
1624
1708
  const orderDirection = filter.orderDirection || enums_1.OrderDirection.DESC;
1625
- const { payouts } = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_PAYOUTS_QUERY)(filter), {
1709
+ const { payouts } = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_PAYOUTS_QUERY)(filter), {
1626
1710
  escrowAddress: filter.escrowAddress?.toLowerCase(),
1627
1711
  recipient: filter.recipient?.toLowerCase(),
1628
1712
  from: filter.from ? (0, utils_1.getUnixTimestamp)(filter.from) : undefined,
@@ -1630,7 +1714,7 @@ class EscrowUtils {
1630
1714
  first: Math.min(first, 1000),
1631
1715
  skip,
1632
1716
  orderDirection,
1633
- });
1717
+ }, options);
1634
1718
  if (!payouts) {
1635
1719
  return [];
1636
1720
  }
@@ -1676,6 +1760,7 @@ class EscrowUtils {
1676
1760
  *
1677
1761
  *
1678
1762
  * @param {Object} filter Filter parameters.
1763
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1679
1764
  * @returns {Promise<ICancellationRefund[]>} List of cancellation refunds matching the filters.
1680
1765
  *
1681
1766
  * **Code example**
@@ -1690,7 +1775,7 @@ class EscrowUtils {
1690
1775
  * console.log(cancellationRefunds);
1691
1776
  * ```
1692
1777
  */
1693
- static async getCancellationRefunds(filter) {
1778
+ static async getCancellationRefunds(filter, options) {
1694
1779
  const networkData = constants_1.NETWORKS[filter.chainId];
1695
1780
  if (!networkData)
1696
1781
  throw error_1.ErrorUnsupportedChainID;
@@ -1703,7 +1788,7 @@ class EscrowUtils {
1703
1788
  const first = filter.first !== undefined ? Math.min(filter.first, 1000) : 10;
1704
1789
  const skip = filter.skip || 0;
1705
1790
  const orderDirection = filter.orderDirection || enums_1.OrderDirection.DESC;
1706
- const { cancellationRefundEvents } = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_CANCELLATION_REFUNDS_QUERY)(filter), {
1791
+ const { cancellationRefundEvents } = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_CANCELLATION_REFUNDS_QUERY)(filter), {
1707
1792
  escrowAddress: filter.escrowAddress?.toLowerCase(),
1708
1793
  receiver: filter.receiver?.toLowerCase(),
1709
1794
  from: filter.from ? (0, utils_1.getUnixTimestamp)(filter.from) : undefined,
@@ -1711,7 +1796,7 @@ class EscrowUtils {
1711
1796
  first,
1712
1797
  skip,
1713
1798
  orderDirection,
1714
- });
1799
+ }, options);
1715
1800
  if (!cancellationRefundEvents || cancellationRefundEvents.length === 0) {
1716
1801
  return [];
1717
1802
  }
@@ -1760,6 +1845,7 @@ class EscrowUtils {
1760
1845
  *
1761
1846
  * @param {ChainId} chainId Network in which the escrow has been deployed
1762
1847
  * @param {string} escrowAddress Address of the escrow
1848
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
1763
1849
  * @returns {Promise<ICancellationRefund>} Cancellation refund data
1764
1850
  *
1765
1851
  * **Code example**
@@ -1770,14 +1856,14 @@ class EscrowUtils {
1770
1856
  * const cancellationRefund = await EscrowUtils.getCancellationRefund(ChainId.POLYGON_AMOY, "0x1234567890123456789012345678901234567890");
1771
1857
  * ```
1772
1858
  */
1773
- static async getCancellationRefund(chainId, escrowAddress) {
1859
+ static async getCancellationRefund(chainId, escrowAddress, options) {
1774
1860
  const networkData = constants_1.NETWORKS[chainId];
1775
1861
  if (!networkData)
1776
1862
  throw error_1.ErrorUnsupportedChainID;
1777
1863
  if (!ethers_1.ethers.isAddress(escrowAddress)) {
1778
1864
  throw error_1.ErrorInvalidEscrowAddressProvided;
1779
1865
  }
1780
- const { cancellationRefundEvents } = await (0, graphql_request_1.default)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_CANCELLATION_REFUND_BY_ADDRESS_QUERY)(), { escrowAddress: escrowAddress.toLowerCase() });
1866
+ const { cancellationRefundEvents } = await (0, utils_1.customGqlFetch)((0, utils_1.getSubgraphUrl)(networkData), (0, graphql_1.GET_CANCELLATION_REFUND_BY_ADDRESS_QUERY)(), { escrowAddress: escrowAddress.toLowerCase() }, options);
1781
1867
  if (!cancellationRefundEvents || cancellationRefundEvents.length === 0) {
1782
1868
  return null;
1783
1869
  }
@@ -272,4 +272,13 @@ export interface IEscrowWithdraw {
272
272
  tokenAddress: string;
273
273
  withdrawnAmount: bigint;
274
274
  }
275
+ /**
276
+ * Configuration options for subgraph requests with retry logic.
277
+ */
278
+ export interface SubgraphOptions {
279
+ /** Maximum number of retry attempts */
280
+ maxRetries?: number;
281
+ /** Base delay between retries in milliseconds */
282
+ baseDelay?: number;
283
+ }
275
284
  //# sourceMappingURL=interfaces.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":"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"}
package/dist/kvstore.d.ts CHANGED
@@ -2,7 +2,7 @@ import { ContractRunner, Overrides } from 'ethers';
2
2
  import { BaseEthersClient } from './base';
3
3
  import { ChainId } from './enums';
4
4
  import { NetworkData } from './types';
5
- import { IKVStore } from './interfaces';
5
+ import { IKVStore, SubgraphOptions } from './interfaces';
6
6
  /**
7
7
  * ## Introduction
8
8
  *
@@ -181,6 +181,7 @@ export declare class KVStoreClient extends BaseEthersClient {
181
181
  *
182
182
  * @param {string} address Address from which to get the key value.
183
183
  * @param {string} key Key to obtain the value.
184
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
184
185
  * @returns {string} Value of the key.
185
186
  *
186
187
  *
@@ -240,6 +241,7 @@ export declare class KVStoreUtils {
240
241
  *
241
242
  * @param {ChainId} chainId Network in which the KVStore is deployed
242
243
  * @param {string} address Address of the KVStore
244
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
243
245
  * @returns {Promise<IKVStore[]>} KVStore data
244
246
  * @throws {ErrorUnsupportedChainID} - Thrown if the network's chainId is not supported
245
247
  * @throws {ErrorInvalidAddress} - Thrown if the Address sent is invalid
@@ -253,13 +255,14 @@ export declare class KVStoreUtils {
253
255
  * console.log(kvStoreData);
254
256
  * ```
255
257
  */
256
- static getKVStoreData(chainId: ChainId, address: string): Promise<IKVStore[]>;
258
+ static getKVStoreData(chainId: ChainId, address: string, options?: SubgraphOptions): Promise<IKVStore[]>;
257
259
  /**
258
260
  * Gets the value of a key-value pair in the KVStore using the subgraph.
259
261
  *
260
262
  * @param {ChainId} chainId Network in which the KVStore is deployed
261
263
  * @param {string} address Address from which to get the key value.
262
264
  * @param {string} key Key to obtain the value.
265
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
263
266
  * @returns {Promise<string>} Value of the key.
264
267
  * @throws {ErrorUnsupportedChainID} - Thrown if the network's chainId is not supported
265
268
  * @throws {ErrorInvalidAddress} - Thrown if the Address sent is invalid
@@ -278,13 +281,14 @@ export declare class KVStoreUtils {
278
281
  * console.log(value);
279
282
  * ```
280
283
  */
281
- static get(chainId: ChainId, address: string, key: string): Promise<string>;
284
+ static get(chainId: ChainId, address: string, key: string, options?: SubgraphOptions): Promise<string>;
282
285
  /**
283
286
  * Gets the URL value of the given entity, and verifies its hash.
284
287
  *
285
288
  * @param {ChainId} chainId Network in which the KVStore is deployed
286
289
  * @param {string} address Address from which to get the URL value.
287
290
  * @param {string} urlKey Configurable URL key. `url` by default.
291
+ * @param {SubgraphOptions} options Optional configuration for subgraph requests.
288
292
  * @returns {Promise<string>} URL value for the given address if it exists, and the content is valid
289
293
  *
290
294
  * **Code example**
@@ -299,7 +303,7 @@ export declare class KVStoreUtils {
299
303
  * console.log(url);
300
304
  * ```
301
305
  */
302
- static getFileUrlAndVerifyHash(chainId: ChainId, address: string, urlKey?: string): Promise<string>;
306
+ static getFileUrlAndVerifyHash(chainId: ChainId, address: string, urlKey?: string, options?: SubgraphOptions): Promise<string>;
303
307
  /**
304
308
  * Gets the public key of the given entity, and verifies its hash.
305
309
  *
@@ -319,6 +323,6 @@ export declare class KVStoreUtils {
319
323
  * console.log(publicKey);
320
324
  * ```
321
325
  */
322
- static getPublicKey(chainId: ChainId, address: string): Promise<string>;
326
+ static getPublicKey(chainId: ChainId, address: string, options?: SubgraphOptions): Promise<string>;
323
327
  }
324
328
  //# sourceMappingURL=kvstore.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"kvstore.d.ts","sourceRoot":"","sources":["../src/kvstore.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAU,MAAM,QAAQ,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAG1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAYlC,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAOtC,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AAEH,qBAAa,aAAc,SAAQ,gBAAgB;IACjD,OAAO,CAAC,QAAQ,CAAU;IAE1B;;;;;OAKG;gBACS,MAAM,EAAE,cAAc,EAAE,WAAW,EAAE,WAAW;IAS5D;;;;;;;;OAQG;WACiB,KAAK,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC;IAiBzE;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IAEU,GAAG,CACd,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAWhB;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IAEU,OAAO,CAClB,IAAI,EAAE,MAAM,EAAE,EACd,MAAM,EAAE,MAAM,EAAE,EAChB,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAkBhB;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IAEU,iBAAiB,CAC5B,GAAG,EAAE,MAAM,EACX,MAAM,SAAQ,EACd,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAuBhB;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAYhE;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,YAAY;IACvB;;;;;;;;;;;;;;;;;OAiBG;WACiB,cAAc,CAChC,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,QAAQ,EAAE,CAAC;IAyBtB;;;;;;;;;;;;;;;;;;;;;;;OAuBG;WACiB,GAAG,CACrB,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,GACV,OAAO,CAAC,MAAM,CAAC;IAuBlB;;;;;;;;;;;;;;;;;;;OAmBG;WACiB,uBAAuB,CACzC,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,MAAM,SAAQ,GACb,OAAO,CAAC,MAAM,CAAC;IAqClB;;;;;;;;;;;;;;;;;;OAkBG;WACiB,YAAY,CAC9B,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,CAAC;CAenB"}
1
+ {"version":3,"file":"kvstore.d.ts","sourceRoot":"","sources":["../src/kvstore.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAU,MAAM,QAAQ,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAG1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAWlC,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAOtC,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AACzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AAEH,qBAAa,aAAc,SAAQ,gBAAgB;IACjD,OAAO,CAAC,QAAQ,CAAU;IAE1B;;;;;OAKG;gBACS,MAAM,EAAE,cAAc,EAAE,WAAW,EAAE,WAAW;IAS5D;;;;;;;;OAQG;WACiB,KAAK,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC;IAiBzE;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IAEU,GAAG,CACd,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAShB;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IAEU,OAAO,CAClB,IAAI,EAAE,MAAM,EAAE,EACd,MAAM,EAAE,MAAM,EAAE,EAChB,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAYhB;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IAEU,iBAAiB,CAC5B,GAAG,EAAE,MAAM,EACX,MAAM,SAAQ,EACd,SAAS,GAAE,SAAc,GACxB,OAAO,CAAC,IAAI,CAAC;IAuBhB;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACU,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAYhE;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,YAAY;IACvB;;;;;;;;;;;;;;;;;;OAkBG;WACiB,cAAc,CAChC,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,eAAe,GACxB,OAAO,CAAC,QAAQ,EAAE,CAAC;IA0BtB;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;WACiB,GAAG,CACrB,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,OAAO,CAAC,EAAE,eAAe,GACxB,OAAO,CAAC,MAAM,CAAC;IAwBlB;;;;;;;;;;;;;;;;;;;;OAoBG;WACiB,uBAAuB,CACzC,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,MAAM,SAAQ,EACd,OAAO,CAAC,EAAE,eAAe,GACxB,OAAO,CAAC,MAAM,CAAC;IAqClB;;;;;;;;;;;;;;;;;;OAkBG;WACiB,YAAY,CAC9B,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,OAAO,CAAC,EAAE,eAAe,GACxB,OAAO,CAAC,MAAM,CAAC;CAgBnB"}