diff --git a/docs/sdk/python/human_protocol_sdk.escrow.escrow_client.md b/docs/sdk/python/human_protocol_sdk.escrow.escrow_client.md
index 36da8512d3..9274499b12 100644
--- a/docs/sdk/python/human_protocol_sdk.escrow.escrow_client.md
+++ b/docs/sdk/python/human_protocol_sdk.escrow.escrow_client.md
@@ -572,15 +572,15 @@ Initializes a Escrow instance.
* **manifest** (`str`) – Manifest data (can be a URL or JSON string)
* **hash** (`str`) – Manifest file hash
-### *class* human_protocol_sdk.escrow.escrow_client.EscrowWithdraw(tx_hash, token_address, amount_withdrawn)
+### *class* human_protocol_sdk.escrow.escrow_client.EscrowWithdraw(tx_hash, token_address, withdrawn_amount)
Bases: `object`
-#### \_\_init_\_(tx_hash, token_address, amount_withdrawn)
+#### \_\_init_\_(tx_hash, token_address, withdrawn_amount)
Represents the result of an escrow cancellation transaction.
* **Parameters:**
* **tx_hash** (`str`) – The hash of the transaction associated with the escrow withdrawal.
* **token_address** (`str`) – The address of the token used for the withdrawal.
- * **amount_withdrawn** (`any`) – The amount withdrawn from the escrow.
+ * **withdrawn_amount** (`any`) – The amount withdrawn from the escrow.
diff --git a/docs/sdk/python/human_protocol_sdk.filter.md b/docs/sdk/python/human_protocol_sdk.filter.md
index 830c75fb37..208bc0947e 100644
--- a/docs/sdk/python/human_protocol_sdk.filter.md
+++ b/docs/sdk/python/human_protocol_sdk.filter.md
@@ -76,6 +76,12 @@ Initializes a filter for payouts.
* **skip** (`int`) – Optional number of payouts to skip. Default is 0.
* **order_direction** ([`OrderDirection`](human_protocol_sdk.constants.md#human_protocol_sdk.constants.OrderDirection)) – Optional order direction. Default is DESC.
+### *class* human_protocol_sdk.filter.StakersFilter(chain_id, min_staked_amount=None, max_staked_amount=None, min_locked_amount=None, max_locked_amount=None, min_withdrawn_amount=None, max_withdrawn_amount=None, min_slashed_amount=None, max_slashed_amount=None, order_by='lastDepositTimestamp', order_direction=OrderDirection.DESC, first=10, skip=0)
+
+Bases: `object`
+
+#### \_\_init_\_(chain_id, min_staked_amount=None, max_staked_amount=None, min_locked_amount=None, max_locked_amount=None, min_withdrawn_amount=None, max_withdrawn_amount=None, min_slashed_amount=None, max_slashed_amount=None, order_by='lastDepositTimestamp', order_direction=OrderDirection.DESC, first=10, skip=0)
+
### *class* human_protocol_sdk.filter.StatisticsFilter(date_from=None, date_to=None, first=10, skip=0, order_direction=OrderDirection.ASC)
Bases: `object`
diff --git a/docs/sdk/python/human_protocol_sdk.md b/docs/sdk/python/human_protocol_sdk.md
index e19e25fdda..1267a1ee1e 100644
--- a/docs/sdk/python/human_protocol_sdk.md
+++ b/docs/sdk/python/human_protocol_sdk.md
@@ -78,6 +78,12 @@
* [Module](human_protocol_sdk.staking.staking_client.md#module)
* [`StakingClient`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient)
* [`StakingClientError`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClientError)
+ * [human_protocol_sdk.staking.staking_utils module](human_protocol_sdk.staking.staking_utils.md)
+ * [Code Example](human_protocol_sdk.staking.staking_utils.md#code-example)
+ * [Module](human_protocol_sdk.staking.staking_utils.md#module)
+ * [`StakerData`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakerData)
+ * [`StakingUtils`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtils)
+ * [`StakingUtilsError`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtilsError)
* [human_protocol_sdk.statistics package](human_protocol_sdk.statistics.md)
* [Submodules](human_protocol_sdk.statistics.md#submodules)
* [human_protocol_sdk.statistics.statistics_client module](human_protocol_sdk.statistics.statistics_client.md)
@@ -173,6 +179,8 @@
* [`FilterError`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.FilterError)
* [`PayoutFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.PayoutFilter)
* [`PayoutFilter.__init__()`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.PayoutFilter.__init__)
+ * [`StakersFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StakersFilter)
+ * [`StakersFilter.__init__()`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StakersFilter.__init__)
* [`StatisticsFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StatisticsFilter)
* [`StatisticsFilter.__init__()`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StatisticsFilter.__init__)
* [`StatusEventFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StatusEventFilter)
diff --git a/docs/sdk/python/human_protocol_sdk.operator.operator_utils.md b/docs/sdk/python/human_protocol_sdk.operator.operator_utils.md
index a415b09ff3..3a9bee203e 100644
--- a/docs/sdk/python/human_protocol_sdk.operator.operator_utils.md
+++ b/docs/sdk/python/human_protocol_sdk.operator.operator_utils.md
@@ -17,11 +17,11 @@ print(
## Module
-### *class* human_protocol_sdk.operator.operator_utils.OperatorData(chain_id, id, address, amount_staked, amount_locked, locked_until_timestamp, amount_withdrawn, amount_slashed, reward, amount_jobs_processed, role=None, fee=None, public_key=None, webhook_url=None, website=None, url=None, job_types=None, registration_needed=None, registration_instructions=None, reputation_networks=None, name=None, category=None)
+### *class* human_protocol_sdk.operator.operator_utils.OperatorData(chain_id, id, address, staked_amount, locked_amount, locked_until_timestamp, withdrawn_amount, slashed_amount, amount_jobs_processed, role=None, fee=None, public_key=None, webhook_url=None, website=None, url=None, job_types=None, registration_needed=None, registration_instructions=None, reputation_networks=None, name=None, category=None)
Bases: `object`
-#### \_\_init_\_(chain_id, id, address, amount_staked, amount_locked, locked_until_timestamp, amount_withdrawn, amount_slashed, reward, amount_jobs_processed, role=None, fee=None, public_key=None, webhook_url=None, website=None, url=None, job_types=None, registration_needed=None, registration_instructions=None, reputation_networks=None, name=None, category=None)
+#### \_\_init_\_(chain_id, id, address, staked_amount, locked_amount, locked_until_timestamp, withdrawn_amount, slashed_amount, amount_jobs_processed, role=None, fee=None, public_key=None, webhook_url=None, website=None, url=None, job_types=None, registration_needed=None, registration_instructions=None, reputation_networks=None, name=None, category=None)
Initializes a OperatorData instance.
@@ -29,12 +29,11 @@ Initializes a OperatorData instance.
* **chain_id** ([`ChainId`](human_protocol_sdk.constants.md#human_protocol_sdk.constants.ChainId)) – Chain Identifier
* **id** (`str`) – Identifier
* **address** (`str`) – Address
- * **amount_staked** (`int`) – Amount staked
- * **amount_locked** (`int`) – Amount locked
+ * **staked_amount** (`int`) – Amount staked
+ * **locked_amount** (`int`) – Amount locked
* **locked_until_timestamp** (`int`) – Locked until timestamp
- * **amount_withdrawn** (`int`) – Amount withdrawn
- * **amount_slashed** (`int`) – Amount slashed
- * **reward** (`int`) – Reward
+ * **withdrawn_amount** (`int`) – Amount withdrawn
+ * **slashed_amount** (`int`) – Amount slashed
* **amount_jobs_processed** (`int`) – Amount of jobs launched
* **role** (`Optional`[`str`]) – Role
* **fee** (`Optional`[`int`]) – Fee
@@ -49,20 +48,20 @@ Initializes a OperatorData instance.
* **name** (`Optional`[`str`]) – Name
* **category** (`Optional`[`str`]) – Category
-### *class* human_protocol_sdk.operator.operator_utils.OperatorFilter(chain_id, roles=[], min_amount_staked=None, order_by=None, order_direction=OrderDirection.DESC, first=10, skip=0)
+### *class* human_protocol_sdk.operator.operator_utils.OperatorFilter(chain_id, roles=[], min_staked_amount=None, order_by=None, order_direction=OrderDirection.DESC, first=10, skip=0)
Bases: `object`
A class used to filter operators.
-#### \_\_init_\_(chain_id, roles=[], min_amount_staked=None, order_by=None, order_direction=OrderDirection.DESC, first=10, skip=0)
+#### \_\_init_\_(chain_id, roles=[], min_staked_amount=None, order_by=None, order_direction=OrderDirection.DESC, first=10, skip=0)
Initializes a OperatorFilter instance.
* **Parameters:**
* **chain_id** ([`ChainId`](human_protocol_sdk.constants.md#human_protocol_sdk.constants.ChainId)) – Chain ID to request data
* **roles** (`Optional`[`str`]) – Roles to filter by
- * **min_amount_staked** (`Optional`[`int`]) – Minimum amount staked to filter by
+ * **min_staked_amount** (`Optional`[`int`]) – Minimum amount staked to filter by
* **order_by** (`Optional`[`str`]) – Property to order by, e.g., “role”
* **order_direction** ([`OrderDirection`](human_protocol_sdk.constants.md#human_protocol_sdk.constants.OrderDirection)) – Order direction of results, “asc” or “desc”
* **first** (`int`) – Number of items per page
diff --git a/docs/sdk/python/human_protocol_sdk.staking.md b/docs/sdk/python/human_protocol_sdk.staking.md
index b4e35a7a66..04a5aea76f 100644
--- a/docs/sdk/python/human_protocol_sdk.staking.md
+++ b/docs/sdk/python/human_protocol_sdk.staking.md
@@ -17,3 +17,12 @@ obtain staking information from both the contracts and subgraph.
* [`StakingClient.unstake()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.unstake)
* [`StakingClient.withdraw()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.withdraw)
* [`StakingClientError`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClientError)
+* [human_protocol_sdk.staking.staking_utils module](human_protocol_sdk.staking.staking_utils.md)
+ * [Code Example](human_protocol_sdk.staking.staking_utils.md#code-example)
+ * [Module](human_protocol_sdk.staking.staking_utils.md#module)
+ * [`StakerData`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakerData)
+ * [`StakerData.__init__()`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakerData.__init__)
+ * [`StakingUtils`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtils)
+ * [`StakingUtils.get_staker()`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtils.get_staker)
+ * [`StakingUtils.get_stakers()`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtils.get_stakers)
+ * [`StakingUtilsError`](human_protocol_sdk.staking.staking_utils.md#human_protocol_sdk.staking.staking_utils.StakingUtilsError)
diff --git a/docs/sdk/python/human_protocol_sdk.staking.staking_utils.md b/docs/sdk/python/human_protocol_sdk.staking.staking_utils.md
new file mode 100644
index 0000000000..a22d644195
--- /dev/null
+++ b/docs/sdk/python/human_protocol_sdk.staking.staking_utils.md
@@ -0,0 +1,49 @@
+# human_protocol_sdk.staking.staking_utils module
+
+Utility class for staking-related operations.
+
+## Code Example
+
+```python
+from human_protocol_sdk.constants import ChainId
+from human_protocol_sdk.staking.staking_utils import StakingUtils, StakersFilter
+
+stakers = StakingUtils.get_stakers(
+ StakersFilter(
+ chain_id=ChainId.POLYGON_AMOY,
+ min_staked_amount="1000000000000000000",
+ max_locked_amount="5000000000000000000",
+ order_by="withdrawnAmount",
+ order_direction="asc",
+ first=5,
+ skip=0,
+ )
+)
+print("Filtered stakers:", stakers)
+```
+
+## Module
+
+### *class* human_protocol_sdk.staking.staking_utils.StakerData(id, address, staked_amount, locked_amount, withdrawn_amount, slashed_amount, locked_until_timestamp, last_deposit_timestamp)
+
+Bases: `object`
+
+#### \_\_init_\_(id, address, staked_amount, locked_amount, withdrawn_amount, slashed_amount, locked_until_timestamp, last_deposit_timestamp)
+
+### *class* human_protocol_sdk.staking.staking_utils.StakingUtils
+
+Bases: `object`
+
+#### *static* get_staker(chain_id, address)
+
+* **Return type:**
+ `Optional`[[`StakerData`](#human_protocol_sdk.staking.staking_utils.StakerData)]
+
+#### *static* get_stakers(filter)
+
+* **Return type:**
+ `List`[[`StakerData`](#human_protocol_sdk.staking.staking_utils.StakerData)]
+
+### *exception* human_protocol_sdk.staking.staking_utils.StakingUtilsError
+
+Bases: `Exception`
diff --git a/docs/sdk/python/index.md b/docs/sdk/python/index.md
index f906f9709c..35193120d9 100644
--- a/docs/sdk/python/index.md
+++ b/docs/sdk/python/index.md
@@ -57,6 +57,7 @@ pip install human-protocol-sdk[agreement]
* [`EscrowFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.EscrowFilter)
* [`FilterError`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.FilterError)
* [`PayoutFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.PayoutFilter)
+ * [`StakersFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StakersFilter)
* [`StatisticsFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StatisticsFilter)
* [`StatusEventFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.StatusEventFilter)
* [`TransactionFilter`](human_protocol_sdk.filter.md#human_protocol_sdk.filter.TransactionFilter)
diff --git a/docs/sdk/typescript/base/classes/BaseEthersClient.md b/docs/sdk/typescript/base/classes/BaseEthersClient.md
index e384cd53fc..b22efbad91 100644
--- a/docs/sdk/typescript/base/classes/BaseEthersClient.md
+++ b/docs/sdk/typescript/base/classes/BaseEthersClient.md
@@ -4,9 +4,9 @@
[@human-protocol/sdk](../../modules.md) / [base](../README.md) / BaseEthersClient
-# Class: `abstract` BaseEthersClient
+# Abstract Class: BaseEthersClient
-Defined in: [base.ts:10](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L10)
+Defined in: [base.ts:10](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L10)
## Introduction
@@ -24,7 +24,7 @@ This class is used as a base class for other clients making on-chain calls.
> **new BaseEthersClient**(`runner`, `networkData`): `BaseEthersClient`
-Defined in: [base.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
+Defined in: [base.ts:20](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
**BaseClient constructor**
@@ -52,7 +52,7 @@ The network information required to connect to the contracts
> **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md)
-Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
+Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
***
@@ -60,4 +60,4 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/48
> `protected` **runner**: `ContractRunner`
-Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
+Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
diff --git a/docs/sdk/typescript/encryption/classes/Encryption.md b/docs/sdk/typescript/encryption/classes/Encryption.md
index b136c988ee..9b7d221fac 100644
--- a/docs/sdk/typescript/encryption/classes/Encryption.md
+++ b/docs/sdk/typescript/encryption/classes/Encryption.md
@@ -6,7 +6,7 @@
# Class: Encryption
-Defined in: [encryption.ts:58](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L58)
+Defined in: [encryption.ts:58](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L58)
## Introduction
@@ -53,7 +53,7 @@ const encryption = await Encryption.build(privateKey, passphrase);
> **new Encryption**(`privateKey`): `Encryption`
-Defined in: [encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66)
+Defined in: [encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66)
Constructor for the Encryption class.
@@ -75,7 +75,7 @@ The private key.
> **decrypt**(`message`, `publicKey?`): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
-Defined in: [encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194)
+Defined in: [encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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.
@@ -129,7 +129,7 @@ const resultMessage = await encryption.decrypt('message');
> **sign**(`message`): `Promise`\<`string`\>
-Defined in: [encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251)
+Defined in: [encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251)
This function signs a message using the private key used to initialize the client.
@@ -165,7 +165,7 @@ const resultMessage = await encryption.sign('message');
> **signAndEncrypt**(`message`, `publicKeys`): `Promise`\<`string`\>
-Defined in: [encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142)
+Defined in: [encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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.
@@ -232,7 +232,7 @@ const resultMessage = await encryption.signAndEncrypt('message', publicKeys);
> `static` **build**(`privateKeyArmored`, `passphrase?`): `Promise`\<`Encryption`\>
-Defined in: [encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77)
+Defined in: [encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 f8ad1c5e7d..f9c23b8b0a 100644
--- a/docs/sdk/typescript/encryption/classes/EncryptionUtils.md
+++ b/docs/sdk/typescript/encryption/classes/EncryptionUtils.md
@@ -6,7 +6,7 @@
# Class: EncryptionUtils
-Defined in: [encryption.ts:290](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L290)
+Defined in: [encryption.ts:290](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L290)
## Introduction
@@ -48,7 +48,7 @@ const keyPair = await EncryptionUtils.generateKeyPair('Human', 'human@hmt.ai');
> `static` **encrypt**(`message`, `publicKeys`): `Promise`\<`string`\>
-Defined in: [encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444)
+Defined in: [encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444)
This function encrypts a message using the specified public keys.
@@ -111,7 +111,7 @@ const result = await EncryptionUtils.encrypt('message', publicKeys);
> `static` **generateKeyPair**(`name`, `email`, `passphrase`): `Promise`\<[`IKeyPair`](../../interfaces/interfaces/IKeyPair.md)\>
-Defined in: [encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382)
+Defined in: [encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382)
This function generates a key pair for encryption and decryption.
@@ -158,7 +158,7 @@ const result = await EncryptionUtils.generateKeyPair(name, email, passphrase);
> `static` **getSignedData**(`message`): `Promise`\<`string`\>
-Defined in: [encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351)
+Defined in: [encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351)
This function gets signed data from a signed message.
@@ -190,7 +190,7 @@ const signedData = await EncryptionUtils.getSignedData('message');
> `static` **isEncrypted**(`message`): `boolean`
-Defined in: [encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494)
+Defined in: [encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494)
Verifies if a message appears to be encrypted with OpenPGP.
@@ -238,7 +238,7 @@ if (isEncrypted) {
> `static` **verify**(`message`, `publicKey`): `Promise`\<`boolean`\>
-Defined in: [encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318)
+Defined in: [encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 841068b092..95f27fc788 100644
--- a/docs/sdk/typescript/enums/enumerations/ChainId.md
+++ b/docs/sdk/typescript/enums/enumerations/ChainId.md
@@ -6,7 +6,7 @@
# Enumeration: ChainId
-Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L1)
+Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L1)
## Enumeration Members
@@ -14,7 +14,7 @@ Defined in: [enums.ts:1](https://github.com/humanprotocol/human-protocol/blob/48
> **ALL**: `-1`
-Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2)
+Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2)
***
@@ -22,7 +22,7 @@ Defined in: [enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/48
> **AURORA\_TESTNET**: `1313161555`
-Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9)
+Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9)
***
@@ -30,7 +30,7 @@ Defined in: [enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/48
> **BSC\_MAINNET**: `56`
-Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5)
+Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5)
***
@@ -38,7 +38,7 @@ Defined in: [enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/48
> **BSC\_TESTNET**: `97`
-Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6)
+Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6)
***
@@ -46,7 +46,7 @@ Defined in: [enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/48
> **LOCALHOST**: `1338`
-Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10)
+Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10)
***
@@ -54,7 +54,7 @@ Defined in: [enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/4
> **MAINNET**: `1`
-Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3)
+Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3)
***
@@ -62,7 +62,7 @@ Defined in: [enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/48
> **POLYGON**: `137`
-Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7)
+Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7)
***
@@ -70,7 +70,7 @@ Defined in: [enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/48
> **POLYGON\_AMOY**: `80002`
-Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8)
+Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8)
***
@@ -78,4 +78,4 @@ Defined in: [enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/48
> **SEPOLIA**: `11155111`
-Defined in: [enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4)
+Defined in: [enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 6a4881df30..93cd30c302 100644
--- a/docs/sdk/typescript/enums/enumerations/OperatorCategory.md
+++ b/docs/sdk/typescript/enums/enumerations/OperatorCategory.md
@@ -6,7 +6,7 @@
# Enumeration: OperatorCategory
-Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18)
+Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18)
## Enumeration Members
@@ -14,7 +14,7 @@ Defined in: [enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/4
> **MACHINE\_LEARNING**: `"machine_learning"`
-Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19)
+Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19)
***
@@ -22,4 +22,4 @@ Defined in: [enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/4
> **MARKET\_MAKING**: `"market_making"`
-Defined in: [enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20)
+Defined in: [enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 1164e18372..f3c06be500 100644
--- a/docs/sdk/typescript/enums/enumerations/OrderDirection.md
+++ b/docs/sdk/typescript/enums/enumerations/OrderDirection.md
@@ -6,7 +6,7 @@
# Enumeration: OrderDirection
-Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13)
+Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13)
## Enumeration Members
@@ -14,7 +14,7 @@ Defined in: [enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/4
> **ASC**: `"asc"`
-Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14)
+Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14)
***
@@ -22,4 +22,4 @@ Defined in: [enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/4
> **DESC**: `"desc"`
-Defined in: [enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15)
+Defined in: [enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 f98b315fca..dad96c674a 100644
--- a/docs/sdk/typescript/escrow/classes/EscrowClient.md
+++ b/docs/sdk/typescript/escrow/classes/EscrowClient.md
@@ -6,7 +6,7 @@
# Class: EscrowClient
-Defined in: [escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147)
+Defined in: [escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147)
## Introduction
@@ -86,7 +86,7 @@ const escrowClient = await EscrowClient.build(provider);
> **new EscrowClient**(`runner`, `networkData`): `EscrowClient`
-Defined in: [escrow.ts:156](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L156)
+Defined in: [escrow.ts:156](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L156)
**EscrowClient constructor**
@@ -118,7 +118,7 @@ The network information required to connect to the Escrow contract
> **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md)
-Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
+Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
#### Inherited from
@@ -130,7 +130,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/48
> `protected` **runner**: `ContractRunner`
-Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
+Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
#### Inherited from
@@ -144,7 +144,7 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/48
> **bulkPayOut**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `txId`, `forceComplete`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:669](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L669)
+Defined in: [escrow.ts:669](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L669)
This function pays out the amounts specified to the workers and sets the URL of the final results file.
@@ -232,7 +232,7 @@ await escrowClient.bulkPayOut('0x62dD51230A30401C455c8398d06F85e4EaB6309f', reci
> **bulkPayOut**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `payoutId`, `forceComplete`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:719](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L719)
+Defined in: [escrow.ts:719](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L719)
This function pays out the amounts specified to the workers and sets the URL of the final results file.
@@ -323,7 +323,7 @@ await escrowClient.bulkPayOut('0x62dD51230A30401C455c8398d06F85e4EaB6309f', reci
> **cancel**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:818](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L818)
+Defined in: [escrow.ts:818](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L818)
This function cancels the specified escrow and sends the balance to the canceler.
@@ -369,7 +369,7 @@ await escrowClient.cancel('0x62dD51230A30401C455c8398d06F85e4EaB6309f');
> **complete**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:609](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L609)
+Defined in: [escrow.ts:609](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L609)
This function sets the status of an escrow to completed.
@@ -417,7 +417,7 @@ await escrowClient.complete('0x62dD51230A30401C455c8398d06F85e4EaB6309f');
> **createBulkPayoutTransaction**(`escrowAddress`, `recipients`, `amounts`, `finalResultsUrl`, `finalResultsHash`, `payoutId`, `forceComplete`, `txOptions?`): `Promise`\<[`TransactionLikeWithNonce`](../../types/type-aliases/TransactionLikeWithNonce.md)\>
-Defined in: [escrow.ts:1018](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1018)
+Defined in: [escrow.ts:1018](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1018)
Creates a prepared transaction for bulk payout without immediately sending it.
@@ -511,7 +511,7 @@ console.log('Tx hash:', ethers.keccak256(signedTransaction));
> **createEscrow**(`tokenAddress`, `jobRequesterId`, `txOptions?`): `Promise`\<`string`\>
-Defined in: [escrow.ts:234](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L234)
+Defined in: [escrow.ts:234](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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.
@@ -567,7 +567,7 @@ const escrowAddress = await escrowClient.createEscrow(tokenAddress, jobRequester
> **fund**(`escrowAddress`, `amount`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:414](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L414)
+Defined in: [escrow.ts:414](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L414)
This function adds funds of the chosen token to the escrow.
@@ -620,7 +620,7 @@ await escrowClient.fund('0x62dD51230A30401C455c8398d06F85e4EaB6309f', amount);
> **getBalance**(`escrowAddress`): `Promise`\<`bigint`\>
-Defined in: [escrow.ts:1163](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1163)
+Defined in: [escrow.ts:1163](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1163)
This function returns the balance for a specified escrow address.
@@ -658,7 +658,7 @@ const balance = await escrowClient.getBalance('0x62dD51230A30401C455c8398d06F85e
> **getExchangeOracleAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1586](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1586)
+Defined in: [escrow.ts:1586](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1586)
This function returns the exchange oracle address for a given escrow.
@@ -696,7 +696,7 @@ const oracleAddress = await escrowClient.getExchangeOracleAddress('0x62dD51230A3
> **getFactoryAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1624](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1624)
+Defined in: [escrow.ts:1624](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1624)
This function returns the escrow factory address for a given escrow.
@@ -734,7 +734,7 @@ const factoryAddress = await escrowClient.getFactoryAddress('0x62dD51230A30401C4
> **getIntermediateResultsUrl**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1358](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1358)
+Defined in: [escrow.ts:1358](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1358)
This function returns the intermediate results file URL.
@@ -772,7 +772,7 @@ const intermediateResultsUrl = await escrowClient.getIntermediateResultsUrl('0x6
> **getJobLauncherAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1510](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1510)
+Defined in: [escrow.ts:1510](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1510)
This function returns the job launcher address for a given escrow.
@@ -810,7 +810,7 @@ const jobLauncherAddress = await escrowClient.getJobLauncherAddress('0x62dD51230
> **getManifest**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1282](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1282)
+Defined in: [escrow.ts:1282](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1282)
This function returns the manifest. Could be a URL or a JSON string.
@@ -848,7 +848,7 @@ const manifest = await escrowClient.getManifest('0x62dD51230A30401C455c8398d06F8
> **getManifestHash**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1244](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1244)
+Defined in: [escrow.ts:1244](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1244)
This function returns the manifest file hash.
@@ -886,7 +886,7 @@ const manifestHash = await escrowClient.getManifestHash('0x62dD51230A30401C455c8
> **getRecordingOracleAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1472](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1472)
+Defined in: [escrow.ts:1472](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1472)
This function returns the recording oracle address for a given escrow.
@@ -924,7 +924,7 @@ const oracleAddress = await escrowClient.getRecordingOracleAddress('0x62dD51230A
> **getReputationOracleAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1548](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1548)
+Defined in: [escrow.ts:1548](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1548)
This function returns the reputation oracle address for a given escrow.
@@ -962,7 +962,7 @@ const oracleAddress = await escrowClient.getReputationOracleAddress('0x62dD51230
> **getReservedFunds**(`escrowAddress`): `Promise`\<`bigint`\>
-Defined in: [escrow.ts:1207](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1207)
+Defined in: [escrow.ts:1207](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1207)
This function returns the reserved funds for a specified escrow address.
@@ -1000,7 +1000,7 @@ const reservedFunds = await escrowClient.getReservedFunds('0x62dD51230A30401C455
> **getResultsUrl**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1320](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1320)
+Defined in: [escrow.ts:1320](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1320)
This function returns the results file URL.
@@ -1038,7 +1038,7 @@ const resultsUrl = await escrowClient.getResultsUrl('0x62dD51230A30401C455c8398d
> **getStatus**(`escrowAddress`): `Promise`\<[`EscrowStatus`](../../types/enumerations/EscrowStatus.md)\>
-Defined in: [escrow.ts:1434](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1434)
+Defined in: [escrow.ts:1434](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1434)
This function returns the current status of the escrow.
@@ -1076,7 +1076,7 @@ const status = await escrowClient.getStatus('0x62dD51230A30401C455c8398d06F85e4E
> **getTokenAddress**(`escrowAddress`): `Promise`\<`string`\>
-Defined in: [escrow.ts:1396](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1396)
+Defined in: [escrow.ts:1396](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1396)
This function returns the token address used for funding the escrow.
@@ -1114,7 +1114,7 @@ const tokenAddress = await escrowClient.getTokenAddress('0x62dD51230A30401C455c8
> **requestCancellation**(`escrowAddress`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:864](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L864)
+Defined in: [escrow.ts:864](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L864)
This function requests the cancellation of the specified escrow (moves status to ToCancel or finalizes if expired).
@@ -1162,7 +1162,7 @@ await escrowClient.requestCancellation('0x62dD51230A30401C455c8398d06F85e4EaB630
> **setup**(`escrowAddress`, `escrowConfig`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:307](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L307)
+Defined in: [escrow.ts:307](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L307)
This function sets up the parameters of the escrow.
@@ -1229,7 +1229,7 @@ await escrowClient.setup(escrowAddress, escrowConfig);
> **storeResults**(`escrowAddress`, `url`, `hash`, `fundsToReserve`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [escrow.ts:480](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L480)
+Defined in: [escrow.ts:480](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L480)
This function stores the results URL and hash.
@@ -1293,7 +1293,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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L516)
+Defined in: [escrow.ts:516](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L516)
This function stores the results URL and hash.
@@ -1353,7 +1353,7 @@ await escrowClient.storeResults('0x62dD51230A30401C455c8398d06F85e4EaB6309f', 'h
> **withdraw**(`escrowAddress`, `tokenAddress`, `txOptions?`): `Promise`\<[`EscrowWithdraw`](../../types/type-aliases/EscrowWithdraw.md)\>
-Defined in: [escrow.ts:915](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L915)
+Defined in: [escrow.ts:915](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L915)
This function withdraws additional tokens in the escrow to the canceler.
@@ -1410,7 +1410,7 @@ await escrowClient.withdraw(
> `static` **build**(`runner`): `Promise`\<`EscrowClient`\>
-Defined in: [escrow.ts:174](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L174)
+Defined in: [escrow.ts:174](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 35b702661f..af264bfe05 100644
--- a/docs/sdk/typescript/escrow/classes/EscrowUtils.md
+++ b/docs/sdk/typescript/escrow/classes/EscrowUtils.md
@@ -6,7 +6,7 @@
# Class: EscrowUtils
-Defined in: [escrow.ts:1673](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1673)
+Defined in: [escrow.ts:1673](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1673)
## Introduction
@@ -54,7 +54,7 @@ const escrowAddresses = new EscrowUtils.getEscrows({
> `static` **getCancellationRefund**(`chainId`, `escrowAddress`): `Promise`\<[`CancellationRefund`](../../types/type-aliases/CancellationRefund.md)\>
-Defined in: [escrow.ts:2222](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2222)
+Defined in: [escrow.ts:2222](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2222)
This function returns the cancellation refund for a given escrow address.
@@ -121,7 +121,7 @@ const cancellationRefund = await EscrowUtils.getCancellationRefund(ChainId.POLYG
> `static` **getCancellationRefunds**(`filter`): `Promise`\<[`CancellationRefund`](../../types/type-aliases/CancellationRefund.md)[]\>
-Defined in: [escrow.ts:2138](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2138)
+Defined in: [escrow.ts:2138](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2138)
This function returns the cancellation refunds for a given set of networks.
@@ -216,7 +216,7 @@ console.log(cancellationRefunds);
> `static` **getEscrow**(`chainId`, `escrowAddress`): `Promise`\<[`IEscrow`](../../interfaces/interfaces/IEscrow.md)\>
-Defined in: [escrow.ts:1886](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1886)
+Defined in: [escrow.ts:1886](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1886)
This function returns the escrow data for a given address.
@@ -295,7 +295,7 @@ const escrow = new EscrowUtils.getEscrow(ChainId.POLYGON_AMOY, "0x12345678901234
> `static` **getEscrows**(`filter`): `Promise`\<[`IEscrow`](../../interfaces/interfaces/IEscrow.md)[]\>
-Defined in: [escrow.ts:1770](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1770)
+Defined in: [escrow.ts:1770](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1770)
This function returns an array of escrows based on the specified filter parameters.
@@ -407,7 +407,7 @@ const escrows = await EscrowUtils.getEscrows(filters);
> `static` **getPayouts**(`filter`): `Promise`\<[`Payout`](../../types/type-aliases/Payout.md)[]\>
-Defined in: [escrow.ts:2056](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2056)
+Defined in: [escrow.ts:2056](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L2056)
This function returns the payouts for a given set of networks.
@@ -451,7 +451,7 @@ console.log(payouts);
> `static` **getStatusEvents**(`filter`): `Promise`\<[`StatusEvent`](../../graphql/types/type-aliases/StatusEvent.md)[]\>
-Defined in: [escrow.ts:1965](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1965)
+Defined in: [escrow.ts:1965](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1965)
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 1eac58167c..020d6a9dd2 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyEscrowData.md
@@ -8,7 +8,7 @@
> **DailyEscrowData** = `object`
-Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L75)
+Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L75)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:75](https://github.com/humanprotocol/human-protoco
> **escrowsCancelled**: `number`
-Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L81)
+Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L81)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:81](https://github.com/humanprotocol/human-protoco
> **escrowsPaid**: `number`
-Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L80)
+Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L80)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:80](https://github.com/humanprotocol/human-protoco
> **escrowsPending**: `number`
-Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L78)
+Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L78)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:78](https://github.com/humanprotocol/human-protoco
> **escrowsSolved**: `number`
-Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L79)
+Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L79)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:79](https://github.com/humanprotocol/human-protoco
> **escrowsTotal**: `number`
-Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L77)
+Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L77)
***
@@ -56,4 +56,4 @@ Defined in: [graphql/types.ts:77](https://github.com/humanprotocol/human-protoco
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:76](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L76)
+Defined in: [graphql/types.ts:76](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L76)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md
index badf11b1f6..dd4dc9c601 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyHMTData.md
@@ -8,7 +8,7 @@
> **DailyHMTData** = `object`
-Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L119)
+Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L119)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:119](https://github.com/humanprotocol/human-protoc
> **dailyUniqueReceivers**: `number`
-Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L124)
+Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L124)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:124](https://github.com/humanprotocol/human-protoc
> **dailyUniqueSenders**: `number`
-Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L123)
+Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L123)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:123](https://github.com/humanprotocol/human-protoc
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L120)
+Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L120)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:120](https://github.com/humanprotocol/human-protoc
> **totalTransactionAmount**: `bigint`
-Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L121)
+Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L121)
***
@@ -48,4 +48,4 @@ Defined in: [graphql/types.ts:121](https://github.com/humanprotocol/human-protoc
> **totalTransactionCount**: `number`
-Defined in: [graphql/types.ts:122](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L122)
+Defined in: [graphql/types.ts:122](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L122)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md
index 8632ea0fa6..1352df3361 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyPaymentData.md
@@ -8,7 +8,7 @@
> **DailyPaymentData** = `object`
-Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L98)
+Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L98)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:98](https://github.com/humanprotocol/human-protoco
> **averageAmountPerWorker**: `bigint`
-Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L102)
+Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L102)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:102](https://github.com/humanprotocol/human-protoc
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L99)
+Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L99)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:99](https://github.com/humanprotocol/human-protoco
> **totalAmountPaid**: `bigint`
-Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L100)
+Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L100)
***
@@ -40,4 +40,4 @@ Defined in: [graphql/types.ts:100](https://github.com/humanprotocol/human-protoc
> **totalCount**: `number`
-Defined in: [graphql/types.ts:101](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L101)
+Defined in: [graphql/types.ts:101](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L101)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md
index b85caadcb0..c8e97243a2 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyTaskData.md
@@ -8,7 +8,7 @@
> **DailyTaskData** = `object`
-Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L140)
+Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L140)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:140](https://github.com/humanprotocol/human-protoc
> **tasksSolved**: `number`
-Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L143)
+Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L143)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:143](https://github.com/humanprotocol/human-protoc
> **tasksTotal**: `number`
-Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L142)
+Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L142)
***
@@ -32,4 +32,4 @@ Defined in: [graphql/types.ts:142](https://github.com/humanprotocol/human-protoc
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:141](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L141)
+Defined in: [graphql/types.ts:141](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L141)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md b/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md
index d7d4c3a81b..9dc7d466e8 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/DailyWorkerData.md
@@ -8,7 +8,7 @@
> **DailyWorkerData** = `object`
-Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L89)
+Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L89)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:89](https://github.com/humanprotocol/human-protoco
> **activeWorkers**: `number`
-Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L91)
+Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L91)
***
@@ -24,4 +24,4 @@ Defined in: [graphql/types.ts:91](https://github.com/humanprotocol/human-protoco
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:90](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L90)
+Defined in: [graphql/types.ts:90](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L90)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md
index cc9c939114..3b5402c1e3 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowData.md
@@ -8,7 +8,7 @@
> **EscrowData** = `object`
-Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L3)
+Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L3)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:3](https://github.com/humanprotocol/human-protocol
> **address**: `string`
-Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L5)
+Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L5)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:5](https://github.com/humanprotocol/human-protocol
> **amountPaid**: `string`
-Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L6)
+Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L6)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:6](https://github.com/humanprotocol/human-protocol
> **balance**: `string`
-Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L7)
+Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L7)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:7](https://github.com/humanprotocol/human-protocol
> **chainId**: `number`
-Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L22)
+Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L22)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:22](https://github.com/humanprotocol/human-protoco
> **count**: `string`
-Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L8)
+Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L8)
***
@@ -56,7 +56,7 @@ Defined in: [graphql/types.ts:8](https://github.com/humanprotocol/human-protocol
> **createdAt**: `string`
-Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L21)
+Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L21)
***
@@ -64,7 +64,7 @@ Defined in: [graphql/types.ts:21](https://github.com/humanprotocol/human-protoco
> `optional` **exchangeOracle**: `string`
-Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L17)
+Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L17)
***
@@ -72,7 +72,7 @@ Defined in: [graphql/types.ts:17](https://github.com/humanprotocol/human-protoco
> **factoryAddress**: `string`
-Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L9)
+Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L9)
***
@@ -80,7 +80,7 @@ Defined in: [graphql/types.ts:9](https://github.com/humanprotocol/human-protocol
> `optional` **finalResultsUrl**: `string`
-Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L10)
+Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L10)
***
@@ -88,7 +88,7 @@ Defined in: [graphql/types.ts:10](https://github.com/humanprotocol/human-protoco
> **id**: `string`
-Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L4)
+Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L4)
***
@@ -96,7 +96,7 @@ Defined in: [graphql/types.ts:4](https://github.com/humanprotocol/human-protocol
> `optional` **intermediateResultsUrl**: `string`
-Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L11)
+Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L11)
***
@@ -104,7 +104,7 @@ Defined in: [graphql/types.ts:11](https://github.com/humanprotocol/human-protoco
> **launcher**: `string`
-Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L12)
+Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L12)
***
@@ -112,7 +112,7 @@ Defined in: [graphql/types.ts:12](https://github.com/humanprotocol/human-protoco
> `optional` **manifestHash**: `string`
-Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L13)
+Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L13)
***
@@ -120,7 +120,7 @@ Defined in: [graphql/types.ts:13](https://github.com/humanprotocol/human-protoco
> `optional` **manifestUrl**: `string`
-Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L14)
+Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L14)
***
@@ -128,7 +128,7 @@ Defined in: [graphql/types.ts:14](https://github.com/humanprotocol/human-protoco
> `optional` **recordingOracle**: `string`
-Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L15)
+Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L15)
***
@@ -136,7 +136,7 @@ Defined in: [graphql/types.ts:15](https://github.com/humanprotocol/human-protoco
> `optional` **reputationOracle**: `string`
-Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L16)
+Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L16)
***
@@ -144,7 +144,7 @@ Defined in: [graphql/types.ts:16](https://github.com/humanprotocol/human-protoco
> **status**: `string`
-Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L18)
+Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L18)
***
@@ -152,7 +152,7 @@ Defined in: [graphql/types.ts:18](https://github.com/humanprotocol/human-protoco
> **token**: `string`
-Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L19)
+Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L19)
***
@@ -160,4 +160,4 @@ Defined in: [graphql/types.ts:19](https://github.com/humanprotocol/human-protoco
> **totalFundedAmount**: `string`
-Defined in: [graphql/types.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L20)
+Defined in: [graphql/types.ts:20](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L20)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md
index 099c3414e5..e6c4a2eaa6 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatistics.md
@@ -8,7 +8,7 @@
> **EscrowStatistics** = `object`
-Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L84)
+Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L84)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:84](https://github.com/humanprotocol/human-protoco
> **dailyEscrowsData**: [`DailyEscrowData`](DailyEscrowData.md)[]
-Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L86)
+Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L86)
***
@@ -24,4 +24,4 @@ Defined in: [graphql/types.ts:86](https://github.com/humanprotocol/human-protoco
> **totalEscrows**: `number`
-Defined in: [graphql/types.ts:85](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L85)
+Defined in: [graphql/types.ts:85](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L85)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md
index 219b8fc921..b942688ec5 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/EscrowStatisticsData.md
@@ -8,7 +8,7 @@
> **EscrowStatisticsData** = `object`
-Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L34)
+Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L34)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:34](https://github.com/humanprotocol/human-protoco
> **bulkPayoutEventCount**: `string`
-Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L37)
+Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L37)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:37](https://github.com/humanprotocol/human-protoco
> **cancelledStatusEventCount**: `string`
-Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L39)
+Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L39)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:39](https://github.com/humanprotocol/human-protoco
> **completedStatusEventCount**: `string`
-Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L42)
+Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L42)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:42](https://github.com/humanprotocol/human-protoco
> **fundEventCount**: `string`
-Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L35)
+Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L35)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:35](https://github.com/humanprotocol/human-protoco
> **paidStatusEventCount**: `string`
-Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L41)
+Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L41)
***
@@ -56,7 +56,7 @@ Defined in: [graphql/types.ts:41](https://github.com/humanprotocol/human-protoco
> **partialStatusEventCount**: `string`
-Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L40)
+Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L40)
***
@@ -64,7 +64,7 @@ Defined in: [graphql/types.ts:40](https://github.com/humanprotocol/human-protoco
> **pendingStatusEventCount**: `string`
-Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L38)
+Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L38)
***
@@ -72,7 +72,7 @@ Defined in: [graphql/types.ts:38](https://github.com/humanprotocol/human-protoco
> **storeResultsEventCount**: `string`
-Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L36)
+Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L36)
***
@@ -80,7 +80,7 @@ Defined in: [graphql/types.ts:36](https://github.com/humanprotocol/human-protoco
> **totalEscrowCount**: `string`
-Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L44)
+Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L44)
***
@@ -88,4 +88,4 @@ Defined in: [graphql/types.ts:44](https://github.com/humanprotocol/human-protoco
> **totalEventCount**: `string`
-Defined in: [graphql/types.ts:43](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L43)
+Defined in: [graphql/types.ts:43](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L43)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md b/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md
index c5c577c810..bf156b7d2c 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/EventDayData.md
@@ -8,7 +8,7 @@
> **EventDayData** = `object`
-Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L47)
+Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L47)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:47](https://github.com/humanprotocol/human-protoco
> **dailyBulkPayoutEventCount**: `string`
-Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L51)
+Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L51)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:51](https://github.com/humanprotocol/human-protoco
> **dailyCancelledStatusEventCount**: `string`
-Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L53)
+Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L53)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:53](https://github.com/humanprotocol/human-protoco
> **dailyCompletedStatusEventCount**: `string`
-Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L56)
+Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L56)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:56](https://github.com/humanprotocol/human-protoco
> **dailyEscrowCount**: `string`
-Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L58)
+Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L58)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:58](https://github.com/humanprotocol/human-protoco
> **dailyFundEventCount**: `string`
-Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L49)
+Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L49)
***
@@ -56,7 +56,7 @@ Defined in: [graphql/types.ts:49](https://github.com/humanprotocol/human-protoco
> **dailyHMTPayoutAmount**: `string`
-Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L61)
+Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L61)
***
@@ -64,7 +64,7 @@ Defined in: [graphql/types.ts:61](https://github.com/humanprotocol/human-protoco
> **dailyHMTTransferAmount**: `string`
-Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L63)
+Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L63)
***
@@ -72,7 +72,7 @@ Defined in: [graphql/types.ts:63](https://github.com/humanprotocol/human-protoco
> **dailyHMTTransferCount**: `string`
-Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L62)
+Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L62)
***
@@ -80,7 +80,7 @@ Defined in: [graphql/types.ts:62](https://github.com/humanprotocol/human-protoco
> **dailyPaidStatusEventCount**: `string`
-Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L55)
+Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L55)
***
@@ -88,7 +88,7 @@ Defined in: [graphql/types.ts:55](https://github.com/humanprotocol/human-protoco
> **dailyPartialStatusEventCount**: `string`
-Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L54)
+Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L54)
***
@@ -96,7 +96,7 @@ Defined in: [graphql/types.ts:54](https://github.com/humanprotocol/human-protoco
> **dailyPayoutCount**: `string`
-Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L60)
+Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L60)
***
@@ -104,7 +104,7 @@ Defined in: [graphql/types.ts:60](https://github.com/humanprotocol/human-protoco
> **dailyPendingStatusEventCount**: `string`
-Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L52)
+Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L52)
***
@@ -112,7 +112,7 @@ Defined in: [graphql/types.ts:52](https://github.com/humanprotocol/human-protoco
> **dailyStoreResultsEventCount**: `string`
-Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L50)
+Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L50)
***
@@ -120,7 +120,7 @@ Defined in: [graphql/types.ts:50](https://github.com/humanprotocol/human-protoco
> **dailyTotalEventCount**: `string`
-Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L57)
+Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L57)
***
@@ -128,7 +128,7 @@ Defined in: [graphql/types.ts:57](https://github.com/humanprotocol/human-protoco
> **dailyUniqueReceivers**: `string`
-Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L65)
+Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L65)
***
@@ -136,7 +136,7 @@ Defined in: [graphql/types.ts:65](https://github.com/humanprotocol/human-protoco
> **dailyUniqueSenders**: `string`
-Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L64)
+Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L64)
***
@@ -144,7 +144,7 @@ Defined in: [graphql/types.ts:64](https://github.com/humanprotocol/human-protoco
> **dailyWorkerCount**: `string`
-Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L59)
+Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L59)
***
@@ -152,4 +152,4 @@ Defined in: [graphql/types.ts:59](https://github.com/humanprotocol/human-protoco
> **timestamp**: `string`
-Defined in: [graphql/types.ts:48](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L48)
+Defined in: [graphql/types.ts:48](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L48)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md
index 65c5780207..0a7d30af82 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolder.md
@@ -8,7 +8,7 @@
> **HMTHolder** = `object`
-Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L114)
+Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L114)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:114](https://github.com/humanprotocol/human-protoc
> **address**: `string`
-Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L115)
+Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L115)
***
@@ -24,4 +24,4 @@ Defined in: [graphql/types.ts:115](https://github.com/humanprotocol/human-protoc
> **balance**: `bigint`
-Defined in: [graphql/types.ts:116](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L116)
+Defined in: [graphql/types.ts:116](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L116)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md
index 7602659a25..04ae1f097d 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTHolderData.md
@@ -8,7 +8,7 @@
> **HMTHolderData** = `object`
-Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L109)
+Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L109)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:109](https://github.com/humanprotocol/human-protoc
> **address**: `string`
-Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L110)
+Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L110)
***
@@ -24,4 +24,4 @@ Defined in: [graphql/types.ts:110](https://github.com/humanprotocol/human-protoc
> **balance**: `string`
-Defined in: [graphql/types.ts:111](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L111)
+Defined in: [graphql/types.ts:111](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L111)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md
index 4636faaff3..e5a605b8ca 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatistics.md
@@ -8,7 +8,7 @@
> **HMTStatistics** = `object`
-Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L127)
+Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L127)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:127](https://github.com/humanprotocol/human-protoc
> **totalHolders**: `number`
-Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L130)
+Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L130)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:130](https://github.com/humanprotocol/human-protoc
> **totalTransferAmount**: `bigint`
-Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L128)
+Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L128)
***
@@ -32,4 +32,4 @@ Defined in: [graphql/types.ts:128](https://github.com/humanprotocol/human-protoc
> **totalTransferCount**: `number`
-Defined in: [graphql/types.ts:129](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L129)
+Defined in: [graphql/types.ts:129](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L129)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md
index 7ef3c4dc1a..e6928d4ce7 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/HMTStatisticsData.md
@@ -8,7 +8,7 @@
> **HMTStatisticsData** = `object`
-Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L25)
+Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L25)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:25](https://github.com/humanprotocol/human-protoco
> **holders**: `string`
-Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L31)
+Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L31)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:31](https://github.com/humanprotocol/human-protoco
> **totalApprovalEventCount**: `string`
-Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L28)
+Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L28)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:28](https://github.com/humanprotocol/human-protoco
> **totalBulkApprovalEventCount**: `string`
-Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L29)
+Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L29)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:29](https://github.com/humanprotocol/human-protoco
> **totalBulkTransferEventCount**: `string`
-Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L27)
+Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L27)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:27](https://github.com/humanprotocol/human-protoco
> **totalTransferEventCount**: `string`
-Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L26)
+Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L26)
***
@@ -56,4 +56,4 @@ Defined in: [graphql/types.ts:26](https://github.com/humanprotocol/human-protoco
> **totalValueTransfered**: `string`
-Defined in: [graphql/types.ts:30](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L30)
+Defined in: [graphql/types.ts:30](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L30)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/IMData.md b/docs/sdk/typescript/graphql/types/type-aliases/IMData.md
index 6ecb5b0506..4ac5eff754 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/IMData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/IMData.md
@@ -8,4 +8,4 @@
> **IMData** = `Record`\<`string`, [`IMDataEntity`](IMDataEntity.md)\>
-Defined in: [graphql/types.ts:138](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L138)
+Defined in: [graphql/types.ts:138](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L138)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md b/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md
index 78c3a1f800..28b64a9927 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/IMDataEntity.md
@@ -8,7 +8,7 @@
> **IMDataEntity** = `object`
-Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L133)
+Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L133)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:133](https://github.com/humanprotocol/human-protoc
> **served**: `number`
-Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L134)
+Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L134)
***
@@ -24,4 +24,4 @@ Defined in: [graphql/types.ts:134](https://github.com/humanprotocol/human-protoc
> **solved**: `number`
-Defined in: [graphql/types.ts:135](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L135)
+Defined in: [graphql/types.ts:135](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L135)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md b/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md
index 7530835ae6..79c1094152 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/KVStoreData.md
@@ -8,7 +8,7 @@
> **KVStoreData** = `object`
-Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L157)
+Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L157)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:157](https://github.com/humanprotocol/human-protoc
> **address**: `string`
-Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L159)
+Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L159)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:159](https://github.com/humanprotocol/human-protoc
> **block**: `number`
-Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L163)
+Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L163)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:163](https://github.com/humanprotocol/human-protoc
> **id**: `string`
-Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L158)
+Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L158)
***
@@ -40,7 +40,7 @@ Defined in: [graphql/types.ts:158](https://github.com/humanprotocol/human-protoc
> **key**: `string`
-Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L160)
+Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L160)
***
@@ -48,7 +48,7 @@ Defined in: [graphql/types.ts:160](https://github.com/humanprotocol/human-protoc
> **timestamp**: `Date`
-Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L162)
+Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L162)
***
@@ -56,4 +56,4 @@ Defined in: [graphql/types.ts:162](https://github.com/humanprotocol/human-protoc
> **value**: `string`
-Defined in: [graphql/types.ts:161](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L161)
+Defined in: [graphql/types.ts:161](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L161)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md
index 9b807ed2e5..bd3f076144 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/PaymentStatistics.md
@@ -8,7 +8,7 @@
> **PaymentStatistics** = `object`
-Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L105)
+Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L105)
## Properties
@@ -16,4 +16,4 @@ Defined in: [graphql/types.ts:105](https://github.com/humanprotocol/human-protoc
> **dailyPaymentsData**: [`DailyPaymentData`](DailyPaymentData.md)[]
-Defined in: [graphql/types.ts:106](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L106)
+Defined in: [graphql/types.ts:106](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L106)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md b/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md
index 82f0ca7c1c..2abf81e13a 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/RewardAddedEventData.md
@@ -8,7 +8,7 @@
> **RewardAddedEventData** = `object`
-Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L68)
+Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L68)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:68](https://github.com/humanprotocol/human-protoco
> **amount**: `string`
-Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L72)
+Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L72)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:72](https://github.com/humanprotocol/human-protoco
> **escrowAddress**: `string`
-Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L69)
+Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L69)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:69](https://github.com/humanprotocol/human-protoco
> **slasher**: `string`
-Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L71)
+Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L71)
***
@@ -40,4 +40,4 @@ Defined in: [graphql/types.ts:71](https://github.com/humanprotocol/human-protoco
> **staker**: `string`
-Defined in: [graphql/types.ts:70](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L70)
+Defined in: [graphql/types.ts:70](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L70)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md b/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md
index 6254fad0da..363fbffd91 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/StatusEvent.md
@@ -8,7 +8,7 @@
> **StatusEvent** = `object`
-Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L150)
+Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L150)
## Properties
@@ -16,7 +16,7 @@ Defined in: [graphql/types.ts:150](https://github.com/humanprotocol/human-protoc
> **chainId**: [`ChainId`](../../../enums/enumerations/ChainId.md)
-Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L154)
+Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L154)
***
@@ -24,7 +24,7 @@ Defined in: [graphql/types.ts:154](https://github.com/humanprotocol/human-protoc
> **escrowAddress**: `string`
-Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L152)
+Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L152)
***
@@ -32,7 +32,7 @@ Defined in: [graphql/types.ts:152](https://github.com/humanprotocol/human-protoc
> **status**: `string`
-Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L153)
+Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L153)
***
@@ -40,4 +40,4 @@ Defined in: [graphql/types.ts:153](https://github.com/humanprotocol/human-protoc
> **timestamp**: `number`
-Defined in: [graphql/types.ts:151](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L151)
+Defined in: [graphql/types.ts:151](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L151)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md
index c601efdcc8..5a15fe85ba 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/TaskStatistics.md
@@ -8,7 +8,7 @@
> **TaskStatistics** = `object`
-Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L146)
+Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L146)
## Properties
@@ -16,4 +16,4 @@ Defined in: [graphql/types.ts:146](https://github.com/humanprotocol/human-protoc
> **dailyTasksData**: [`DailyTaskData`](DailyTaskData.md)[]
-Defined in: [graphql/types.ts:147](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L147)
+Defined in: [graphql/types.ts:147](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L147)
diff --git a/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md b/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md
index 24b234f3d7..23e04a44a0 100644
--- a/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md
+++ b/docs/sdk/typescript/graphql/types/type-aliases/WorkerStatistics.md
@@ -8,7 +8,7 @@
> **WorkerStatistics** = `object`
-Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L94)
+Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L94)
## Properties
@@ -16,4 +16,4 @@ Defined in: [graphql/types.ts:94](https://github.com/humanprotocol/human-protoco
> **dailyWorkersData**: [`DailyWorkerData`](DailyWorkerData.md)[]
-Defined in: [graphql/types.ts:95](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L95)
+Defined in: [graphql/types.ts:95](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/graphql/types.ts#L95)
diff --git a/docs/sdk/typescript/interfaces/README.md b/docs/sdk/typescript/interfaces/README.md
index 9c8bb4db81..39e445b357 100644
--- a/docs/sdk/typescript/interfaces/README.md
+++ b/docs/sdk/typescript/interfaces/README.md
@@ -24,6 +24,8 @@
- [IReputationNetwork](interfaces/IReputationNetwork.md)
- [IReputationNetworkSubgraph](interfaces/IReputationNetworkSubgraph.md)
- [IReward](interfaces/IReward.md)
+- [IStaker](interfaces/IStaker.md)
+- [IStakersFilter](interfaces/IStakersFilter.md)
- [IStatisticsFilter](interfaces/IStatisticsFilter.md)
- [IStatusEventFilter](interfaces/IStatusEventFilter.md)
- [ITransaction](interfaces/ITransaction.md)
diff --git a/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md b/docs/sdk/typescript/interfaces/interfaces/ICancellationRefundFilter.md
index 19ac4967ed..9a5cfc5525 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:212](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L212)
+Defined in: [interfaces.ts:248](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L248)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:212](https://github.com/humanprotocol/human-protocol/
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:213](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L213)
+Defined in: [interfaces.ts:249](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L249)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:213](https://github.com/humanprotocol/human-protocol/
> `optional` **escrowAddress**: `string`
-Defined in: [interfaces.ts:214](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L214)
+Defined in: [interfaces.ts:250](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L250)
***
@@ -34,7 +34,7 @@ Defined in: [interfaces.ts:214](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **from**: `Date`
-Defined in: [interfaces.ts:216](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L216)
+Defined in: [interfaces.ts:252](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L252)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:216](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -66,7 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **receiver**: `string`
-Defined in: [interfaces.ts:215](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L215)
+Defined in: [interfaces.ts:251](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L251)
***
@@ -74,7 +74,7 @@ Defined in: [interfaces.ts:215](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -86,4 +86,4 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/
> `optional` **to**: `Date`
-Defined in: [interfaces.ts:217](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L217)
+Defined in: [interfaces.ts:253](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L253)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrow.md b/docs/sdk/typescript/interfaces/interfaces/IEscrow.md
index 58e4356b0d..6960cb8b87 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IEscrow.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IEscrow.md
@@ -6,7 +6,7 @@
# Interface: IEscrow
-Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67)
+Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L77)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/b
> **address**: `string`
-Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L69)
+Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L79)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/b
> **amountPaid**: `string`
-Defined in: [interfaces.ts:70](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L70)
+Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L80)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:70](https://github.com/humanprotocol/human-protocol/b
> **balance**: `string`
-Defined in: [interfaces.ts:71](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L71)
+Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L81)
***
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:71](https://github.com/humanprotocol/human-protocol/b
> **chainId**: `number`
-Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L86)
+Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L96)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/b
> **count**: `string`
-Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L72)
+Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L82)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/b
> **createdAt**: `string`
-Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L85)
+Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L95)
***
@@ -62,7 +62,7 @@ Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/b
> `optional` **exchangeOracle**: `string`
-Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L81)
+Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L91)
***
@@ -70,7 +70,7 @@ Defined in: [interfaces.ts:81](https://github.com/humanprotocol/human-protocol/b
> **factoryAddress**: `string`
-Defined in: [interfaces.ts:73](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L73)
+Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L83)
***
@@ -78,7 +78,7 @@ Defined in: [interfaces.ts:73](https://github.com/humanprotocol/human-protocol/b
> `optional` **finalResultsUrl**: `string`
-Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L74)
+Defined in: [interfaces.ts:84](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L84)
***
@@ -86,7 +86,7 @@ Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/b
> **id**: `string`
-Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68)
+Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L78)
***
@@ -94,7 +94,7 @@ Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/b
> `optional` **intermediateResultsUrl**: `string`
-Defined in: [interfaces.ts:75](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L75)
+Defined in: [interfaces.ts:85](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L85)
***
@@ -102,7 +102,7 @@ Defined in: [interfaces.ts:75](https://github.com/humanprotocol/human-protocol/b
> **launcher**: `string`
-Defined in: [interfaces.ts:76](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L76)
+Defined in: [interfaces.ts:86](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L86)
***
@@ -110,7 +110,7 @@ Defined in: [interfaces.ts:76](https://github.com/humanprotocol/human-protocol/b
> `optional` **manifest**: `string`
-Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L78)
+Defined in: [interfaces.ts:88](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L88)
***
@@ -118,7 +118,7 @@ Defined in: [interfaces.ts:78](https://github.com/humanprotocol/human-protocol/b
> `optional` **manifestHash**: `string`
-Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L77)
+Defined in: [interfaces.ts:87](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L87)
***
@@ -126,7 +126,7 @@ Defined in: [interfaces.ts:77](https://github.com/humanprotocol/human-protocol/b
> `optional` **recordingOracle**: `string`
-Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L79)
+Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L89)
***
@@ -134,7 +134,7 @@ Defined in: [interfaces.ts:79](https://github.com/humanprotocol/human-protocol/b
> `optional` **reputationOracle**: `string`
-Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L80)
+Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L90)
***
@@ -142,7 +142,7 @@ Defined in: [interfaces.ts:80](https://github.com/humanprotocol/human-protocol/b
> **status**: `string`
-Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L82)
+Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L92)
***
@@ -150,7 +150,7 @@ Defined in: [interfaces.ts:82](https://github.com/humanprotocol/human-protocol/b
> **token**: `string`
-Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L83)
+Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L93)
***
@@ -158,4 +158,4 @@ Defined in: [interfaces.ts:83](https://github.com/humanprotocol/human-protocol/b
> **totalFundedAmount**: `string`
-Defined in: [interfaces.ts:84](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L84)
+Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L94)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md b/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md
index 00f9c91d1a..d9a32951fe 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IEscrowConfig.md
@@ -6,7 +6,7 @@
# Interface: IEscrowConfig
-Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L101)
+Defined in: [interfaces.ts:111](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L111)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/
> **exchangeOracle**: `string`
-Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L104)
+Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L114)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/
> **exchangeOracleFee**: `bigint`
-Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L107)
+Defined in: [interfaces.ts:117](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L117)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/
> **manifest**: `string`
-Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L108)
+Defined in: [interfaces.ts:118](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L118)
***
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/
> **manifestHash**: `string`
-Defined in: [interfaces.ts:109](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L109)
+Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L119)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:109](https://github.com/humanprotocol/human-protocol/
> **recordingOracle**: `string`
-Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L102)
+Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L112)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/
> **recordingOracleFee**: `bigint`
-Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L105)
+Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L115)
***
@@ -62,7 +62,7 @@ Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/
> **reputationOracle**: `string`
-Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L103)
+Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L113)
***
@@ -70,4 +70,4 @@ Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/
> **reputationOracleFee**: `bigint`
-Defined in: [interfaces.ts:106](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L106)
+Defined in: [interfaces.ts:116](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L116)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md b/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md
index 0536066f41..d3ae73d972 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IEscrowsFilter.md
@@ -6,7 +6,7 @@
# Interface: IEscrowsFilter
-Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L89)
+Defined in: [interfaces.ts:99](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L99)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:89](https://github.com/humanprotocol/human-protocol/b
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:98](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L98)
+Defined in: [interfaces.ts:108](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L108)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:98](https://github.com/humanprotocol/human-protocol/b
> `optional` **exchangeOracle**: `string`
-Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L93)
+Defined in: [interfaces.ts:103](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L103)
***
@@ -34,7 +34,7 @@ Defined in: [interfaces.ts:93](https://github.com/humanprotocol/human-protocol/b
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **from**: `Date`
-Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L96)
+Defined in: [interfaces.ts:106](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L106)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:96](https://github.com/humanprotocol/human-protocol/b
> `optional` **jobRequesterId**: `string`
-Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L94)
+Defined in: [interfaces.ts:104](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L104)
***
@@ -62,7 +62,7 @@ Defined in: [interfaces.ts:94](https://github.com/humanprotocol/human-protocol/b
> `optional` **launcher**: `string`
-Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L90)
+Defined in: [interfaces.ts:100](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L100)
***
@@ -70,7 +70,7 @@ Defined in: [interfaces.ts:90](https://github.com/humanprotocol/human-protocol/b
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -82,7 +82,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **recordingOracle**: `string`
-Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L92)
+Defined in: [interfaces.ts:102](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L102)
***
@@ -90,7 +90,7 @@ Defined in: [interfaces.ts:92](https://github.com/humanprotocol/human-protocol/b
> `optional` **reputationOracle**: `string`
-Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L91)
+Defined in: [interfaces.ts:101](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L101)
***
@@ -98,7 +98,7 @@ Defined in: [interfaces.ts:91](https://github.com/humanprotocol/human-protocol/b
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -110,7 +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)[]
-Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L95)
+Defined in: [interfaces.ts:105](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L105)
***
@@ -118,4 +118,4 @@ Defined in: [interfaces.ts:95](https://github.com/humanprotocol/human-protocol/b
> `optional` **to**: `Date`
-Defined in: [interfaces.ts:97](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L97)
+Defined in: [interfaces.ts:107](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L107)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md b/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md
index 20060a600b..3e736830ed 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IHMTHoldersParams.md
@@ -6,7 +6,7 @@
# Interface: IHMTHoldersParams
-Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L124)
+Defined in: [interfaces.ts:134](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L134)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/
> `optional` **address**: `string`
-Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L125)
+Defined in: [interfaces.ts:135](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L135)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -50,7 +50,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
diff --git a/docs/sdk/typescript/interfaces/interfaces/IKVStore.md b/docs/sdk/typescript/interfaces/interfaces/IKVStore.md
index 45f14a50ef..e2405a479d 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IKVStore.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IKVStore.md
@@ -6,7 +6,7 @@
# Interface: IKVStore
-Defined in: [interfaces.ts:136](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L136)
+Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L146)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:136](https://github.com/humanprotocol/human-protocol/
> **key**: `string`
-Defined in: [interfaces.ts:137](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L137)
+Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L147)
***
@@ -22,4 +22,4 @@ Defined in: [interfaces.ts:137](https://github.com/humanprotocol/human-protocol/
> **value**: `string`
-Defined in: [interfaces.ts:138](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L138)
+Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L148)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md b/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md
index b4e546d2cb..13428a9bdc 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IKeyPair.md
@@ -6,7 +6,7 @@
# Interface: IKeyPair
-Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L112)
+Defined in: [interfaces.ts:122](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L122)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:112](https://github.com/humanprotocol/human-protocol/
> **passphrase**: `string`
-Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L115)
+Defined in: [interfaces.ts:125](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L125)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:115](https://github.com/humanprotocol/human-protocol/
> **privateKey**: `string`
-Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L113)
+Defined in: [interfaces.ts:123](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L123)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:113](https://github.com/humanprotocol/human-protocol/
> **publicKey**: `string`
-Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L114)
+Defined in: [interfaces.ts:124](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L124)
***
@@ -38,4 +38,4 @@ Defined in: [interfaces.ts:114](https://github.com/humanprotocol/human-protocol/
> `optional` **revocationCertificate**: `string`
-Defined in: [interfaces.ts:116](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L116)
+Defined in: [interfaces.ts:126](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L126)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IOperator.md b/docs/sdk/typescript/interfaces/interfaces/IOperator.md
index 5765022af0..51b7f998c4 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IOperator.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IOperator.md
@@ -6,7 +6,7 @@
# Interface: IOperator
-Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L9)
+Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L9)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:9](https://github.com/humanprotocol/human-protocol/bl
> **address**: `string`
-Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12)
+Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12)
***
@@ -22,39 +22,7 @@ Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/b
> **amountJobsProcessed**: `bigint`
-Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16)
+Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18)
***
@@ -62,7 +30,7 @@ Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/b
> `optional` **category**: `string`
-Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L31)
+Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30)
***
@@ -70,7 +38,7 @@ Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/b
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L11)
+Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L11)
***
@@ -78,7 +46,7 @@ Defined in: [interfaces.ts:11](https://github.com/humanprotocol/human-protocol/b
> `optional` **fee**: `bigint`
-Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21)
+Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20)
***
@@ -86,7 +54,7 @@ Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/b
> **id**: `string`
-Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10)
+Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10)
***
@@ -94,7 +62,15 @@ Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/b
> `optional` **jobTypes**: `string`[]
-Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L26)
+Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25)
+
+***
+
+### lockedAmount
+
+> **lockedAmount**: `bigint`
+
+Defined in: [interfaces.ts:14](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L14)
***
@@ -102,7 +78,7 @@ Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/b
> **lockedUntilTimestamp**: `bigint`
-Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15)
+Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15)
***
@@ -110,7 +86,7 @@ Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/b
> `optional` **name**: `string`
-Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30)
+Defined in: [interfaces.ts:29](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L29)
***
@@ -118,7 +94,7 @@ Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/b
> `optional` **publicKey**: `string`
-Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22)
+Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21)
***
@@ -126,7 +102,7 @@ Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/b
> `optional` **registrationInstructions**: `string`
-Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28)
+Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27)
***
@@ -134,7 +110,7 @@ Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/b
> `optional` **registrationNeeded**: `boolean`
-Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27)
+Defined in: [interfaces.ts:26](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L26)
***
@@ -142,23 +118,31 @@ Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/b
> `optional` **reputationNetworks**: `string`[]
-Defined in: [interfaces.ts:29](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L29)
+Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28)
***
-### reward
+### role?
-> **reward**: `bigint`
+> `optional` **role**: `string`
-Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18)
+Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L19)
***
-### role?
+### slashedAmount
-> `optional` **role**: `string`
+> **slashedAmount**: `bigint`
-Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20)
+Defined in: [interfaces.ts:17](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L17)
+
+***
+
+### stakedAmount
+
+> **stakedAmount**: `bigint`
+
+Defined in: [interfaces.ts:13](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L13)
***
@@ -166,7 +150,7 @@ Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/b
> `optional` **url**: `string`
-Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25)
+Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24)
***
@@ -174,7 +158,7 @@ Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/b
> `optional` **webhookUrl**: `string`
-Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23)
+Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22)
***
@@ -182,4 +166,12 @@ Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/b
> `optional` **website**: `string`
-Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24)
+Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23)
+
+***
+
+### withdrawnAmount
+
+> **withdrawnAmount**: `bigint`
+
+Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 f783cf3420..77bc0773a5 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IOperatorSubgraph.md
@@ -6,11 +6,7 @@
# Interface: IOperatorSubgraph
-Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L34)
-
-## Extends
-
-- `Omit`\<[`IOperator`](IOperator.md), `"jobTypes"` \| `"reputationNetworks"` \| `"chainId"`\>
+Defined in: [interfaces.ts:33](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L33)
## Properties
@@ -18,11 +14,7 @@ Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/b
> **address**: `string`
-Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L12)
-
-#### Inherited from
-
-`Omit.address`
+Defined in: [interfaces.ts:35](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L35)
***
@@ -30,59 +22,7 @@ Defined in: [interfaces.ts:12](https://github.com/humanprotocol/human-protocol/b
> **amountJobsProcessed**: `bigint`
-Defined in: [interfaces.ts:19](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L16)
-
-#### Inherited from
-
-`Omit.amountWithdrawn`
+Defined in: [interfaces.ts:36](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L36)
***
@@ -90,11 +30,7 @@ Defined in: [interfaces.ts:16](https://github.com/humanprotocol/human-protocol/b
> `optional` **category**: `string`
-Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L31)
-
-#### Inherited from
-
-`Omit.category`
+Defined in: [interfaces.ts:46](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L46)
***
@@ -102,11 +38,7 @@ Defined in: [interfaces.ts:31](https://github.com/humanprotocol/human-protocol/b
> `optional` **fee**: `bigint`
-Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L21)
-
-#### Inherited from
-
-`Omit.fee`
+Defined in: [interfaces.ts:38](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L38)
***
@@ -114,31 +46,15 @@ Defined in: [interfaces.ts:21](https://github.com/humanprotocol/human-protocol/b
> **id**: `string`
-Defined in: [interfaces.ts:10](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L10)
-
-#### Inherited from
-
-`Omit.id`
+Defined in: [interfaces.ts:34](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L34)
***
### jobTypes?
-> `optional` **jobTypes**: `string`
-
-Defined in: [interfaces.ts:36](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L36)
-
-***
-
-### lockedUntilTimestamp
+> `optional` **jobTypes**: `string` \| `string`[]
-> **lockedUntilTimestamp**: `bigint`
-
-Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L15)
-
-#### Inherited from
-
-`Omit.lockedUntilTimestamp`
+Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L47)
***
@@ -146,11 +62,7 @@ Defined in: [interfaces.ts:15](https://github.com/humanprotocol/human-protocol/b
> `optional` **name**: `string`
-Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L30)
-
-#### Inherited from
-
-`Omit.name`
+Defined in: [interfaces.ts:45](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L45)
***
@@ -158,11 +70,7 @@ Defined in: [interfaces.ts:30](https://github.com/humanprotocol/human-protocol/b
> `optional` **publicKey**: `string`
-Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L22)
-
-#### Inherited from
-
-`Omit.publicKey`
+Defined in: [interfaces.ts:39](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L39)
***
@@ -170,11 +78,7 @@ Defined in: [interfaces.ts:22](https://github.com/humanprotocol/human-protocol/b
> `optional` **registrationInstructions**: `string`
-Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L28)
-
-#### Inherited from
-
-`Omit.registrationInstructions`
+Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L44)
***
@@ -182,11 +86,7 @@ Defined in: [interfaces.ts:28](https://github.com/humanprotocol/human-protocol/b
> `optional` **registrationNeeded**: `boolean`
-Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L27)
-
-#### Inherited from
-
-`Omit.registrationNeeded`
+Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L43)
***
@@ -194,7 +94,7 @@ Defined in: [interfaces.ts:27](https://github.com/humanprotocol/human-protocol/b
> `optional` **reputationNetworks**: `object`[]
-Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L37)
+Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48)
#### address
@@ -202,27 +102,43 @@ Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/b
***
-### reward
+### role?
+
+> `optional` **role**: `string`
+
+Defined in: [interfaces.ts:37](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L37)
+
+***
+
+### staker?
-> **reward**: `bigint`
+> `optional` **staker**: `object`
-Defined in: [interfaces.ts:18](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L18)
+Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49)
-#### Inherited from
+#### lastDepositTimestamp
-`Omit.reward`
+> **lastDepositTimestamp**: `bigint`
-***
+#### lockedAmount
-### role?
+> **lockedAmount**: `bigint`
-> `optional` **role**: `string`
+#### lockedUntilTimestamp
+
+> **lockedUntilTimestamp**: `bigint`
-Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L20)
+#### slashedAmount
-#### Inherited from
+> **slashedAmount**: `bigint`
-`Omit.role`
+#### stakedAmount
+
+> **stakedAmount**: `bigint`
+
+#### withdrawnAmount
+
+> **withdrawnAmount**: `bigint`
***
@@ -230,11 +146,7 @@ Defined in: [interfaces.ts:20](https://github.com/humanprotocol/human-protocol/b
> `optional` **url**: `string`
-Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L25)
-
-#### Inherited from
-
-`Omit.url`
+Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L42)
***
@@ -242,11 +154,7 @@ Defined in: [interfaces.ts:25](https://github.com/humanprotocol/human-protocol/b
> `optional` **webhookUrl**: `string`
-Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L23)
-
-#### Inherited from
-
-`Omit.webhookUrl`
+Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L40)
***
@@ -254,8 +162,4 @@ Defined in: [interfaces.ts:23](https://github.com/humanprotocol/human-protocol/b
> `optional` **website**: `string`
-Defined in: [interfaces.ts:24](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L24)
-
-#### Inherited from
-
-`Omit.website`
+Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 584f9d084d..549d5a21b5 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IOperatorsFilter.md
@@ -6,7 +6,7 @@
# Interface: IOperatorsFilter
-Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L40)
+Defined in: [interfaces.ts:59](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L59)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:40](https://github.com/humanprotocol/human-protocol/b
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L41)
+Defined in: [interfaces.ts:60](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L60)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:41](https://github.com/humanprotocol/human-protocol/b
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -34,11 +34,11 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
***
-### minAmountStaked?
+### minStakedAmount?
-> `optional` **minAmountStaked**: `number`
+> `optional` **minStakedAmount**: `number`
-Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L43)
+Defined in: [interfaces.ts:62](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L62)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:43](https://github.com/humanprotocol/human-protocol/b
> `optional` **orderBy**: `string`
-Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L44)
+Defined in: [interfaces.ts:63](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L63)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:44](https://github.com/humanprotocol/human-protocol/b
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -66,7 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **roles**: `string`[]
-Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L42)
+Defined in: [interfaces.ts:61](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L61)
***
@@ -74,7 +74,7 @@ Defined in: [interfaces.ts:42](https://github.com/humanprotocol/human-protocol/b
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
diff --git a/docs/sdk/typescript/interfaces/interfaces/IPagination.md b/docs/sdk/typescript/interfaces/interfaces/IPagination.md
index d30fd6d6aa..03acbfd68b 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IPagination.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IPagination.md
@@ -6,7 +6,7 @@
# Interface: IPagination
-Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L178)
+Defined in: [interfaces.ts:188](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L188)
## Extended by
@@ -18,6 +18,7 @@ Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/
- [`ITransactionsFilter`](ITransactionsFilter.md)
- [`IStatusEventFilter`](IStatusEventFilter.md)
- [`IWorkersFilter`](IWorkersFilter.md)
+- [`IStakersFilter`](IStakersFilter.md)
- [`ICancellationRefundFilter`](ICancellationRefundFilter.md)
## Properties
@@ -26,7 +27,7 @@ Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
***
@@ -34,7 +35,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
***
@@ -42,4 +43,4 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md b/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md
index 3c00054ab6..cd2681355a 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IPayoutFilter.md
@@ -6,7 +6,7 @@
# Interface: IPayoutFilter
-Defined in: [interfaces.ts:128](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L128)
+Defined in: [interfaces.ts:138](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L138)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:128](https://github.com/humanprotocol/human-protocol/
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L129)
+Defined in: [interfaces.ts:139](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L139)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/
> `optional` **escrowAddress**: `string`
-Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L130)
+Defined in: [interfaces.ts:140](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L140)
***
@@ -34,7 +34,7 @@ Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **from**: `Date`
-Defined in: [interfaces.ts:132](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L132)
+Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L142)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:132](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -66,7 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **recipient**: `string`
-Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L131)
+Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L141)
***
@@ -74,7 +74,7 @@ Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -86,4 +86,4 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/
> `optional` **to**: `Date`
-Defined in: [interfaces.ts:133](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L133)
+Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L143)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md b/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md
index 1e50769ab2..062e9e5b3b 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IReputationNetwork.md
@@ -6,7 +6,7 @@
# Interface: IReputationNetwork
-Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L47)
+Defined in: [interfaces.ts:66](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L66)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:47](https://github.com/humanprotocol/human-protocol/b
> **address**: `string`
-Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49)
+Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/b
> **id**: `string`
-Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48)
+Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67)
***
@@ -30,4 +30,4 @@ Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/b
> **operators**: [`IOperator`](IOperator.md)[]
-Defined in: [interfaces.ts:50](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L50)
+Defined in: [interfaces.ts:69](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 37d23c0242..fbb94b36b7 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IReputationNetworkSubgraph.md
@@ -6,7 +6,7 @@
# Interface: IReputationNetworkSubgraph
-Defined in: [interfaces.ts:53](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L53)
+Defined in: [interfaces.ts:72](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L72)
## Extends
@@ -18,11 +18,11 @@ Defined in: [interfaces.ts:53](https://github.com/humanprotocol/human-protocol/b
> **address**: `string`
-Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L49)
+Defined in: [interfaces.ts:68](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L68)
#### Inherited from
-`Omit.address`
+[`IReputationNetwork`](IReputationNetwork.md).[`address`](IReputationNetwork.md#address)
***
@@ -30,11 +30,11 @@ Defined in: [interfaces.ts:49](https://github.com/humanprotocol/human-protocol/b
> **id**: `string`
-Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L48)
+Defined in: [interfaces.ts:67](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L67)
#### Inherited from
-`Omit.id`
+[`IReputationNetwork`](IReputationNetwork.md).[`id`](IReputationNetwork.md#id)
***
@@ -42,4 +42,4 @@ Defined in: [interfaces.ts:48](https://github.com/humanprotocol/human-protocol/b
> **operators**: [`IOperatorSubgraph`](IOperatorSubgraph.md)[]
-Defined in: [interfaces.ts:55](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L55)
+Defined in: [interfaces.ts:74](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 7261f37b38..215f122ab3 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IReward.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IReward.md
@@ -6,7 +6,7 @@
# Interface: IReward
-Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L4)
+Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L4)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:4](https://github.com/humanprotocol/human-protocol/bl
> **amount**: `bigint`
-Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L6)
+Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L6)
***
@@ -22,4 +22,4 @@ Defined in: [interfaces.ts:6](https://github.com/humanprotocol/human-protocol/bl
> **escrowAddress**: `string`
-Defined in: [interfaces.ts:5](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L5)
+Defined in: [interfaces.ts:5](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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
new file mode 100644
index 0000000000..12c531ee86
--- /dev/null
+++ b/docs/sdk/typescript/interfaces/interfaces/IStaker.md
@@ -0,0 +1,57 @@
+[**@human-protocol/sdk**](../../README.md)
+
+***
+
+[@human-protocol/sdk](../../modules.md) / [interfaces](../README.md) / IStaker
+
+# Interface: IStaker
+
+Defined in: [interfaces.ts:222](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L222)
+
+## Properties
+
+### address
+
+> **address**: `string`
+
+Defined in: [interfaces.ts:223](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L223)
+
+***
+
+### lockedAmount
+
+> **lockedAmount**: `bigint`
+
+Defined in: [interfaces.ts:225](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L225)
+
+***
+
+### lockedUntil
+
+> **lockedUntil**: `bigint`
+
+Defined in: [interfaces.ts:226](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L226)
+
+***
+
+### slashedAmount
+
+> **slashedAmount**: `bigint`
+
+Defined in: [interfaces.ts:228](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L228)
+
+***
+
+### stakedAmount
+
+> **stakedAmount**: `bigint`
+
+Defined in: [interfaces.ts:224](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L224)
+
+***
+
+### withdrawableAmount
+
+> **withdrawableAmount**: `bigint`
+
+Defined in: [interfaces.ts:227](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L227)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md
new file mode 100644
index 0000000000..440e1f6620
--- /dev/null
+++ b/docs/sdk/typescript/interfaces/interfaces/IStakersFilter.md
@@ -0,0 +1,129 @@
+[**@human-protocol/sdk**](../../README.md)
+
+***
+
+[@human-protocol/sdk](../../modules.md) / [interfaces](../README.md) / IStakersFilter
+
+# Interface: IStakersFilter
+
+Defined in: [interfaces.ts:231](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L231)
+
+## Extends
+
+- [`IPagination`](IPagination.md)
+
+## Properties
+
+### chainId
+
+> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
+
+Defined in: [interfaces.ts:232](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L232)
+
+***
+
+### first?
+
+> `optional` **first**: `number`
+
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
+
+#### Inherited from
+
+[`IPagination`](IPagination.md).[`first`](IPagination.md#first)
+
+***
+
+### maxLockedAmount?
+
+> `optional` **maxLockedAmount**: `string`
+
+Defined in: [interfaces.ts:236](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L236)
+
+***
+
+### maxSlashedAmount?
+
+> `optional` **maxSlashedAmount**: `string`
+
+Defined in: [interfaces.ts:240](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L240)
+
+***
+
+### maxStakedAmount?
+
+> `optional` **maxStakedAmount**: `string`
+
+Defined in: [interfaces.ts:234](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L234)
+
+***
+
+### maxWithdrawnAmount?
+
+> `optional` **maxWithdrawnAmount**: `string`
+
+Defined in: [interfaces.ts:238](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L238)
+
+***
+
+### minLockedAmount?
+
+> `optional` **minLockedAmount**: `string`
+
+Defined in: [interfaces.ts:235](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L235)
+
+***
+
+### minSlashedAmount?
+
+> `optional` **minSlashedAmount**: `string`
+
+Defined in: [interfaces.ts:239](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L239)
+
+***
+
+### minStakedAmount?
+
+> `optional` **minStakedAmount**: `string`
+
+Defined in: [interfaces.ts:233](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L233)
+
+***
+
+### minWithdrawnAmount?
+
+> `optional` **minWithdrawnAmount**: `string`
+
+Defined in: [interfaces.ts:237](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L237)
+
+***
+
+### orderBy?
+
+> `optional` **orderBy**: `"stakedAmount"` \| `"lockedAmount"` \| `"withdrawnAmount"` \| `"slashedAmount"` \| `"lastDepositTimestamp"`
+
+Defined in: [interfaces.ts:241](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L241)
+
+***
+
+### orderDirection?
+
+> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
+
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
+
+#### Inherited from
+
+[`IPagination`](IPagination.md).[`orderDirection`](IPagination.md#orderdirection)
+
+***
+
+### skip?
+
+> `optional` **skip**: `number`
+
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
+
+#### Inherited from
+
+[`IPagination`](IPagination.md).[`skip`](IPagination.md#skip)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md
index 162ca057ed..f32acce059 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IStatisticsFilter.md
@@ -6,7 +6,7 @@
# Interface: IStatisticsFilter
-Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L119)
+Defined in: [interfaces.ts:129](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L129)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:119](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **from**: `Date`
-Defined in: [interfaces.ts:120](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L120)
+Defined in: [interfaces.ts:130](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L130)
***
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:120](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -50,7 +50,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -62,4 +62,4 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/
> `optional` **to**: `Date`
-Defined in: [interfaces.ts:121](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L121)
+Defined in: [interfaces.ts:131](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L131)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md b/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md
index 887698fd17..9d812bb279 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IStatusEventFilter.md
@@ -6,7 +6,7 @@
# Interface: IStatusEventFilter
-Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
+Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L201)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:192](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L192)
+Defined in: [interfaces.ts:202](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L202)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:192](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **from**: `Date`
-Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194)
+Defined in: [interfaces.ts:204](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L204)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/
> `optional` **launcher**: `string`
-Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196)
+Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L206)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -66,7 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -78,7 +78,7 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/
> `optional` **statuses**: [`EscrowStatus`](../../types/enumerations/EscrowStatus.md)[]
-Defined in: [interfaces.ts:193](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L193)
+Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L203)
***
@@ -86,4 +86,4 @@ Defined in: [interfaces.ts:193](https://github.com/humanprotocol/human-protocol/
> `optional` **to**: `Date`
-Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195)
+Defined in: [interfaces.ts:205](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L205)
diff --git a/docs/sdk/typescript/interfaces/interfaces/ITransaction.md b/docs/sdk/typescript/interfaces/interfaces/ITransaction.md
index 4f90e1d545..7f6aa5b630 100644
--- a/docs/sdk/typescript/interfaces/interfaces/ITransaction.md
+++ b/docs/sdk/typescript/interfaces/interfaces/ITransaction.md
@@ -6,7 +6,7 @@
# Interface: ITransaction
-Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L151)
+Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L161)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/
> **block**: `bigint`
-Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L152)
+Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L162)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/
> `optional` **escrow**: `string`
-Defined in: [interfaces.ts:160](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L160)
+Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L170)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:160](https://github.com/humanprotocol/human-protocol/
> **from**: `string`
-Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L154)
+Defined in: [interfaces.ts:164](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L164)
***
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/
> **internalTransactions**: [`InternalTransaction`](InternalTransaction.md)[]
-Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L162)
+Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L172)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:162](https://github.com/humanprotocol/human-protocol/
> **method**: `string`
-Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L158)
+Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L168)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/
> `optional` **receiver**: `string`
-Defined in: [interfaces.ts:159](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L159)
+Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L169)
***
@@ -62,7 +62,7 @@ Defined in: [interfaces.ts:159](https://github.com/humanprotocol/human-protocol/
> **timestamp**: `bigint`
-Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L156)
+Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L166)
***
@@ -70,7 +70,7 @@ Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/
> **to**: `string`
-Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L155)
+Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L165)
***
@@ -78,7 +78,7 @@ Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/
> `optional` **token**: `string`
-Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L161)
+Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L171)
***
@@ -86,7 +86,7 @@ Defined in: [interfaces.ts:161](https://github.com/humanprotocol/human-protocol/
> **txHash**: `string`
-Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L153)
+Defined in: [interfaces.ts:163](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L163)
***
@@ -94,4 +94,4 @@ Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/
> **value**: `string`
-Defined in: [interfaces.ts:157](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L157)
+Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L167)
diff --git a/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md b/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md
index 6579460f0f..4c384d08ef 100644
--- a/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/ITransactionsFilter.md
@@ -6,7 +6,7 @@
# Interface: ITransactionsFilter
-Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L165)
+Defined in: [interfaces.ts:175](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L175)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:165](https://github.com/humanprotocol/human-protocol/
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L166)
+Defined in: [interfaces.ts:176](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L176)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:166](https://github.com/humanprotocol/human-protocol/
> `optional` **endBlock**: `number`
-Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L168)
+Defined in: [interfaces.ts:178](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L178)
***
@@ -34,7 +34,7 @@ Defined in: [interfaces.ts:168](https://github.com/humanprotocol/human-protocol/
> `optional` **endDate**: `Date`
-Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L170)
+Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
***
@@ -42,7 +42,7 @@ Defined in: [interfaces.ts:170](https://github.com/humanprotocol/human-protocol/
> `optional` **escrow**: `string`
-Defined in: [interfaces.ts:174](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L174)
+Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L184)
***
@@ -50,7 +50,7 @@ Defined in: [interfaces.ts:174](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -62,7 +62,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **fromAddress**: `string`
-Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L171)
+Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
***
@@ -70,7 +70,7 @@ Defined in: [interfaces.ts:171](https://github.com/humanprotocol/human-protocol/
> `optional` **method**: `string`
-Defined in: [interfaces.ts:173](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L173)
+Defined in: [interfaces.ts:183](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L183)
***
@@ -78,7 +78,7 @@ Defined in: [interfaces.ts:173](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -90,7 +90,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
@@ -102,7 +102,7 @@ Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/
> `optional` **startBlock**: `number`
-Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L167)
+Defined in: [interfaces.ts:177](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L177)
***
@@ -110,7 +110,7 @@ Defined in: [interfaces.ts:167](https://github.com/humanprotocol/human-protocol/
> `optional` **startDate**: `Date`
-Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L169)
+Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
***
@@ -118,7 +118,7 @@ Defined in: [interfaces.ts:169](https://github.com/humanprotocol/human-protocol/
> `optional` **toAddress**: `string`
-Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L172)
+Defined in: [interfaces.ts:182](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L182)
***
@@ -126,4 +126,4 @@ Defined in: [interfaces.ts:172](https://github.com/humanprotocol/human-protocol/
> `optional` **token**: `string`
-Defined in: [interfaces.ts:175](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L175)
+Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L185)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IWorker.md b/docs/sdk/typescript/interfaces/interfaces/IWorker.md
index 5ce1828972..0782a64a95 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IWorker.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IWorker.md
@@ -6,7 +6,7 @@
# Interface: IWorker
-Defined in: [interfaces.ts:199](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L199)
+Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L209)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:199](https://github.com/humanprotocol/human-protocol/
> **address**: `string`
-Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L201)
+Defined in: [interfaces.ts:211](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L211)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:201](https://github.com/humanprotocol/human-protocol/
> **id**: `string`
-Defined in: [interfaces.ts:200](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L200)
+Defined in: [interfaces.ts:210](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L210)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:200](https://github.com/humanprotocol/human-protocol/
> **payoutCount**: `number`
-Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L203)
+Defined in: [interfaces.ts:213](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L213)
***
@@ -38,4 +38,4 @@ Defined in: [interfaces.ts:203](https://github.com/humanprotocol/human-protocol/
> **totalHMTAmountReceived**: `number`
-Defined in: [interfaces.ts:202](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L202)
+Defined in: [interfaces.ts:212](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L212)
diff --git a/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md b/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md
index 474b27897c..c76c005f7d 100644
--- a/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md
+++ b/docs/sdk/typescript/interfaces/interfaces/IWorkersFilter.md
@@ -6,7 +6,7 @@
# Interface: IWorkersFilter
-Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L206)
+Defined in: [interfaces.ts:216](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L216)
## Extends
@@ -18,7 +18,7 @@ Defined in: [interfaces.ts:206](https://github.com/humanprotocol/human-protocol/
> `optional` **address**: `string`
-Defined in: [interfaces.ts:208](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L208)
+Defined in: [interfaces.ts:218](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L218)
***
@@ -26,7 +26,7 @@ Defined in: [interfaces.ts:208](https://github.com/humanprotocol/human-protocol/
> **chainId**: [`ChainId`](../../enums/enumerations/ChainId.md)
-Defined in: [interfaces.ts:207](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L207)
+Defined in: [interfaces.ts:217](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L217)
***
@@ -34,7 +34,7 @@ Defined in: [interfaces.ts:207](https://github.com/humanprotocol/human-protocol/
> `optional` **first**: `number`
-Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L179)
+Defined in: [interfaces.ts:189](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L189)
#### Inherited from
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:179](https://github.com/humanprotocol/human-protocol/
> `optional` **orderBy**: `string`
-Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L209)
+Defined in: [interfaces.ts:219](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L219)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:209](https://github.com/humanprotocol/human-protocol/
> `optional` **orderDirection**: [`OrderDirection`](../../enums/enumerations/OrderDirection.md)
-Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L181)
+Defined in: [interfaces.ts:191](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L191)
#### Inherited from
@@ -66,7 +66,7 @@ Defined in: [interfaces.ts:181](https://github.com/humanprotocol/human-protocol/
> `optional` **skip**: `number`
-Defined in: [interfaces.ts:180](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L180)
+Defined in: [interfaces.ts:190](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L190)
#### Inherited from
diff --git a/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md b/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md
index 5aec29ec6f..03efded5a9 100644
--- a/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md
+++ b/docs/sdk/typescript/interfaces/interfaces/InternalTransaction.md
@@ -6,7 +6,7 @@
# Interface: InternalTransaction
-Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L141)
+Defined in: [interfaces.ts:151](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L151)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:141](https://github.com/humanprotocol/human-protocol/
> `optional` **escrow**: `string`
-Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L147)
+Defined in: [interfaces.ts:157](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L157)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:147](https://github.com/humanprotocol/human-protocol/
> **from**: `string`
-Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L142)
+Defined in: [interfaces.ts:152](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L152)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:142](https://github.com/humanprotocol/human-protocol/
> **method**: `string`
-Defined in: [interfaces.ts:145](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L145)
+Defined in: [interfaces.ts:155](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L155)
***
@@ -38,7 +38,7 @@ Defined in: [interfaces.ts:145](https://github.com/humanprotocol/human-protocol/
> `optional` **receiver**: `string`
-Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L146)
+Defined in: [interfaces.ts:156](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L156)
***
@@ -46,7 +46,7 @@ Defined in: [interfaces.ts:146](https://github.com/humanprotocol/human-protocol/
> **to**: `string`
-Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L143)
+Defined in: [interfaces.ts:153](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L153)
***
@@ -54,7 +54,7 @@ Defined in: [interfaces.ts:143](https://github.com/humanprotocol/human-protocol/
> `optional` **token**: `string`
-Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L148)
+Defined in: [interfaces.ts:158](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L158)
***
@@ -62,4 +62,4 @@ Defined in: [interfaces.ts:148](https://github.com/humanprotocol/human-protocol/
> **value**: `string`
-Defined in: [interfaces.ts:144](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L144)
+Defined in: [interfaces.ts:154](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L154)
diff --git a/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md b/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md
index ca7f65d53f..ece387aefb 100644
--- a/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md
+++ b/docs/sdk/typescript/interfaces/interfaces/StakerInfo.md
@@ -6,7 +6,7 @@
# Interface: StakerInfo
-Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L184)
+Defined in: [interfaces.ts:194](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L194)
## Properties
@@ -14,7 +14,7 @@ Defined in: [interfaces.ts:184](https://github.com/humanprotocol/human-protocol/
> **lockedAmount**: `bigint`
-Defined in: [interfaces.ts:186](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L186)
+Defined in: [interfaces.ts:196](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L196)
***
@@ -22,7 +22,7 @@ Defined in: [interfaces.ts:186](https://github.com/humanprotocol/human-protocol/
> **lockedUntil**: `bigint`
-Defined in: [interfaces.ts:187](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L187)
+Defined in: [interfaces.ts:197](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L197)
***
@@ -30,7 +30,7 @@ Defined in: [interfaces.ts:187](https://github.com/humanprotocol/human-protocol/
> **stakedAmount**: `bigint`
-Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L185)
+Defined in: [interfaces.ts:195](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L195)
***
@@ -38,4 +38,4 @@ Defined in: [interfaces.ts:185](https://github.com/humanprotocol/human-protocol/
> **withdrawableAmount**: `bigint`
-Defined in: [interfaces.ts:188](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L188)
+Defined in: [interfaces.ts:198](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts#L198)
diff --git a/docs/sdk/typescript/kvstore/classes/KVStoreClient.md b/docs/sdk/typescript/kvstore/classes/KVStoreClient.md
index 4c152381bf..aa8eb7739b 100644
--- a/docs/sdk/typescript/kvstore/classes/KVStoreClient.md
+++ b/docs/sdk/typescript/kvstore/classes/KVStoreClient.md
@@ -6,7 +6,7 @@
# Class: KVStoreClient
-Defined in: [kvstore.ts:99](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L99)
+Defined in: [kvstore.ts:99](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L99)
## Introduction
@@ -86,7 +86,7 @@ const kvstoreClient = await KVStoreClient.build(provider);
> **new KVStoreClient**(`runner`, `networkData`): `KVStoreClient`
-Defined in: [kvstore.ts:108](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L108)
+Defined in: [kvstore.ts:108](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L108)
**KVStoreClient constructor**
@@ -118,7 +118,7 @@ The network information required to connect to the KVStore contract
> **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md)
-Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
+Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
#### Inherited from
@@ -130,7 +130,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/48
> `protected` **runner**: `ContractRunner`
-Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
+Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
#### Inherited from
@@ -142,7 +142,7 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/48
> **set**(`key`, `value`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [kvstore.ts:171](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L171)
+Defined in: [kvstore.ts:171](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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.
@@ -196,7 +196,7 @@ await kvstoreClient.set('Role', 'RecordingOracle');
> **setBulk**(`keys`, `values`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [kvstore.ts:214](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L214)
+Defined in: [kvstore.ts:214](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L214)
This function sets key-value pairs in bulk associated with the address that submits the transaction.
@@ -252,7 +252,7 @@ await kvstoreClient.setBulk(keys, values);
> **setFileUrlAndHash**(`url`, `urlKey`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [kvstore.ts:257](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L257)
+Defined in: [kvstore.ts:257](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L257)
Sets a URL value for the address that submits the transaction, and its hash.
@@ -305,7 +305,7 @@ await kvstoreClient.setFileUrlAndHash('linkedin.com/example', 'linkedin_url');
> `static` **build**(`runner`): `Promise`\<`KVStoreClient`\>
-Defined in: [kvstore.ts:126](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L126)
+Defined in: [kvstore.ts:126](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 fe6f1912e3..f9e81909d1 100644
--- a/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md
+++ b/docs/sdk/typescript/kvstore/classes/KVStoreUtils.md
@@ -6,7 +6,7 @@
# Class: KVStoreUtils
-Defined in: [kvstore.ts:318](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L318)
+Defined in: [kvstore.ts:318](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L318)
## Introduction
@@ -55,7 +55,7 @@ const KVStoreAddresses = await KVStoreUtils.getKVStoreData(
> `static` **get**(`chainId`, `address`, `key`): `Promise`\<`string`\>
-Defined in: [kvstore.ts:389](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L389)
+Defined in: [kvstore.ts:389](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L389)
Gets the value of a key-value pair in the KVStore using the subgraph.
@@ -116,7 +116,7 @@ console.log(value);
> `static` **getFileUrlAndVerifyHash**(`chainId`, `address`, `urlKey`): `Promise`\<`string`\>
-Defined in: [kvstore.ts:436](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L436)
+Defined in: [kvstore.ts:436](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L436)
Gets the URL value of the given entity, and verifies its hash.
@@ -164,7 +164,7 @@ console.log(url);
> `static` **getKVStoreData**(`chainId`, `address`): `Promise`\<[`IKVStore`](../../interfaces/interfaces/IKVStore.md)[]\>
-Defined in: [kvstore.ts:337](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L337)
+Defined in: [kvstore.ts:337](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L337)
This function returns the KVStore data for a given address.
@@ -211,7 +211,7 @@ console.log(kvStoreData);
> `static` **getPublicKey**(`chainId`, `address`): `Promise`\<`string`\>
-Defined in: [kvstore.ts:496](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L496)
+Defined in: [kvstore.ts:496](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts#L496)
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 082122ac42..0503d64976 100644
--- a/docs/sdk/typescript/operator/classes/OperatorUtils.md
+++ b/docs/sdk/typescript/operator/classes/OperatorUtils.md
@@ -6,7 +6,7 @@
# Class: OperatorUtils
-Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L27)
+Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L27)
## Constructors
@@ -24,7 +24,7 @@ Defined in: [operator.ts:27](https://github.com/humanprotocol/human-protocol/blo
> `static` **getOperator**(`chainId`, `address`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)\>
-Defined in: [operator.ts:43](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L43)
+Defined in: [operator.ts:43](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L43)
This function returns the operator data for the given address.
@@ -62,7 +62,7 @@ const operator = await OperatorUtils.getOperator(ChainId.POLYGON_AMOY, '0x62dD51
> `static` **getOperators**(`filter`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)[]\>
-Defined in: [operator.ts:109](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L109)
+Defined in: [operator.ts:86](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L86)
This function returns all the operator details of the protocol.
@@ -97,7 +97,7 @@ const operators = await OperatorUtils.getOperators(filter);
> `static` **getReputationNetworkOperators**(`chainId`, `address`, `role?`): `Promise`\<[`IOperator`](../../interfaces/interfaces/IOperator.md)[]\>
-Defined in: [operator.ts:190](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L190)
+Defined in: [operator.ts:146](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L146)
Retrieves the reputation network operators of the specified address.
@@ -141,7 +141,7 @@ const operators = await OperatorUtils.getReputationNetworkOperators(ChainId.POLY
> `static` **getRewards**(`chainId`, `slasherAddress`): `Promise`\<[`IReward`](../../interfaces/interfaces/IReward.md)[]\>
-Defined in: [operator.ts:244](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts#L244)
+Defined in: [operator.ts:185](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/README.md b/docs/sdk/typescript/staking/README.md
index 78084c2f17..025e67e4d6 100644
--- a/docs/sdk/typescript/staking/README.md
+++ b/docs/sdk/typescript/staking/README.md
@@ -9,3 +9,4 @@
## Classes
- [StakingClient](classes/StakingClient.md)
+- [StakingUtils](classes/StakingUtils.md)
diff --git a/docs/sdk/typescript/staking/classes/StakingClient.md b/docs/sdk/typescript/staking/classes/StakingClient.md
index c9bd29852b..2dee6dbfcc 100644
--- a/docs/sdk/typescript/staking/classes/StakingClient.md
+++ b/docs/sdk/typescript/staking/classes/StakingClient.md
@@ -6,7 +6,7 @@
# Class: StakingClient
-Defined in: [staking.ts:97](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L97)
+Defined in: [staking.ts:103](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L103)
## Introduction
@@ -86,7 +86,7 @@ const stakingClient = await StakingClient.build(provider);
> **new StakingClient**(`runner`, `networkData`): `StakingClient`
-Defined in: [staking.ts:108](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L108)
+Defined in: [staking.ts:114](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L114)
**StakingClient constructor**
@@ -118,7 +118,7 @@ The network information required to connect to the Staking contract
> **escrowFactoryContract**: `EscrowFactory`
-Defined in: [staking.ts:100](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L100)
+Defined in: [staking.ts:106](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L106)
***
@@ -126,7 +126,7 @@ Defined in: [staking.ts:100](https://github.com/humanprotocol/human-protocol/blo
> **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md)
-Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
+Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
#### Inherited from
@@ -138,7 +138,7 @@ Defined in: [base.ts:12](https://github.com/humanprotocol/human-protocol/blob/48
> `protected` **runner**: `ContractRunner`
-Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
+Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
#### Inherited from
@@ -150,7 +150,7 @@ Defined in: [base.ts:11](https://github.com/humanprotocol/human-protocol/blob/48
> **stakingContract**: `Staking`
-Defined in: [staking.ts:99](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L99)
+Defined in: [staking.ts:105](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L105)
***
@@ -158,7 +158,7 @@ Defined in: [staking.ts:99](https://github.com/humanprotocol/human-protocol/blob
> **tokenContract**: `HMToken`
-Defined in: [staking.ts:98](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L98)
+Defined in: [staking.ts:104](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L104)
## Methods
@@ -166,7 +166,7 @@ Defined in: [staking.ts:98](https://github.com/humanprotocol/human-protocol/blob
> **approveStake**(`amount`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [staking.ts:193](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L193)
+Defined in: [staking.ts:199](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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.
@@ -213,7 +213,7 @@ await stakingClient.approveStake(amount);
> **getStakerInfo**(`stakerAddress`): `Promise`\<[`StakerInfo`](../../interfaces/interfaces/StakerInfo.md)\>
-Defined in: [staking.ts:435](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L435)
+Defined in: [staking.ts:441](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L441)
Retrieves comprehensive staking information for a staker.
@@ -249,7 +249,7 @@ console.log(stakingInfo.tokensStaked);
> **slash**(`slasher`, `staker`, `escrowAddress`, `amount`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [staking.ts:373](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L373)
+Defined in: [staking.ts:379](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L379)
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.
@@ -314,7 +314,7 @@ await stakingClient.slash('0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', '0xf39Fd
> **stake**(`amount`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [staking.ts:247](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L247)
+Defined in: [staking.ts:253](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L253)
This function stakes a specified amount of tokens on a specific network.
@@ -364,7 +364,7 @@ await stakingClient.stake(amount);
> **unstake**(`amount`, `txOptions?`): `Promise`\<`void`\>
-Defined in: [staking.ts:291](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L291)
+Defined in: [staking.ts:297](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L297)
This function unstakes tokens from staking contract. The unstaked tokens stay locked for a period of time.
@@ -413,7 +413,7 @@ await stakingClient.unstake(amount);
> **withdraw**(`txOptions?`): `Promise`\<`void`\>
-Defined in: [staking.ts:336](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L336)
+Defined in: [staking.ts:342](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L342)
This function withdraws unstaked and non-locked tokens from staking contract to the user wallet.
@@ -455,7 +455,7 @@ await stakingClient.withdraw();
> `static` **build**(`runner`): `Promise`\<`StakingClient`\>
-Defined in: [staking.ts:136](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L136)
+Defined in: [staking.ts:142](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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
new file mode 100644
index 0000000000..29a77edb15
--- /dev/null
+++ b/docs/sdk/typescript/staking/classes/StakingUtils.md
@@ -0,0 +1,73 @@
+[**@human-protocol/sdk**](../../README.md)
+
+***
+
+[@human-protocol/sdk](../../modules.md) / [staking](../README.md) / StakingUtils
+
+# Class: StakingUtils
+
+Defined in: [staking.ts:479](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L479)
+
+Utility class for Staking-related subgraph queries.
+
+## Constructors
+
+### Constructor
+
+> **new StakingUtils**(): `StakingUtils`
+
+#### Returns
+
+`StakingUtils`
+
+## Methods
+
+### getStaker()
+
+> `static` **getStaker**(`chainId`, `stakerAddress`): `Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)\>
+
+Defined in: [staking.ts:487](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L487)
+
+Gets staking info for a staker from the subgraph.
+
+#### Parameters
+
+##### chainId
+
+[`ChainId`](../../enums/enumerations/ChainId.md)
+
+Network in which the staking contract is deployed
+
+##### stakerAddress
+
+`string`
+
+Address of the staker
+
+#### Returns
+
+`Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)\>
+
+Staker info from subgraph
+
+***
+
+### getStakers()
+
+> `static` **getStakers**(`filter`): `Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)[]\>
+
+Defined in: [staking.ts:518](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/staking.ts#L518)
+
+Gets all stakers from the subgraph with filters, pagination and ordering.
+
+#### Parameters
+
+##### filter
+
+[`IStakersFilter`](../../interfaces/interfaces/IStakersFilter.md)
+
+#### Returns
+
+`Promise`\<[`IStaker`](../../interfaces/interfaces/IStaker.md)[]\>
+
+Array of stakers
diff --git a/docs/sdk/typescript/statistics/classes/StatisticsClient.md b/docs/sdk/typescript/statistics/classes/StatisticsClient.md
index c81cd84393..17b820cd06 100644
--- a/docs/sdk/typescript/statistics/classes/StatisticsClient.md
+++ b/docs/sdk/typescript/statistics/classes/StatisticsClient.md
@@ -6,7 +6,7 @@
# Class: StatisticsClient
-Defined in: [statistics.ts:58](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L58)
+Defined in: [statistics.ts:58](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L58)
## Introduction
@@ -45,7 +45,7 @@ const statisticsClient = new StatisticsClient(NETWORKS[ChainId.POLYGON_AMOY]);
> **new StatisticsClient**(`networkData`): `StatisticsClient`
-Defined in: [statistics.ts:67](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L67)
+Defined in: [statistics.ts:67](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L67)
**StatisticsClient constructor**
@@ -67,7 +67,7 @@ The network information required to connect to the Statistics contract
> **networkData**: [`NetworkData`](../../types/type-aliases/NetworkData.md)
-Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L59)
+Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L59)
***
@@ -75,7 +75,7 @@ Defined in: [statistics.ts:59](https://github.com/humanprotocol/human-protocol/b
> **subgraphUrl**: `string`
-Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L60)
+Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L60)
## Methods
@@ -83,7 +83,7 @@ Defined in: [statistics.ts:60](https://github.com/humanprotocol/human-protocol/b
> **getEscrowStatistics**(`filter`): `Promise`\<[`EscrowStatistics`](../../graphql/types/type-aliases/EscrowStatistics.md)\>
-Defined in: [statistics.ts:120](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L120)
+Defined in: [statistics.ts:120](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L120)
This function returns the statistical data of escrows.
@@ -149,7 +149,7 @@ const escrowStatisticsApril = await statisticsClient.getEscrowStatistics({
> **getHMTDailyData**(`filter`): `Promise`\<[`DailyHMTData`](../../graphql/types/type-aliases/DailyHMTData.md)[]\>
-Defined in: [statistics.ts:478](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L478)
+Defined in: [statistics.ts:478](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L478)
This function returns the statistical data of HMToken day by day.
@@ -214,7 +214,7 @@ console.log('HMT statistics from 5/8 - 6/8:', hmtStatisticsRange);
> **getHMTHolders**(`params`): `Promise`\<[`HMTHolder`](../../graphql/types/type-aliases/HMTHolder.md)[]\>
-Defined in: [statistics.ts:407](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L407)
+Defined in: [statistics.ts:407](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L407)
This function returns the holders of the HMToken with optional filters and ordering.
@@ -257,7 +257,7 @@ console.log('HMT holders:', hmtHolders.map((h) => ({
> **getHMTStatistics**(): `Promise`\<[`HMTStatistics`](../../graphql/types/type-aliases/HMTStatistics.md)\>
-Defined in: [statistics.ts:364](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L364)
+Defined in: [statistics.ts:364](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L364)
This function returns the statistical data of HMToken.
@@ -296,7 +296,7 @@ console.log('HMT statistics:', {
> **getPaymentStatistics**(`filter`): `Promise`\<[`PaymentStatistics`](../../graphql/types/type-aliases/PaymentStatistics.md)\>
-Defined in: [statistics.ts:300](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L300)
+Defined in: [statistics.ts:300](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L300)
This function returns the statistical data of payments.
@@ -380,7 +380,7 @@ console.log(
> **getWorkerStatistics**(`filter`): `Promise`\<[`WorkerStatistics`](../../graphql/types/type-aliases/WorkerStatistics.md)\>
-Defined in: [statistics.ts:204](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/statistics.ts#L204)
+Defined in: [statistics.ts:204](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 68eb4d785d..9f848aac62 100644
--- a/docs/sdk/typescript/storage/classes/StorageClient.md
+++ b/docs/sdk/typescript/storage/classes/StorageClient.md
@@ -4,9 +4,9 @@
[@human-protocol/sdk](../../modules.md) / [storage](../README.md) / StorageClient
-# Class: ~~StorageClient~~
+# ~~Class: StorageClient~~
-Defined in: [storage.ts:63](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L63)
+Defined in: [storage.ts:63](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L63)
## Deprecated
@@ -61,7 +61,7 @@ const storageClient = new StorageClient(params, credentials);
> **new StorageClient**(`params`, `credentials?`): `StorageClient`
-Defined in: [storage.ts:73](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L73)
+Defined in: [storage.ts:73](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L73)
**Storage client constructor**
@@ -89,7 +89,7 @@ Optional. Cloud storage access data. If credentials are not provided - use anony
> **bucketExists**(`bucket`): `Promise`\<`boolean`\>
-Defined in: [storage.ts:262](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L262)
+Defined in: [storage.ts:262](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L262)
This function checks if a bucket exists.
@@ -133,7 +133,7 @@ const exists = await storageClient.bucketExists('bucket-name');
> **downloadFiles**(`keys`, `bucket`): `Promise`\<`any`[]\>
-Defined in: [storage.ts:112](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L112)
+Defined in: [storage.ts:112](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L112)
This function downloads files from a bucket.
@@ -181,7 +181,7 @@ const files = await storageClient.downloadFiles(keys, 'bucket-name');
> **listObjects**(`bucket`): `Promise`\<`string`[]\>
-Defined in: [storage.ts:292](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L292)
+Defined in: [storage.ts:292](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L292)
This function lists all file names contained in the bucket.
@@ -225,7 +225,7 @@ const fileNames = await storageClient.listObjects('bucket-name');
> **uploadFiles**(`files`, `bucket`): `Promise`\<[`UploadFile`](../../types/type-aliases/UploadFile.md)[]\>
-Defined in: [storage.ts:198](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L198)
+Defined in: [storage.ts:198](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L198)
This function uploads files to a bucket.
@@ -278,7 +278,7 @@ const uploadedFiles = await storageClient.uploadFiles(files, 'bucket-name');
> `static` **downloadFileFromUrl**(`url`): `Promise`\<`any`\>
-Defined in: [storage.ts:146](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/storage.ts#L146)
+Defined in: [storage.ts:146](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 32c74ef7d4..08012054ab 100644
--- a/docs/sdk/typescript/transaction/classes/TransactionUtils.md
+++ b/docs/sdk/typescript/transaction/classes/TransactionUtils.md
@@ -6,7 +6,7 @@
# Class: TransactionUtils
-Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L18)
+Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L18)
## Constructors
@@ -24,7 +24,7 @@ Defined in: [transaction.ts:18](https://github.com/humanprotocol/human-protocol/
> `static` **getTransaction**(`chainId`, `hash`): `Promise`\<[`ITransaction`](../../interfaces/interfaces/ITransaction.md)\>
-Defined in: [transaction.ts:50](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L50)
+Defined in: [transaction.ts:50](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L50)
This function returns the transaction data for the given hash.
@@ -78,7 +78,7 @@ const transaction = await TransactionUtils.getTransaction(ChainId.POLYGON, '0x62
> `static` **getTransactions**(`filter`): `Promise`\<[`ITransaction`](../../interfaces/interfaces/ITransaction.md)[]\>
-Defined in: [transaction.ts:132](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/transaction.ts#L132)
+Defined in: [transaction.ts:132](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 026f166720..e2e4e7e096 100644
--- a/docs/sdk/typescript/types/enumerations/EscrowStatus.md
+++ b/docs/sdk/typescript/types/enumerations/EscrowStatus.md
@@ -6,7 +6,7 @@
# Enumeration: EscrowStatus
-Defined in: [types.ts:8](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L8)
+Defined in: [types.ts:8](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L8)
Enum for escrow statuses.
@@ -16,7 +16,7 @@ Enum for escrow statuses.
> **Cancelled**: `5`
-Defined in: [types.ts:32](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L32)
+Defined in: [types.ts:32](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L32)
Escrow is cancelled.
@@ -26,7 +26,7 @@ Escrow is cancelled.
> **Complete**: `4`
-Defined in: [types.ts:28](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L28)
+Defined in: [types.ts:28](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L28)
Escrow is finished.
@@ -36,7 +36,7 @@ Escrow is finished.
> **Launched**: `0`
-Defined in: [types.ts:12](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L12)
+Defined in: [types.ts:12](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L12)
Escrow is launched.
@@ -46,7 +46,7 @@ Escrow is launched.
> **Paid**: `3`
-Defined in: [types.ts:24](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L24)
+Defined in: [types.ts:24](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L24)
Escrow is fully paid.
@@ -56,7 +56,7 @@ Escrow is fully paid.
> **Partial**: `2`
-Defined in: [types.ts:20](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L20)
+Defined in: [types.ts:20](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L20)
Escrow is partially paid out.
@@ -66,7 +66,7 @@ Escrow is partially paid out.
> **Pending**: `1`
-Defined in: [types.ts:16](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L16)
+Defined in: [types.ts:16](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L16)
Escrow is funded, and waiting for the results to be submitted.
@@ -76,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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L36)
+Defined in: [types.ts:36](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 c8128c84c7..4895c30b71 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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L193)
+Defined in: [types.ts:193](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L209)
+Defined in: [types.ts:209](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L214)
+Defined in: [types.ts:214](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L201)
+Defined in: [types.ts:201](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L197)
+Defined in: [types.ts:197](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L205)
+Defined in: [types.ts:205](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L218)
+Defined in: [types.ts:218](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L222)
+Defined in: [types.ts:222](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 f756e78d1c..9c2f811721 100644
--- a/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md
+++ b/docs/sdk/typescript/types/type-aliases/EscrowWithdraw.md
@@ -8,27 +8,17 @@
> **EscrowWithdraw** = `object`
-Defined in: [types.ts:149](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L149)
+Defined in: [types.ts:149](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L149)
Represents the response data for an escrow withdrawal.
## Properties
-### amountWithdrawn
-
-> **amountWithdrawn**: `bigint`
-
-Defined in: [types.ts:161](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L161)
-
-The amount withdrawn from the escrow.
-
-***
-
### tokenAddress
> **tokenAddress**: `string`
-Defined in: [types.ts:157](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L157)
+Defined in: [types.ts:157](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L157)
The address of the token used for the withdrawal.
@@ -38,6 +28,16 @@ The address of the token used for the withdrawal.
> **txHash**: `string`
-Defined in: [types.ts:153](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L153)
+Defined in: [types.ts:153](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L153)
The hash of the transaction associated with the escrow withdrawal.
+
+***
+
+### withdrawnAmount
+
+> **withdrawnAmount**: `bigint`
+
+Defined in: [types.ts:161](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 bd27bb1166..f4ffb5f4fb 100644
--- a/docs/sdk/typescript/types/type-aliases/NetworkData.md
+++ b/docs/sdk/typescript/types/type-aliases/NetworkData.md
@@ -8,7 +8,7 @@
> **NetworkData** = `object`
-Defined in: [types.ts:99](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L99)
+Defined in: [types.ts:99](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L99)
Network data
@@ -18,7 +18,7 @@ Network data
> **chainId**: `number`
-Defined in: [types.ts:103](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L103)
+Defined in: [types.ts:103](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L103)
Network chain id
@@ -28,7 +28,7 @@ Network chain id
> **factoryAddress**: `string`
-Defined in: [types.ts:119](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L119)
+Defined in: [types.ts:119](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L119)
Escrow Factory contract address
@@ -38,7 +38,7 @@ Escrow Factory contract address
> **hmtAddress**: `string`
-Defined in: [types.ts:115](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L115)
+Defined in: [types.ts:115](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L115)
HMT Token contract address
@@ -48,7 +48,7 @@ HMT Token contract address
> **kvstoreAddress**: `string`
-Defined in: [types.ts:127](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L127)
+Defined in: [types.ts:127](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L127)
KVStore contract address
@@ -58,7 +58,7 @@ KVStore contract address
> **oldFactoryAddress**: `string`
-Defined in: [types.ts:143](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L143)
+Defined in: [types.ts:143](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L143)
Old Escrow Factory contract address
@@ -68,7 +68,7 @@ Old Escrow Factory contract address
> **oldSubgraphUrl**: `string`
-Defined in: [types.ts:139](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L139)
+Defined in: [types.ts:139](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L139)
Old subgraph URL
@@ -78,7 +78,7 @@ Old subgraph URL
> **scanUrl**: `string`
-Defined in: [types.ts:111](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L111)
+Defined in: [types.ts:111](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L111)
Network scanner URL
@@ -88,7 +88,7 @@ Network scanner URL
> **stakingAddress**: `string`
-Defined in: [types.ts:123](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L123)
+Defined in: [types.ts:123](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L123)
Staking contract address
@@ -98,7 +98,7 @@ Staking contract address
> **subgraphUrl**: `string`
-Defined in: [types.ts:131](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L131)
+Defined in: [types.ts:131](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L131)
Subgraph URL
@@ -108,7 +108,7 @@ Subgraph URL
> **subgraphUrlApiKey**: `string`
-Defined in: [types.ts:135](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L135)
+Defined in: [types.ts:135](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L135)
Subgraph URL API key
@@ -118,6 +118,6 @@ Subgraph URL API key
> **title**: `string`
-Defined in: [types.ts:107](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L107)
+Defined in: [types.ts:107](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 b614fa9287..c5a945fdb7 100644
--- a/docs/sdk/typescript/types/type-aliases/Payout.md
+++ b/docs/sdk/typescript/types/type-aliases/Payout.md
@@ -8,7 +8,7 @@
> **Payout** = `object`
-Defined in: [types.ts:167](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L167)
+Defined in: [types.ts:167](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L167)
Represents a payout from an escrow.
@@ -18,7 +18,7 @@ Represents a payout from an escrow.
> **amount**: `bigint`
-Defined in: [types.ts:183](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L183)
+Defined in: [types.ts:183](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L183)
The amount paid to the recipient.
@@ -28,7 +28,7 @@ The amount paid to the recipient.
> **createdAt**: `number`
-Defined in: [types.ts:187](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L187)
+Defined in: [types.ts:187](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L187)
The timestamp when the payout was created (in UNIX format).
@@ -38,7 +38,7 @@ The timestamp when the payout was created (in UNIX format).
> **escrowAddress**: `string`
-Defined in: [types.ts:175](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L175)
+Defined in: [types.ts:175](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L175)
The address of the escrow associated with the payout.
@@ -48,7 +48,7 @@ The address of the escrow associated with the payout.
> **id**: `string`
-Defined in: [types.ts:171](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L171)
+Defined in: [types.ts:171](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L171)
Unique identifier of the payout.
@@ -58,6 +58,6 @@ Unique identifier of the payout.
> **recipient**: `string`
-Defined in: [types.ts:179](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L179)
+Defined in: [types.ts:179](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 a22cbe839d..9c4df584cf 100644
--- a/docs/sdk/typescript/types/type-aliases/StorageCredentials.md
+++ b/docs/sdk/typescript/types/type-aliases/StorageCredentials.md
@@ -4,11 +4,11 @@
[@human-protocol/sdk](../../modules.md) / [types](../README.md) / StorageCredentials
-# Type Alias: ~~StorageCredentials~~
+# ~~Type Alias: StorageCredentials~~
> `readonly` **StorageCredentials** = `object`
-Defined in: [types.ts:44](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L44)
+Defined in: [types.ts:44](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L44)
AWS/GCP cloud storage access data
@@ -22,7 +22,7 @@ StorageClient is deprecated. Use Minio.Client directly.
> **accessKey**: `string`
-Defined in: [types.ts:48](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L48)
+Defined in: [types.ts:48](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L48)
Access Key
@@ -32,6 +32,6 @@ Access Key
> **secretKey**: `string`
-Defined in: [types.ts:52](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L52)
+Defined in: [types.ts:52](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 f07fd530a6..38f91c28a1 100644
--- a/docs/sdk/typescript/types/type-aliases/StorageParams.md
+++ b/docs/sdk/typescript/types/type-aliases/StorageParams.md
@@ -4,11 +4,11 @@
[@human-protocol/sdk](../../modules.md) / [types](../README.md) / StorageParams
-# Type Alias: ~~StorageParams~~
+# ~~Type Alias: StorageParams~~
> **StorageParams** = `object`
-Defined in: [types.ts:58](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L58)
+Defined in: [types.ts:58](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L58)
## Deprecated
@@ -20,7 +20,7 @@ StorageClient is deprecated. Use Minio.Client directly.
> **endPoint**: `string`
-Defined in: [types.ts:62](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L62)
+Defined in: [types.ts:62](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L62)
Request endPoint
@@ -30,7 +30,7 @@ Request endPoint
> `optional` **port**: `number`
-Defined in: [types.ts:74](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L74)
+Defined in: [types.ts:74](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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
@@ -40,7 +40,7 @@ TCP/IP port number. Default value set to 80 for HTTP and 443 for HTTPs
> `optional` **region**: `string`
-Defined in: [types.ts:70](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L70)
+Defined in: [types.ts:70](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L70)
Region
@@ -50,6 +50,6 @@ Region
> **useSSL**: `boolean`
-Defined in: [types.ts:66](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L66)
+Defined in: [types.ts:66](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/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 748e6face2..e9c5c7a98f 100644
--- a/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md
+++ b/docs/sdk/typescript/types/type-aliases/TransactionLikeWithNonce.md
@@ -8,9 +8,9 @@
> **TransactionLikeWithNonce** = `TransactionLike` & `object`
-Defined in: [types.ts:225](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L225)
+Defined in: [types.ts:225](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L225)
-## Type declaration
+## Type Declaration
### nonce
diff --git a/docs/sdk/typescript/types/type-aliases/UploadFile.md b/docs/sdk/typescript/types/type-aliases/UploadFile.md
index f565a23322..8019b94a2c 100644
--- a/docs/sdk/typescript/types/type-aliases/UploadFile.md
+++ b/docs/sdk/typescript/types/type-aliases/UploadFile.md
@@ -8,7 +8,7 @@
> `readonly` **UploadFile** = `object`
-Defined in: [types.ts:81](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L81)
+Defined in: [types.ts:81](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L81)
Upload file data
@@ -18,7 +18,7 @@ Upload file data
> **hash**: `string`
-Defined in: [types.ts:93](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L93)
+Defined in: [types.ts:93](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L93)
Hash of uploaded object key
@@ -28,7 +28,7 @@ Hash of uploaded object key
> **key**: `string`
-Defined in: [types.ts:85](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L85)
+Defined in: [types.ts:85](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L85)
Uploaded object key
@@ -38,6 +38,6 @@ Uploaded object key
> **url**: `string`
-Defined in: [types.ts:89](https://github.com/humanprotocol/human-protocol/blob/4856a3f52f40cebc5467b639c48c93c09d17622b/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L89)
+Defined in: [types.ts:89](https://github.com/humanprotocol/human-protocol/blob/4dad01e5a92c46a45d83aec7fcaea2d2e541271c/packages/sdk/typescript/human-protocol-sdk/src/types.ts#L89)
Uploaded object URL
diff --git a/packages/apps/dashboard/client/package.json b/packages/apps/dashboard/client/package.json
index 5458c1869e..e3c69d1038 100644
--- a/packages/apps/dashboard/client/package.json
+++ b/packages/apps/dashboard/client/package.json
@@ -42,7 +42,7 @@
"swiper": "^11.1.3",
"use-debounce": "^10.0.2",
"vite-plugin-node-polyfills": "^0.23.0",
- "zod": "^3.23.8",
+ "zod": "~3.24.4",
"zustand": "^4.5.4"
},
"devDependencies": {
diff --git a/packages/apps/dashboard/client/src/features/leaderboard/model/leaderboardSchema.ts b/packages/apps/dashboard/client/src/features/leaderboard/model/leaderboardSchema.ts
index 9d66199cda..9531afeaa2 100644
--- a/packages/apps/dashboard/client/src/features/leaderboard/model/leaderboardSchema.ts
+++ b/packages/apps/dashboard/client/src/features/leaderboard/model/leaderboardSchema.ts
@@ -5,14 +5,14 @@ import { reputationSchema } from '@/shared/model/reputationSchema';
const leaderboardEntity = z.object({
address: z.string(),
role: z.string(),
- amountStaked: z
+ stakedAmount: z
.string()
.transform((value, ctx) => {
const valueAsNumber = Number(value);
if (Number.isNaN(valueAsNumber)) {
ctx.addIssue({
- path: ['amountStaked'],
+ path: ['stakedAmount'],
code: z.ZodIssueCode.custom,
});
}
diff --git a/packages/apps/dashboard/client/src/features/leaderboard/ui/useDataGrid.tsx b/packages/apps/dashboard/client/src/features/leaderboard/ui/useDataGrid.tsx
index 1f9930e059..61a5d8653d 100644
--- a/packages/apps/dashboard/client/src/features/leaderboard/ui/useDataGrid.tsx
+++ b/packages/apps/dashboard/client/src/features/leaderboard/ui/useDataGrid.tsx
@@ -83,7 +83,7 @@ const useDataGrid = (data: LeaderboardData) => {
),
},
{
- field: 'amountStaked',
+ field: 'stakedAmount',
sortable: false,
flex: 1,
minWidth: isMobile ? 130 : 260,
diff --git a/packages/apps/dashboard/client/src/features/searchResults/model/addressDetailsSchema.ts b/packages/apps/dashboard/client/src/features/searchResults/model/addressDetailsSchema.ts
index 8c035e1a3f..7a594c8056 100644
--- a/packages/apps/dashboard/client/src/features/searchResults/model/addressDetailsSchema.ts
+++ b/packages/apps/dashboard/client/src/features/searchResults/model/addressDetailsSchema.ts
@@ -7,9 +7,9 @@ const walletSchema = z.object({
chainId: z.number(),
address: z.string(),
balance: z.string(),
- amountStaked: z.string(),
- amountLocked: z.string(),
- amountWithdrawable: z.string(),
+ stakedAmount: z.string(),
+ lockedAmount: z.string(),
+ withdrawableAmount: z.string(),
reputation: reputationSchema,
totalHMTAmountReceived: z.string(),
payoutCount: z.number().or(z.string()),
@@ -50,9 +50,9 @@ const operatorSchema = z.object({
Role.ReputationOracle,
])
.nullable(),
- amountStaked: z.string().optional(),
- amountLocked: z.string().optional(),
- amountWithdrawable: z.string().optional(),
+ stakedAmount: z.string().optional(),
+ lockedAmount: z.string().optional(),
+ withdrawableAmount: z.string().optional(),
lockedUntilTimestamp: z.string().optional(),
reputation: reputationSchema,
fee: z.number(),
diff --git a/packages/apps/dashboard/client/src/features/searchResults/ui/OperatorAddress.tsx b/packages/apps/dashboard/client/src/features/searchResults/ui/OperatorAddress.tsx
index 4054a82cf9..9948d1ac45 100644
--- a/packages/apps/dashboard/client/src/features/searchResults/ui/OperatorAddress.tsx
+++ b/packages/apps/dashboard/client/src/features/searchResults/ui/OperatorAddress.tsx
@@ -113,9 +113,9 @@ const OperatorAddress = ({ data }: { data: AddressDetailsOperator }) => {
role,
reputation,
amountJobsProcessed,
- amountStaked,
- amountLocked,
- amountWithdrawable,
+ stakedAmount,
+ lockedAmount,
+ withdrawableAmount,
url,
fee,
jobTypes,
@@ -203,9 +203,9 @@ const OperatorAddress = ({ data }: { data: AddressDetailsOperator }) => {
diff --git a/packages/apps/dashboard/client/src/features/searchResults/ui/StakeInfo.tsx b/packages/apps/dashboard/client/src/features/searchResults/ui/StakeInfo.tsx
index b8b7c08ebc..78b2bef88e 100644
--- a/packages/apps/dashboard/client/src/features/searchResults/ui/StakeInfo.tsx
+++ b/packages/apps/dashboard/client/src/features/searchResults/ui/StakeInfo.tsx
@@ -8,17 +8,17 @@ import SectionWrapper from '@/shared/ui/SectionWrapper';
import TokenAmount from './TokenAmount';
type Props = {
- amountStaked?: string | number | null;
- amountLocked?: string | number | null;
- amountWithdrawable?: string | number | null;
+ stakedAmount?: string | number | null;
+ lockedAmount?: string | number | null;
+ withdrawableAmount?: string | number | null;
};
const StakeInfo: FC = ({
- amountStaked,
- amountLocked,
- amountWithdrawable,
+ stakedAmount,
+ lockedAmount,
+ withdrawableAmount,
}) => {
- if (!amountStaked && !amountLocked && !amountWithdrawable) return null;
+ if (!stakedAmount && !lockedAmount && !withdrawableAmount) return null;
return (
@@ -26,28 +26,28 @@ const StakeInfo: FC = ({
Stake Info
- {Number.isFinite(Number(amountStaked)) && (
+ {Number.isFinite(Number(stakedAmount)) && (
Staked Tokens
-
+
)}
- {Number.isFinite(Number(amountLocked)) && (
+ {Number.isFinite(Number(lockedAmount)) && (
Locked Tokens
-
+
)}
- {Number.isFinite(Number(amountWithdrawable)) && (
+ {Number.isFinite(Number(withdrawableAmount)) && (
Withdrawable Tokens
-
+
)}
diff --git a/packages/apps/dashboard/client/src/features/searchResults/ui/WalletAddress.tsx b/packages/apps/dashboard/client/src/features/searchResults/ui/WalletAddress.tsx
index 254e6fecac..29b551a00e 100644
--- a/packages/apps/dashboard/client/src/features/searchResults/ui/WalletAddress.tsx
+++ b/packages/apps/dashboard/client/src/features/searchResults/ui/WalletAddress.tsx
@@ -25,10 +25,10 @@ type Props = {
const WalletAddress: FC = ({ data }) => {
const {
balance,
- amountStaked,
- amountLocked,
+ stakedAmount,
+ lockedAmount,
reputation,
- amountWithdrawable,
+ withdrawableAmount,
} = data;
const isWallet = 'totalHMTAmountReceived' in data;
@@ -60,9 +60,9 @@ const WalletAddress: FC = ({ data }) => {
>
diff --git a/packages/apps/dashboard/server/src/common/constants/operator.ts b/packages/apps/dashboard/server/src/common/constants/operator.ts
index e385f086cc..210518f943 100644
--- a/packages/apps/dashboard/server/src/common/constants/operator.ts
+++ b/packages/apps/dashboard/server/src/common/constants/operator.ts
@@ -1,3 +1,3 @@
-export const MIN_AMOUNT_STAKED = 1;
+export const MIN_STAKED_AMOUNT = 1;
export const MAX_LEADERS_COUNT = 100;
export const REPUTATION_PLACEHOLDER = 'Not available';
diff --git a/packages/apps/dashboard/server/src/common/enums/operator.ts b/packages/apps/dashboard/server/src/common/enums/operator.ts
index 19adba29dd..e56ce9a2fa 100644
--- a/packages/apps/dashboard/server/src/common/enums/operator.ts
+++ b/packages/apps/dashboard/server/src/common/enums/operator.ts
@@ -1,6 +1,6 @@
export enum OperatorsOrderBy {
ROLE = 'role',
- AMOUNT_STAKED = 'amountStaked',
+ STAKED_AMOUNT = 'stakedAmount',
REPUTATION = 'reputation',
FEE = 'fee',
}
diff --git a/packages/apps/dashboard/server/src/modules/details/details.service.ts b/packages/apps/dashboard/server/src/modules/details/details.service.ts
index 3fa5945529..1982a272a8 100644
--- a/packages/apps/dashboard/server/src/modules/details/details.service.ts
+++ b/packages/apps/dashboard/server/src/modules/details/details.service.ts
@@ -25,7 +25,7 @@ import { EnvironmentConfigService } from '../../common/config/env-config.service
import { NetworkConfigService } from '../../common/config/network-config.service';
import {
MAX_LEADERS_COUNT,
- MIN_AMOUNT_STAKED,
+ MIN_STAKED_AMOUNT,
REPUTATION_PLACEHOLDER,
} from '../../common/constants/operator';
import * as httpUtils from '../../common/utils/http';
@@ -99,9 +99,9 @@ export class DetailsService {
operatorDto.chainId = chainId;
operatorDto.balance = await this.getHmtBalance(chainId, address);
- operatorDto.amountStaked = ethers.formatEther(stakingData.stakedAmount);
- operatorDto.amountLocked = ethers.formatEther(stakingData.lockedAmount);
- operatorDto.amountWithdrawable = ethers.formatEther(
+ operatorDto.stakedAmount = ethers.formatEther(stakingData.stakedAmount);
+ operatorDto.lockedAmount = ethers.formatEther(stakingData.lockedAmount);
+ operatorDto.withdrawableAmount = ethers.formatEther(
stakingData.withdrawableAmount,
);
@@ -121,9 +121,9 @@ export class DetailsService {
chainId,
address,
balance: await this.getHmtBalance(chainId, address),
- amountStaked: ethers.formatEther(stakingData.stakedAmount),
- amountLocked: ethers.formatEther(stakingData.lockedAmount),
- amountWithdrawable: ethers.formatEther(stakingData.withdrawableAmount),
+ stakedAmount: ethers.formatEther(stakingData.stakedAmount),
+ lockedAmount: ethers.formatEther(stakingData.lockedAmount),
+ withdrawableAmount: ethers.formatEther(stakingData.withdrawableAmount),
reputation: (await this.fetchOperatorReputation(chainId, address))
.reputation,
totalHMTAmountReceived: ethers.formatEther(
@@ -272,7 +272,7 @@ export class DetailsService {
): IOperatorsFilter {
const operatorsFilter: IOperatorsFilter = {
chainId,
- minAmountStaked: MIN_AMOUNT_STAKED,
+ minStakedAmount: MIN_STAKED_AMOUNT,
roles: [
Role.JobLauncher,
Role.ExchangeOracle,
diff --git a/packages/apps/dashboard/server/src/modules/details/dto/details-pagination.dto.ts b/packages/apps/dashboard/server/src/modules/details/dto/details-pagination.dto.ts
index 912e55a17a..6f6fdf8f0e 100644
--- a/packages/apps/dashboard/server/src/modules/details/dto/details-pagination.dto.ts
+++ b/packages/apps/dashboard/server/src/modules/details/dto/details-pagination.dto.ts
@@ -23,12 +23,12 @@ export class OperatorsPaginationDto {
@ApiPropertyOptional({
enum: OperatorsOrderBy,
- default: OperatorsOrderBy.AMOUNT_STAKED,
+ default: OperatorsOrderBy.STAKED_AMOUNT,
})
@IsEnum(OperatorsOrderBy)
@IsIn(Object.values(OperatorsOrderBy))
@IsOptional()
- public orderBy?: OperatorsOrderBy = OperatorsOrderBy.AMOUNT_STAKED;
+ public orderBy?: OperatorsOrderBy = OperatorsOrderBy.STAKED_AMOUNT;
@ApiPropertyOptional({
enum: OrderDirection,
diff --git a/packages/apps/dashboard/server/src/modules/details/dto/operator.dto.ts b/packages/apps/dashboard/server/src/modules/details/dto/operator.dto.ts
index 2a89e84065..d4bb4fd93a 100644
--- a/packages/apps/dashboard/server/src/modules/details/dto/operator.dto.ts
+++ b/packages/apps/dashboard/server/src/modules/details/dto/operator.dto.ts
@@ -36,19 +36,19 @@ export class OperatorDto {
@Transform(({ value }) => value?.toString())
@IsString()
@Expose()
- public amountStaked: string;
+ public stakedAmount: string;
@ApiProperty({ example: '0.07007358932392' })
@Transform(({ value }) => value?.toString())
@IsString()
@Expose()
- public amountLocked: string;
+ public lockedAmount: string;
@ApiProperty({ example: '0.07007358932392' })
@Transform(({ value }) => value?.toString())
@IsString()
@Expose()
- public amountWithdrawable: string;
+ public withdrawableAmount: string;
@ApiProperty({ example: 'High' })
@Transform(({ value }) => value?.toString())
@@ -84,6 +84,7 @@ export class OperatorDto {
public website?: string;
@ApiProperty({ example: 1 })
+ @Transform(({ value }) => Number(value))
@IsNumber()
@Expose()
public amountJobsProcessed: number;
diff --git a/packages/apps/dashboard/server/src/modules/details/dto/wallet.dto.ts b/packages/apps/dashboard/server/src/modules/details/dto/wallet.dto.ts
index cb18d6fee3..51aff04d41 100644
--- a/packages/apps/dashboard/server/src/modules/details/dto/wallet.dto.ts
+++ b/packages/apps/dashboard/server/src/modules/details/dto/wallet.dto.ts
@@ -19,12 +19,12 @@ export class WalletDto {
@ApiProperty({ example: '0.07007358932392' })
@Transform(({ value }) => value?.toString())
@IsString()
- public amountLocked: string;
+ public lockedAmount: string;
@ApiProperty({ example: '0.07007358932392' })
@Transform(({ value }) => value?.toString())
@IsString()
- public amountWithdrawable: string;
+ public withdrawableAmount: string;
@ApiProperty({ example: 'High' })
@Transform(({ value }) => value?.toString())
diff --git a/packages/apps/human-app/frontend/package.json b/packages/apps/human-app/frontend/package.json
index f5b5b6a3af..72d2166582 100644
--- a/packages/apps/human-app/frontend/package.json
+++ b/packages/apps/human-app/frontend/package.json
@@ -22,7 +22,7 @@
"@fontsource/inter": "^5.0.17",
"@fontsource/roboto": "^5.2.6",
"@hcaptcha/react-hcaptcha": "^0.3.6",
- "@hookform/resolvers": "^5.0.1",
+ "@hookform/resolvers": "~5.0.1",
"@human-protocol/sdk": "workspace:*",
"@mui/icons-material": "^7.0.1",
"@mui/material": "^5.16.7",
@@ -54,7 +54,7 @@
"viem": "^2.31.4",
"vite-plugin-svgr": "^4.2.0",
"wagmi": "^2.15.6",
- "zod": "^3.22.4",
+ "zod": "~3.24.4",
"zustand": "^4.5.0"
},
"devDependencies": {
diff --git a/packages/apps/human-app/server/src/modules/oracle-discovery/model/oracle-discovery.model.ts b/packages/apps/human-app/server/src/modules/oracle-discovery/model/oracle-discovery.model.ts
index e7269b49f0..74134e1567 100644
--- a/packages/apps/human-app/server/src/modules/oracle-discovery/model/oracle-discovery.model.ts
+++ b/packages/apps/human-app/server/src/modules/oracle-discovery/model/oracle-discovery.model.ts
@@ -8,12 +8,12 @@ type DiscoveredOracleCreateProps = {
id: string;
address: string;
chainId: ChainId;
- amountStaked: bigint;
- amountLocked: bigint;
+ stakedAmount: bigint;
+ lockedAmount: bigint;
lockedUntilTimestamp: bigint;
- amountWithdrawn: bigint;
- amountSlashed: bigint;
- reward: bigint;
+ withdrawnAmount: bigint;
+ slashedAmount: bigint;
+ lastDepositTimestamp: bigint;
amountJobsProcessed: bigint;
role?: string;
fee?: bigint;
@@ -40,22 +40,22 @@ export class DiscoveredOracle implements IOperator {
chainId: ChainId;
@ApiProperty({ description: 'Amount staked by the operator' })
- amountStaked: bigint;
+ stakedAmount: bigint;
@ApiProperty({ description: 'Amount currently locked by the operator' })
- amountLocked: bigint;
+ lockedAmount: bigint;
@ApiProperty({ description: 'Timestamp until funds are locked' })
lockedUntilTimestamp: bigint;
@ApiProperty({ description: 'Total amount withdrawn by the operator' })
- amountWithdrawn: bigint;
+ withdrawnAmount: bigint;
@ApiProperty({ description: 'Total amount slashed from the operator' })
- amountSlashed: bigint;
+ slashedAmount: bigint;
- @ApiProperty({ description: 'Total reward earned by the operator' })
- reward: bigint;
+ @ApiProperty({ description: 'Last deposit timestamp' })
+ lastDepositTimestamp: bigint;
@ApiProperty({ description: 'Number of jobs processed by the operator' })
amountJobsProcessed: bigint;
diff --git a/packages/apps/human-app/server/src/modules/oracle-discovery/oracle-discovery.service.ts b/packages/apps/human-app/server/src/modules/oracle-discovery/oracle-discovery.service.ts
index b8fdc0b6d7..c68cca20fd 100644
--- a/packages/apps/human-app/server/src/modules/oracle-discovery/oracle-discovery.service.ts
+++ b/packages/apps/human-app/server/src/modules/oracle-discovery/oracle-discovery.service.ts
@@ -100,12 +100,12 @@ export class OracleDiscoveryService {
registrationNeeded: exchangeOracle.registrationNeeded,
registrationInstructions: exchangeOracle.registrationInstructions,
chainId,
- amountStaked: exchangeOracle.amountStaked,
- amountLocked: exchangeOracle.amountLocked,
- amountWithdrawn: exchangeOracle.amountWithdrawn,
- amountSlashed: exchangeOracle.amountSlashed,
+ stakedAmount: exchangeOracle.stakedAmount,
+ lockedAmount: exchangeOracle.lockedAmount,
+ withdrawnAmount: exchangeOracle.withdrawnAmount,
+ slashedAmount: exchangeOracle.slashedAmount,
amountJobsProcessed: exchangeOracle.amountJobsProcessed,
- reward: exchangeOracle.reward,
+ lastDepositTimestamp: exchangeOracle.lastDepositTimestamp,
lockedUntilTimestamp: exchangeOracle.lockedUntilTimestamp,
}),
);
diff --git a/packages/apps/human-app/server/src/modules/oracle-discovery/spec/oracle-discovery.fixture.ts b/packages/apps/human-app/server/src/modules/oracle-discovery/spec/oracle-discovery.fixture.ts
index 61aa375ee6..07cd521542 100644
--- a/packages/apps/human-app/server/src/modules/oracle-discovery/spec/oracle-discovery.fixture.ts
+++ b/packages/apps/human-app/server/src/modules/oracle-discovery/spec/oracle-discovery.fixture.ts
@@ -16,12 +16,12 @@ export const response1: DiscoveredOracle = {
executionsToSkip: 0,
registrationNeeded: true,
registrationInstructions: 'https://instructions.com',
- amountStaked: BigInt(0),
- amountLocked: BigInt(0),
+ stakedAmount: BigInt(0),
+ lockedAmount: BigInt(0),
lockedUntilTimestamp: BigInt(0),
- amountWithdrawn: BigInt(0),
- amountSlashed: BigInt(0),
- reward: BigInt(0),
+ withdrawnAmount: BigInt(0),
+ slashedAmount: BigInt(0),
+ lastDepositTimestamp: BigInt(0),
amountJobsProcessed: BigInt(0),
};
@@ -37,12 +37,12 @@ export const response2: DiscoveredOracle = {
executionsToSkip: 0,
registrationNeeded: false,
registrationInstructions: undefined,
- amountStaked: BigInt(0),
- amountLocked: BigInt(0),
+ stakedAmount: BigInt(0),
+ lockedAmount: BigInt(0),
lockedUntilTimestamp: BigInt(0),
- amountWithdrawn: BigInt(0),
- amountSlashed: BigInt(0),
- reward: BigInt(0),
+ withdrawnAmount: BigInt(0),
+ slashedAmount: BigInt(0),
+ lastDepositTimestamp: BigInt(0),
amountJobsProcessed: BigInt(0),
};
@@ -58,12 +58,12 @@ export const response3: DiscoveredOracle = {
executionsToSkip: 0,
registrationNeeded: false,
registrationInstructions: undefined,
- amountStaked: BigInt(0),
- amountLocked: BigInt(0),
+ stakedAmount: BigInt(0),
+ lockedAmount: BigInt(0),
lockedUntilTimestamp: BigInt(0),
- amountWithdrawn: BigInt(0),
- amountSlashed: BigInt(0),
- reward: BigInt(0),
+ withdrawnAmount: BigInt(0),
+ slashedAmount: BigInt(0),
+ lastDepositTimestamp: BigInt(0),
amountJobsProcessed: BigInt(0),
};
@@ -79,12 +79,12 @@ export const response4: DiscoveredOracle = {
executionsToSkip: 0,
registrationNeeded: false,
registrationInstructions: undefined,
- amountStaked: BigInt(0),
- amountLocked: BigInt(0),
+ stakedAmount: BigInt(0),
+ lockedAmount: BigInt(0),
lockedUntilTimestamp: BigInt(0),
- amountWithdrawn: BigInt(0),
- amountSlashed: BigInt(0),
- reward: BigInt(0),
+ withdrawnAmount: BigInt(0),
+ slashedAmount: BigInt(0),
+ lastDepositTimestamp: BigInt(0),
amountJobsProcessed: BigInt(0),
};
diff --git a/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.spec.ts b/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.spec.ts
index 5d53b01ffe..fed99b4464 100644
--- a/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.spec.ts
+++ b/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.spec.ts
@@ -118,7 +118,7 @@ describe('AbuseService', () => {
} as unknown as IEscrow);
const amount = faker.number.int();
mockedOperatorUtils.getOperator.mockResolvedValueOnce({
- amountStaked: BigInt(amount),
+ stakedAmount: BigInt(amount),
} as IOperator);
await abuseService.processSlackInteraction(
diff --git a/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.ts b/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.ts
index aa59525880..76fef00027 100644
--- a/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.ts
+++ b/packages/apps/reputation-oracle/server/src/modules/abuse/abuse.service.ts
@@ -106,7 +106,7 @@ export class AbuseService {
);
const maxAmount = Number(
(await OperatorUtils.getOperator(abuseEntity.chainId, escrow.launcher))
- .amountStaked,
+ .stakedAmount,
);
await this.abuseSlackBot.triggerAbuseReportModal({
abuseId: abuseEntity.id,
diff --git a/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.rst b/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.rst
index 9ffb60739d..b23caacd20 100644
--- a/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.rst
+++ b/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.rst
@@ -13,3 +13,4 @@ Submodules
:maxdepth: 4
human_protocol_sdk.staking.staking_client
+ human_protocol_sdk.staking.staking_utils
diff --git a/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.staking_utils.rst b/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.staking_utils.rst
new file mode 100644
index 0000000000..65cbdc1fd0
--- /dev/null
+++ b/packages/sdk/python/human-protocol-sdk/docs/human_protocol_sdk.staking.staking_utils.rst
@@ -0,0 +1,7 @@
+human\_protocol\_sdk.staking.staking\_utils module
+==================================================
+
+.. automodule:: human_protocol_sdk.staking.staking_utils
+ :members:
+ :undoc-members:
+ :show-inheritance:
diff --git a/packages/sdk/python/human-protocol-sdk/example.py b/packages/sdk/python/human-protocol-sdk/example.py
index 1668fdd974..ddc2c65264 100644
--- a/packages/sdk/python/human-protocol-sdk/example.py
+++ b/packages/sdk/python/human-protocol-sdk/example.py
@@ -9,6 +9,7 @@
CancellationRefundFilter,
StatisticsFilter,
WorkerFilter,
+ StakersFilter,
)
from human_protocol_sdk.statistics import (
StatisticsClient,
@@ -16,6 +17,7 @@
)
from human_protocol_sdk.operator import OperatorUtils, OperatorFilter
from human_protocol_sdk.agreement import agreement
+from human_protocol_sdk.staking.staking_utils import StakingUtils
def get_escrow_statistics(statistics_client: StatisticsClient):
@@ -178,22 +180,23 @@ def get_operators():
OperatorFilter(chain_id=ChainId.POLYGON_AMOY)
)
print(operators)
+ print(vars(operators[0]))
print(OperatorUtils.get_operator(ChainId.POLYGON_AMOY, operators[0].address))
print(
OperatorUtils.get_operators(
- OperatorFilter(chain_id=ChainId.POLYGON_AMOY, roles="Job Launcher")
+ OperatorFilter(chain_id=ChainId.POLYGON_AMOY, roles="job_launcher")
)
)
operators = OperatorUtils.get_operators(
- OperatorFilter(chain_id=ChainId.POLYGON_AMOY, roles=["Job Launcher"])
+ OperatorFilter(chain_id=ChainId.POLYGON_AMOY, roles=["job_launcher"])
)
print(len(operators))
operators = OperatorUtils.get_operators(
OperatorFilter(
chain_id=ChainId.POLYGON_AMOY,
- min_amount_staked=1,
- roles=["Job Launcher", "Reputation Oracle"],
+ min_staked_amount=1,
+ roles=["job_launcher", "reputation_oracle"],
)
)
print(len(operators))
@@ -223,6 +226,23 @@ def agreement_example():
print(agreement_report)
+def get_stakers_example():
+ stakers = StakingUtils.get_stakers(
+ StakersFilter(
+ chain_id=ChainId.POLYGON_AMOY,
+ order_by="lastDepositTimestamp",
+ order_direction=OrderDirection.ASC,
+ )
+ )
+ print("Filtered stakers:", len(stakers))
+
+ if stakers:
+ staker = StakingUtils.get_staker(ChainId.LOCALHOST, stakers[0].address)
+ print("Staker info:", staker.address)
+ else:
+ print("No stakers found.")
+
+
if __name__ == "__main__":
statistics_client = StatisticsClient()
@@ -243,3 +263,4 @@ def agreement_example():
agreement_example()
get_workers()
+ get_stakers_example()
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_client.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_client.py
index 0ec75ea3ac..262e10d646 100644
--- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_client.py
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/escrow/escrow_client.py
@@ -91,17 +91,17 @@ def __init__(self, tx_hash: str, amount_refunded: any):
class EscrowWithdraw:
- def __init__(self, tx_hash: str, token_address: str, amount_withdrawn: any):
+ def __init__(self, tx_hash: str, token_address: str, withdrawn_amount: any):
"""
Represents the result of an escrow cancellation transaction.
:param tx_hash: The hash of the transaction associated with the escrow withdrawal.
:param token_address: The address of the token used for the withdrawal.
- :param amount_withdrawn: The amount withdrawn from the escrow.
+ :param withdrawn_amount: The amount withdrawn from the escrow.
"""
self.txHash = tx_hash
- self.tokenAddress = token_address
- self.amountWithdrawn = amount_withdrawn
+ self.token_address = token_address
+ self.withdrawn_amount = withdrawn_amount
class EscrowClientError(Exception):
@@ -1037,7 +1037,7 @@ def get_w3_with_priv_key(priv_key: str):
return EscrowWithdraw(
tx_hash=receipt["transactionHash"].hex(),
token_address=token_address,
- amount_withdrawn=amount_transferred,
+ withdrawn_amount=amount_transferred,
)
except Exception as e:
handle_error(e, EscrowClientError)
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/filter.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/filter.py
index 6d9dbb8448..da3f6b9bff 100644
--- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/filter.py
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/filter.py
@@ -358,6 +358,38 @@ def __init__(
self.skip = max(skip, 0)
+class StakersFilter:
+ def __init__(
+ self,
+ chain_id: ChainId,
+ min_staked_amount: Optional[str] = None,
+ max_staked_amount: Optional[str] = None,
+ min_locked_amount: Optional[str] = None,
+ max_locked_amount: Optional[str] = None,
+ min_withdrawn_amount: Optional[str] = None,
+ max_withdrawn_amount: Optional[str] = None,
+ min_slashed_amount: Optional[str] = None,
+ max_slashed_amount: Optional[str] = None,
+ order_by: Optional[str] = "lastDepositTimestamp",
+ order_direction: OrderDirection = OrderDirection.DESC,
+ first: Optional[int] = 10,
+ skip: Optional[int] = 0,
+ ):
+ self.chain_id = chain_id
+ self.min_staked_amount = min_staked_amount
+ self.max_staked_amount = max_staked_amount
+ self.min_locked_amount = min_locked_amount
+ self.max_locked_amount = max_locked_amount
+ self.min_withdrawn_amount = min_withdrawn_amount
+ self.max_withdrawn_amount = max_withdrawn_amount
+ self.min_slashed_amount = min_slashed_amount
+ self.max_slashed_amount = max_slashed_amount
+ self.order_by = order_by
+ self.order_direction = order_direction
+ self.first = first
+ self.skip = skip
+
+
class CancellationRefundFilter:
"""
A class used to filter cancellation refunds.
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/operator.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/operator.py
index dc5bb549c2..c51544879a 100644
--- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/operator.py
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/operator.py
@@ -6,12 +6,6 @@
fragment OperatorFields on Operator {
id
address
- amountStaked
- amountLocked
- lockedUntilTimestamp
- amountWithdrawn
- amountSlashed
- reward
amountJobsProcessed
role
fee
@@ -27,6 +21,14 @@
}
name
category
+ staker {
+ stakedAmount
+ lockedAmount
+ withdrawnAmount
+ slashedAmount
+ lockedUntilTimestamp
+ lastDepositTimestamp
+ }
}
"""
@@ -34,7 +36,7 @@
def get_operators_query(filter: OperatorFilter):
return """
query GetOperators(
- $minAmountStaked: Int,
+ $minStakedAmount: Int,
$roles: [String!]
$orderBy: String
$orderDirection: String
@@ -43,8 +45,8 @@ def get_operators_query(filter: OperatorFilter):
) {{
operators(
where: {{
- {amount_staked_clause}
- {roles_clause}
+ {min_staked_amount_clause}
+ {roles_clause}
}},
orderBy: $orderBy
orderDirection: $orderDirection
@@ -57,8 +59,10 @@ def get_operators_query(filter: OperatorFilter):
{operator_fragment}
""".format(
operator_fragment=operator_fragment,
- amount_staked_clause=(
- "amountStaked_gte: $minAmountStaked" if filter.min_amount_staked else ""
+ min_staked_amount_clause=(
+ "staker_: { stakedAmount_gte: $minStakedAmount }"
+ if filter.min_staked_amount is not None
+ else ""
),
roles_clause="role_in: $roles" if filter.roles else "",
)
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/staking.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/staking.py
new file mode 100644
index 0000000000..1ab6cd7232
--- /dev/null
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/staking.py
@@ -0,0 +1,75 @@
+from human_protocol_sdk.filter import StakersFilter
+
+staker_fragment = """
+fragment StakerFields on Staker {
+ id
+ address
+ stakedAmount
+ lockedAmount
+ withdrawnAmount
+ slashedAmount
+ lockedUntilTimestamp
+ lastDepositTimestamp
+}
+"""
+
+
+def get_stakers_query(filter: StakersFilter) -> str:
+ where_fields = []
+ if filter.min_staked_amount:
+ where_fields.append("stakedAmount_gte: $minStakedAmount")
+ if filter.max_staked_amount:
+ where_fields.append("stakedAmount_lte: $maxStakedAmount")
+ if filter.min_locked_amount:
+ where_fields.append("lockedAmount_gte: $minLockedAmount")
+ if filter.max_locked_amount:
+ where_fields.append("lockedAmount_lte: $maxLockedAmount")
+ if filter.min_withdrawn_amount:
+ where_fields.append("withdrawnAmount_gte: $minWithdrawnAmount")
+ if filter.max_withdrawn_amount:
+ where_fields.append("withdrawnAmount_lte: $maxWithdrawnAmount")
+ if filter.min_slashed_amount:
+ where_fields.append("slashedAmount_gte: $minSlashedAmount")
+ if filter.max_slashed_amount:
+ where_fields.append("slashedAmount_lte: $maxSlashedAmount")
+
+ where_clause = f"where: {{ {', '.join(where_fields)} }}" if where_fields else ""
+
+ return f"""
+query GetStakers(
+ $minStakedAmount: BigInt
+ $maxStakedAmount: BigInt
+ $minLockedAmount: BigInt
+ $maxLockedAmount: BigInt
+ $minWithdrawnAmount: BigInt
+ $maxWithdrawnAmount: BigInt
+ $minSlashedAmount: BigInt
+ $maxSlashedAmount: BigInt
+ $orderBy: Staker_orderBy
+ $orderDirection: OrderDirection
+ $first: Int
+ $skip: Int
+) {{
+ stakers(
+ {where_clause}
+ orderBy: $orderBy
+ orderDirection: $orderDirection
+ first: $first
+ skip: $skip
+ ) {{
+ ...StakerFields
+ }}
+}}
+{staker_fragment}
+"""
+
+
+def get_staker_query() -> str:
+ return f"""
+query GetStaker($id: String!) {{
+ staker(id: $id) {{
+ ...StakerFields
+ }}
+}}
+{staker_fragment}
+"""
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/operator/operator_utils.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/operator/operator_utils.py
index 05f4f453a9..55a3752caf 100644
--- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/operator/operator_utils.py
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/operator/operator_utils.py
@@ -48,7 +48,7 @@ def __init__(
self,
chain_id: ChainId,
roles: Optional[str] = [],
- min_amount_staked: int = None,
+ min_staked_amount: int = None,
order_by: Optional[str] = None,
order_direction: OrderDirection = OrderDirection.DESC,
first: int = 10,
@@ -59,7 +59,7 @@ def __init__(
:param chain_id: Chain ID to request data
:param roles: Roles to filter by
- :param min_amount_staked: Minimum amount staked to filter by
+ :param min_staked_amount: Minimum amount staked to filter by
:param order_by: Property to order by, e.g., "role"
:param order_direction: Order direction of results, "asc" or "desc"
:param first: Number of items per page
@@ -76,7 +76,7 @@ def __init__(
self.chain_id = chain_id
self.roles = roles
- self.min_amount_staked = min_amount_staked
+ self.min_staked_amount = min_staked_amount
self.order_by = order_by
self.order_direction = order_direction
self.first = min(max(first, 1), 1000)
@@ -89,12 +89,11 @@ def __init__(
chain_id: ChainId,
id: str,
address: str,
- amount_staked: int,
- amount_locked: int,
+ staked_amount: int,
+ locked_amount: int,
locked_until_timestamp: int,
- amount_withdrawn: int,
- amount_slashed: int,
- reward: int,
+ withdrawn_amount: int,
+ slashed_amount: int,
amount_jobs_processed: int,
role: Optional[str] = None,
fee: Optional[int] = None,
@@ -115,12 +114,11 @@ def __init__(
:param chain_id: Chain Identifier
:param id: Identifier
:param address: Address
- :param amount_staked: Amount staked
- :param amount_locked: Amount locked
+ :param staked_amount: Amount staked
+ :param locked_amount: Amount locked
:param locked_until_timestamp: Locked until timestamp
- :param amount_withdrawn: Amount withdrawn
- :param amount_slashed: Amount slashed
- :param reward: Reward
+ :param withdrawn_amount: Amount withdrawn
+ :param slashed_amount: Amount slashed
:param amount_jobs_processed: Amount of jobs launched
:param role: Role
:param fee: Fee
@@ -139,12 +137,11 @@ def __init__(
self.chain_id = chain_id
self.id = id
self.address = address
- self.amount_staked = amount_staked
- self.amount_locked = amount_locked
+ self.staked_amount = staked_amount
+ self.locked_amount = locked_amount
self.locked_until_timestamp = locked_until_timestamp
- self.amount_withdrawn = amount_withdrawn
- self.amount_slashed = amount_slashed
- self.reward = reward
+ self.withdrawn_amount = withdrawn_amount
+ self.slashed_amount = slashed_amount
self.amount_jobs_processed = amount_jobs_processed
self.role = role
self.fee = fee
@@ -215,7 +212,7 @@ def get_operators(filter: OperatorFilter) -> List[OperatorData]:
network,
query=get_operators_query(filter),
params={
- "minAmountStaked": filter.min_amount_staked,
+ "minStakedAmount": filter.min_staked_amount,
"roles": filter.roles,
"orderBy": filter.order_by,
"orderDirection": filter.order_direction.value,
@@ -235,14 +232,7 @@ def get_operators(filter: OperatorFilter) -> List[OperatorData]:
operators_raw = operators_data["data"]["operators"]
for operator in operators_raw:
- job_types = []
reputation_networks = []
-
- if isinstance(operator.get("jobTypes"), str):
- job_types = operator["jobTypes"].split(",")
- elif isinstance(operator.get("jobTypes"), list):
- job_types = operator["jobTypes"]
-
if operator.get("reputationNetworks") and isinstance(
operator.get("reputationNetworks"), list
):
@@ -250,17 +240,17 @@ def get_operators(filter: OperatorFilter) -> List[OperatorData]:
network["address"] for network in operator["reputationNetworks"]
]
+ staker = operator.get("staker", {})
operators.append(
OperatorData(
chain_id=filter.chain_id,
id=operator.get("id", ""),
address=operator.get("address", ""),
- amount_staked=int(operator.get("amountStaked", 0)),
- amount_locked=int(operator.get("amountLocked", 0)),
- locked_until_timestamp=int(operator.get("lockedUntilTimestamp", 0)),
- amount_withdrawn=int(operator.get("amountWithdrawn", 0)),
- amount_slashed=int(operator.get("amountSlashed", 0)),
- reward=int(operator.get("reward", 0)),
+ staked_amount=int(staker.get("stakedAmount", 0)),
+ locked_amount=int(staker.get("lockedAmount", 0)),
+ locked_until_timestamp=int(staker.get("lockedUntilTimestamp", 0)),
+ withdrawn_amount=int(staker.get("withdrawnAmount", 0)),
+ slashed_amount=int(staker.get("slashedAmount", 0)),
amount_jobs_processed=int(operator.get("amountJobsProcessed", 0)),
role=operator.get("role", None),
fee=int(operator.get("fee")) if operator.get("fee", None) else None,
@@ -339,15 +329,8 @@ def get_operator(
return None
operator = operator_data["data"]["operator"]
-
- job_types = []
reputation_networks = []
- if isinstance(operator.get("jobTypes"), str):
- job_types = operator["jobTypes"].split(",")
- elif isinstance(operator.get("jobTypes"), list):
- job_types = operator["jobTypes"]
-
if operator.get("reputationNetworks") and isinstance(
operator.get("reputationNetworks"), list
):
@@ -355,16 +338,16 @@ def get_operator(
network["address"] for network in operator["reputationNetworks"]
]
+ staker = operator.get("staker", {})
return OperatorData(
chain_id=chain_id,
id=operator.get("id", ""),
address=operator.get("address", ""),
- amount_staked=int(operator.get("amountStaked", 0)),
- amount_locked=int(operator.get("amountLocked", 0)),
- locked_until_timestamp=int(operator.get("lockedUntilTimestamp", 0)),
- amount_withdrawn=int(operator.get("amountWithdrawn", 0)),
- amount_slashed=int(operator.get("amountSlashed", 0)),
- reward=int(operator.get("reward", 0)),
+ staked_amount=int(staker.get("stakedAmount", 0)),
+ locked_amount=int(staker.get("lockedAmount", 0)),
+ locked_until_timestamp=int(staker.get("lockedUntilTimestamp", 0)),
+ withdrawn_amount=int(staker.get("withdrawnAmount", 0)),
+ slashed_amount=int(staker.get("slashedAmount", 0)),
amount_jobs_processed=int(operator.get("amountJobsProcessed", 0)),
role=operator.get("role", None),
fee=int(operator.get("fee")) if operator.get("fee", None) else None,
@@ -445,12 +428,13 @@ def get_reputation_network_operators(
chain_id=chain_id,
id=operator.get("id", ""),
address=operator.get("address", ""),
- amount_staked=int(operator.get("amountStaked", 0)),
- amount_locked=int(operator.get("amountLocked", 0)),
- locked_until_timestamp=int(operator.get("lockedUntilTimestamp", 0)),
- amount_withdrawn=int(operator.get("amountWithdrawn", 0)),
- amount_slashed=int(operator.get("amountSlashed", 0)),
- reward=int(operator.get("reward", 0)),
+ staked_amount=int(
+ (staker := operator.get("staker") or {}).get("stakedAmount", 0)
+ ),
+ locked_amount=int(staker.get("lockedAmount", 0)),
+ locked_until_timestamp=int(staker.get("lockedUntilTimestamp", 0)),
+ withdrawn_amount=int(staker.get("withdrawnAmount", 0)),
+ slashed_amount=int(staker.get("slashedAmount", 0)),
amount_jobs_processed=int(operator.get("amountJobsProcessed", 0)),
role=operator.get("role", None),
fee=int(operator.get("fee")) if operator.get("fee", None) else None,
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/__init__.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/__init__.py
index 32cfe61efb..33c5419b5d 100644
--- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/__init__.py
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/__init__.py
@@ -4,3 +4,5 @@
"""
from .staking_client import StakingClient, StakingClientError
+
+from .staking_utils import StakerData, StakingUtils, StakingUtilsError
diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/staking_utils.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/staking_utils.py
new file mode 100644
index 0000000000..9579bad428
--- /dev/null
+++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/staking/staking_utils.py
@@ -0,0 +1,140 @@
+"""
+Utility class for staking-related operations.
+
+Code Example
+------------
+
+.. code-block:: python
+
+ from human_protocol_sdk.constants import ChainId
+ from human_protocol_sdk.staking.staking_utils import StakingUtils, StakersFilter
+
+ stakers = StakingUtils.get_stakers(
+ StakersFilter(
+ chain_id=ChainId.POLYGON_AMOY,
+ min_staked_amount="1000000000000000000",
+ max_locked_amount="5000000000000000000",
+ order_by="withdrawnAmount",
+ order_direction="asc",
+ first=5,
+ skip=0,
+ )
+ )
+ print("Filtered stakers:", stakers)
+
+Module
+------
+
+"""
+
+from typing import List, Optional
+from human_protocol_sdk.constants import NETWORKS, ChainId
+from human_protocol_sdk.filter import StakersFilter
+from human_protocol_sdk.utils import get_data_from_subgraph
+from human_protocol_sdk.gql.staking import get_staker_query, get_stakers_query
+
+
+class StakerData:
+ def __init__(
+ self,
+ id: str,
+ address: str,
+ staked_amount: str,
+ locked_amount: str,
+ withdrawn_amount: str,
+ slashed_amount: str,
+ locked_until_timestamp: str,
+ last_deposit_timestamp: str,
+ ):
+ self.id = id
+ self.address = address
+ self.staked_amount = staked_amount
+ self.locked_amount = locked_amount
+ self.withdrawn_amount = withdrawn_amount
+ self.slashed_amount = slashed_amount
+ self.locked_until_timestamp = locked_until_timestamp
+ self.last_deposit_timestamp = last_deposit_timestamp
+
+
+class StakingUtilsError(Exception):
+ pass
+
+
+class StakingUtils:
+ @staticmethod
+ def get_staker(chain_id: ChainId, address: str) -> Optional[StakerData]:
+ network = NETWORKS.get(chain_id)
+ if not network:
+ raise StakingUtilsError("Unsupported Chain ID")
+
+ data = get_data_from_subgraph(
+ network,
+ query=get_staker_query(),
+ params={"id": address.lower()},
+ )
+ if (
+ not data
+ or "data" not in data
+ or "staker" not in data["data"]
+ or not data["data"]["staker"]
+ ):
+ return None
+
+ staker = data["data"]["staker"]
+ return StakerData(
+ id=staker.get("id", ""),
+ address=staker.get("address", ""),
+ staked_amount=staker.get("stakedAmount", ""),
+ locked_amount=staker.get("lockedAmount", ""),
+ withdrawn_amount=staker.get("withdrawnAmount", ""),
+ slashed_amount=staker.get("slashedAmount", ""),
+ locked_until_timestamp=staker.get("lockedUntilTimestamp", ""),
+ last_deposit_timestamp=staker.get("lastDepositTimestamp", ""),
+ )
+
+ @staticmethod
+ def get_stakers(filter: StakersFilter) -> List[StakerData]:
+ network_data = NETWORKS.get(filter.chain_id)
+ if not network_data:
+ raise StakingUtilsError("Unsupported Chain ID")
+
+ data = get_data_from_subgraph(
+ network_data,
+ query=get_stakers_query(filter),
+ params={
+ "minStakedAmount": filter.min_staked_amount,
+ "maxStakedAmount": filter.max_staked_amount,
+ "minLockedAmount": filter.min_locked_amount,
+ "maxLockedAmount": filter.max_locked_amount,
+ "minWithdrawnAmount": filter.min_withdrawn_amount,
+ "maxWithdrawnAmount": filter.max_withdrawn_amount,
+ "minSlashedAmount": filter.min_slashed_amount,
+ "maxSlashedAmount": filter.max_slashed_amount,
+ "orderBy": filter.order_by,
+ "orderDirection": filter.order_direction.value,
+ "first": filter.first,
+ "skip": filter.skip,
+ },
+ )
+ if (
+ not data
+ or "data" not in data
+ or "stakers" not in data["data"]
+ or not data["data"]["stakers"]
+ ):
+ return []
+
+ stakers_raw = data["data"]["stakers"]
+ return [
+ StakerData(
+ id=staker.get("id", ""),
+ address=staker.get("address", ""),
+ staked_amount=staker.get("stakedAmount", ""),
+ locked_amount=staker.get("lockedAmount", ""),
+ withdrawn_amount=staker.get("withdrawnAmount", ""),
+ slashed_amount=staker.get("slashedAmount", ""),
+ locked_until_timestamp=staker.get("lockedUntilTimestamp", ""),
+ last_deposit_timestamp=staker.get("lastDepositTimestamp", ""),
+ )
+ for staker in stakers_raw
+ ]
diff --git a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_client.py b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_client.py
index bde8e030f9..5bf353dfc5 100644
--- a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_client.py
+++ b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/escrow/test_escrow_client.py
@@ -1636,8 +1636,8 @@ def test_withdraw(self):
self.escrow.w3.eth.wait_for_transaction_receipt.assert_called_once_with(
"tx_hash"
)
- self.assertEqual(result.amountWithdrawn, amount_withdrawn)
- self.assertEqual(result.tokenAddress, token_address)
+ self.assertEqual(result.withdrawn_amount, amount_withdrawn)
+ self.assertEqual(result.token_address, token_address)
self.assertEqual(result.txHash, receipt["transactionHash"].hex())
def test_withdraw_invalid_escrow_address(self):
@@ -1740,8 +1740,8 @@ def test_withdraw_with_tx_options(self):
self.escrow.w3.eth.wait_for_transaction_receipt.assert_called_once_with(
"tx_hash"
)
- self.assertEqual(result.amountWithdrawn, amount_withdrawn)
- self.assertEqual(result.tokenAddress, token_address)
+ self.assertEqual(result.withdrawn_amount, amount_withdrawn)
+ self.assertEqual(result.token_address, token_address)
self.assertEqual(result.txHash, receipt["transactionHash"].hex())
def test_get_balance(self):
diff --git a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/operator/test_operator_utils.py b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/operator/test_operator_utils.py
index efff633bfd..4c42033a97 100644
--- a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/operator/test_operator_utils.py
+++ b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/operator/test_operator_utils.py
@@ -27,12 +27,6 @@ def test_get_operators(self):
{
"id": DEFAULT_GAS_PAYER,
"address": DEFAULT_GAS_PAYER,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -46,6 +40,14 @@ def test_get_operators(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
],
}
@@ -58,7 +60,7 @@ def test_get_operators(self):
NETWORKS[ChainId.POLYGON],
query=get_operators_query(filter),
params={
- "minAmountStaked": filter.min_amount_staked,
+ "minStakedAmount": filter.min_staked_amount,
"roles": filter.roles,
"orderBy": filter.order_by,
"orderDirection": filter.order_direction.value,
@@ -70,12 +72,11 @@ def test_get_operators(self):
self.assertEqual(len(operators), 1)
self.assertEqual(operators[0].id, DEFAULT_GAS_PAYER)
self.assertEqual(operators[0].address, DEFAULT_GAS_PAYER)
- self.assertEqual(operators[0].amount_staked, 100)
- self.assertEqual(operators[0].amount_locked, 25)
+ self.assertEqual(operators[0].staked_amount, 100)
+ self.assertEqual(operators[0].locked_amount, 25)
self.assertEqual(operators[0].locked_until_timestamp, 0)
- self.assertEqual(operators[0].amount_withdrawn, 25)
- self.assertEqual(operators[0].amount_slashed, 25)
- self.assertEqual(operators[0].reward, 25)
+ self.assertEqual(operators[0].withdrawn_amount, 25)
+ self.assertEqual(operators[0].slashed_amount, 25)
self.assertEqual(operators[0].amount_jobs_processed, 25)
self.assertEqual(operators[0].role, "role")
self.assertEqual(operators[0].fee, None)
@@ -104,12 +105,6 @@ def test_get_operators_when_job_types_is_none(self):
{
"id": DEFAULT_GAS_PAYER,
"address": DEFAULT_GAS_PAYER,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -121,6 +116,14 @@ def test_get_operators_when_job_types_is_none(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
],
}
@@ -133,7 +136,7 @@ def test_get_operators_when_job_types_is_none(self):
NETWORKS[ChainId.POLYGON],
query=get_operators_query(filter),
params={
- "minAmountStaked": filter.min_amount_staked,
+ "minStakedAmount": filter.min_staked_amount,
"roles": filter.roles,
"orderBy": filter.order_by,
"orderDirection": filter.order_direction.value,
@@ -145,12 +148,11 @@ def test_get_operators_when_job_types_is_none(self):
self.assertEqual(len(operators), 1)
self.assertEqual(operators[0].id, DEFAULT_GAS_PAYER)
self.assertEqual(operators[0].address, DEFAULT_GAS_PAYER)
- self.assertEqual(operators[0].amount_staked, 100)
- self.assertEqual(operators[0].amount_locked, 25)
+ self.assertEqual(operators[0].staked_amount, 100)
+ self.assertEqual(operators[0].locked_amount, 25)
self.assertEqual(operators[0].locked_until_timestamp, 0)
- self.assertEqual(operators[0].amount_withdrawn, 25)
- self.assertEqual(operators[0].amount_slashed, 25)
- self.assertEqual(operators[0].reward, 25)
+ self.assertEqual(operators[0].withdrawn_amount, 25)
+ self.assertEqual(operators[0].slashed_amount, 25)
self.assertEqual(operators[0].amount_jobs_processed, 25)
self.assertEqual(operators[0].role, "role")
self.assertEqual(operators[0].fee, None)
@@ -179,12 +181,6 @@ def test_get_operators_when_job_types_is_array(self):
{
"id": DEFAULT_GAS_PAYER,
"address": DEFAULT_GAS_PAYER,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -196,6 +192,14 @@ def test_get_operators_when_job_types_is_array(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
],
}
@@ -208,7 +212,7 @@ def test_get_operators_when_job_types_is_array(self):
NETWORKS[ChainId.POLYGON],
query=get_operators_query(filter),
params={
- "minAmountStaked": filter.min_amount_staked,
+ "minStakedAmount": filter.min_staked_amount,
"roles": filter.roles,
"orderBy": filter.order_by,
"orderDirection": filter.order_direction.value,
@@ -220,12 +224,11 @@ def test_get_operators_when_job_types_is_array(self):
self.assertEqual(len(operators), 1)
self.assertEqual(operators[0].id, DEFAULT_GAS_PAYER)
self.assertEqual(operators[0].address, DEFAULT_GAS_PAYER)
- self.assertEqual(operators[0].amount_staked, 100)
- self.assertEqual(operators[0].amount_locked, 25)
+ self.assertEqual(operators[0].staked_amount, 100)
+ self.assertEqual(operators[0].locked_amount, 25)
self.assertEqual(operators[0].locked_until_timestamp, 0)
- self.assertEqual(operators[0].amount_withdrawn, 25)
- self.assertEqual(operators[0].amount_slashed, 25)
- self.assertEqual(operators[0].reward, 25)
+ self.assertEqual(operators[0].withdrawn_amount, 25)
+ self.assertEqual(operators[0].slashed_amount, 25)
self.assertEqual(operators[0].amount_jobs_processed, 25)
self.assertEqual(operators[0].role, "role")
self.assertEqual(operators[0].fee, None)
@@ -261,7 +264,7 @@ def test_get_operators_empty_data(self):
NETWORKS[ChainId.POLYGON],
query=get_operators_query(filter),
params={
- "minAmountStaked": filter.min_amount_staked,
+ "minStakedAmount": filter.min_staked_amount,
"roles": filter.roles,
"orderBy": filter.order_by,
"orderDirection": filter.order_direction.value,
@@ -286,12 +289,6 @@ def test_get_operator(self):
"operator": {
"id": staker_address,
"address": staker_address,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -305,6 +302,14 @@ def test_get_operator(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
}
}
@@ -321,12 +326,11 @@ def test_get_operator(self):
self.assertNotEqual(operator, None)
self.assertEqual(operator.id, staker_address)
self.assertEqual(operator.address, staker_address)
- self.assertEqual(operator.amount_staked, 100)
- self.assertEqual(operator.amount_locked, 25)
+ self.assertEqual(operator.staked_amount, 100)
+ self.assertEqual(operator.locked_amount, 25)
self.assertEqual(operator.locked_until_timestamp, 0)
- self.assertEqual(operator.amount_withdrawn, 25)
- self.assertEqual(operator.amount_slashed, 25)
- self.assertEqual(operator.reward, 25)
+ self.assertEqual(operator.withdrawn_amount, 25)
+ self.assertEqual(operator.slashed_amount, 25)
self.assertEqual(operator.amount_jobs_processed, 25)
self.assertEqual(operator.role, "role")
self.assertEqual(operator.fee, None)
@@ -355,12 +359,6 @@ def test_get_operator_when_job_types_is_none(self):
"operator": {
"id": staker_address,
"address": staker_address,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -372,6 +370,14 @@ def test_get_operator_when_job_types_is_none(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
}
}
@@ -388,12 +394,11 @@ def test_get_operator_when_job_types_is_none(self):
self.assertNotEqual(operator, None)
self.assertEqual(operator.id, staker_address)
self.assertEqual(operator.address, staker_address)
- self.assertEqual(operator.amount_staked, 100)
- self.assertEqual(operator.amount_locked, 25)
+ self.assertEqual(operator.staked_amount, 100)
+ self.assertEqual(operator.locked_amount, 25)
self.assertEqual(operator.locked_until_timestamp, 0)
- self.assertEqual(operator.amount_withdrawn, 25)
- self.assertEqual(operator.amount_slashed, 25)
- self.assertEqual(operator.reward, 25)
+ self.assertEqual(operator.withdrawn_amount, 25)
+ self.assertEqual(operator.slashed_amount, 25)
self.assertEqual(operator.amount_jobs_processed, 25)
self.assertEqual(operator.role, "role")
self.assertEqual(operator.fee, None)
@@ -422,12 +427,6 @@ def test_get_operator_when_job_types_is_array(self):
"operator": {
"id": staker_address,
"address": staker_address,
- "amountStaked": "100",
- "amountLocked": "25",
- "lockedUntilTimestamp": "0",
- "amountWithdrawn": "25",
- "amountSlashed": "25",
- "reward": "25",
"amountJobsProcessed": "25",
"role": "role",
"fee": None,
@@ -439,6 +438,14 @@ def test_get_operator_when_job_types_is_array(self):
"reputationNetworks": [{"address": "0x01"}],
"name": "Alice",
"category": "machine_learning",
+ "staker": {
+ "stakedAmount": "100",
+ "lockedAmount": "25",
+ "withdrawnAmount": "25",
+ "slashedAmount": "25",
+ "lockedUntilTimestamp": "0",
+ "lastDepositTimestamp": "0",
+ },
}
}
}
@@ -455,12 +462,11 @@ def test_get_operator_when_job_types_is_array(self):
self.assertNotEqual(operator, None)
self.assertEqual(operator.id, staker_address)
self.assertEqual(operator.address, staker_address)
- self.assertEqual(operator.amount_staked, 100)
- self.assertEqual(operator.amount_locked, 25)
+ self.assertEqual(operator.staked_amount, 100)
+ self.assertEqual(operator.locked_amount, 25)
self.assertEqual(operator.locked_until_timestamp, 0)
- self.assertEqual(operator.amount_withdrawn, 25)
- self.assertEqual(operator.amount_slashed, 25)
- self.assertEqual(operator.reward, 25)
+ self.assertEqual(operator.withdrawn_amount, 25)
+ self.assertEqual(operator.slashed_amount, 25)
self.assertEqual(operator.amount_jobs_processed, 25)
self.assertEqual(operator.role, "role")
self.assertEqual(operator.fee, None)
diff --git a/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/staking/test_staking_utils.py b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/staking/test_staking_utils.py
new file mode 100644
index 0000000000..6547858b5e
--- /dev/null
+++ b/packages/sdk/python/human-protocol-sdk/test/human_protocol_sdk/staking/test_staking_utils.py
@@ -0,0 +1,143 @@
+import unittest
+from unittest.mock import patch
+
+from human_protocol_sdk.constants import NETWORKS, ChainId, OrderDirection
+from human_protocol_sdk.filter import StakersFilter
+from human_protocol_sdk.staking.staking_utils import (
+ StakingUtils,
+ StakingUtilsError,
+ StakerData,
+)
+from human_protocol_sdk.gql.staking import get_staker_query, get_stakers_query
+
+
+class TestStakingUtils(unittest.TestCase):
+ def test_get_stakers(self):
+ with patch(
+ "human_protocol_sdk.staking.staking_utils.get_data_from_subgraph"
+ ) as mock_function:
+ mock_staker_1 = {
+ "id": "1",
+ "address": "0x123",
+ "stakedAmount": "1000",
+ "lockedAmount": "100",
+ "withdrawnAmount": "900",
+ "slashedAmount": "0",
+ "lockedUntilTimestamp": "1234567890",
+ "lastDepositTimestamp": "1234567891",
+ }
+ mock_staker_2 = {
+ "id": "2",
+ "address": "0x456",
+ "stakedAmount": "2000",
+ "lockedAmount": "200",
+ "withdrawnAmount": "1800",
+ "slashedAmount": "0",
+ "lockedUntilTimestamp": "1234567892",
+ "lastDepositTimestamp": "1234567893",
+ }
+
+ mock_function.return_value = {
+ "data": {"stakers": [mock_staker_1, mock_staker_2]}
+ }
+
+ filter = StakersFilter(
+ chain_id=ChainId.POLYGON_AMOY,
+ min_staked_amount="1000",
+ order_by="stakedAmount",
+ order_direction=OrderDirection.ASC,
+ first=2,
+ skip=0,
+ )
+
+ stakers = StakingUtils.get_stakers(filter)
+
+ mock_function.assert_called_once_with(
+ NETWORKS[ChainId.POLYGON_AMOY],
+ query=get_stakers_query(filter),
+ params={
+ "minStakedAmount": "1000",
+ "maxStakedAmount": None,
+ "minLockedAmount": None,
+ "maxLockedAmount": None,
+ "minWithdrawnAmount": None,
+ "maxWithdrawnAmount": None,
+ "minSlashedAmount": None,
+ "maxSlashedAmount": None,
+ "orderBy": "stakedAmount",
+ "orderDirection": "asc",
+ "first": 2,
+ "skip": 0,
+ },
+ )
+ self.assertEqual(len(stakers), 2)
+ self.assertIsInstance(stakers[0], StakerData)
+ self.assertEqual(stakers[0].id, "1")
+ self.assertEqual(stakers[1].id, "2")
+
+ def test_get_stakers_empty_response(self):
+ with patch(
+ "human_protocol_sdk.staking.staking_utils.get_data_from_subgraph"
+ ) as mock_function:
+ mock_function.return_value = {"data": {"stakers": []}}
+
+ filter = StakersFilter(chain_id=ChainId.POLYGON_AMOY)
+
+ stakers = StakingUtils.get_stakers(filter)
+
+ mock_function.assert_called_once()
+ self.assertEqual(len(stakers), 0)
+
+ def test_get_stakers_invalid_network(self):
+ with self.assertRaises(ValueError) as cm:
+ filter = StakersFilter(chain_id=ChainId(123))
+ StakingUtils.get_stakers(filter)
+ self.assertEqual(str(cm.exception), "123 is not a valid ChainId")
+
+ def test_get_staker(self):
+ with patch(
+ "human_protocol_sdk.staking.staking_utils.get_data_from_subgraph"
+ ) as mock_function:
+ mock_staker = {
+ "id": "1",
+ "address": "0x123",
+ "stakedAmount": "1000",
+ "lockedAmount": "100",
+ "withdrawnAmount": "900",
+ "slashedAmount": "0",
+ "lockedUntilTimestamp": "1234567890",
+ "lastDepositTimestamp": "1234567891",
+ }
+
+ mock_function.return_value = {"data": {"staker": mock_staker}}
+
+ staker = StakingUtils.get_staker(ChainId.POLYGON_AMOY, "0x123")
+
+ mock_function.assert_called_once_with(
+ NETWORKS[ChainId.POLYGON_AMOY],
+ query=get_staker_query(),
+ params={"id": "0x123"},
+ )
+ self.assertIsInstance(staker, StakerData)
+ self.assertEqual(staker.id, "1")
+ self.assertEqual(staker.address, "0x123")
+
+ def test_get_staker_empty_data(self):
+ with patch(
+ "human_protocol_sdk.staking.staking_utils.get_data_from_subgraph"
+ ) as mock_function:
+ mock_function.return_value = {"data": {"staker": None}}
+
+ staker = StakingUtils.get_staker(ChainId.POLYGON_AMOY, "0x123")
+
+ mock_function.assert_called_once()
+ self.assertIsNone(staker)
+
+ def test_get_staker_invalid_chain_id(self):
+ with self.assertRaises(ValueError) as cm:
+ StakingUtils.get_staker(ChainId(123), "0x123")
+ self.assertEqual(str(cm.exception), "123 is not a valid ChainId")
+
+
+if __name__ == "__main__":
+ unittest.main(exit=True)
diff --git a/packages/sdk/typescript/human-protocol-sdk/example/staking.ts b/packages/sdk/typescript/human-protocol-sdk/example/staking.ts
new file mode 100644
index 0000000000..f4ca4617cc
--- /dev/null
+++ b/packages/sdk/typescript/human-protocol-sdk/example/staking.ts
@@ -0,0 +1,30 @@
+/* eslint-disable no-console */
+import { StakingUtils } from '../src/staking';
+import { ChainId, OrderDirection } from '../src/enums';
+import { ethers } from 'ethers';
+
+const runStakingExamples = async () => {
+ const stakers = await StakingUtils.getStakers({
+ chainId: ChainId.LOCALHOST,
+ maxLockedAmount: ethers.parseEther('5').toString(),
+ orderBy: 'lastDepositTimestamp',
+ orderDirection: OrderDirection.ASC,
+ first: 5,
+ skip: 0,
+ });
+ console.log('Filtered stakers:', stakers);
+
+ try {
+ const staker = await StakingUtils.getStaker(
+ ChainId.LOCALHOST,
+ stakers[0].address
+ );
+ console.log('Staker info:', staker);
+ } catch (e) {
+ console.log('Staker not found');
+ }
+};
+
+(async () => {
+ await runStakingExamples();
+})();
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/error.ts b/packages/sdk/typescript/human-protocol-sdk/src/error.ts
index 8305259164..a4c4d9fae7 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/error.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/error.ts
@@ -170,6 +170,11 @@ export const ErrorProviderDoesNotExist = new Error('Provider does not exist');
*/
export const ErrorUnsupportedChainID = new Error('Unsupported chain ID');
+/**
+ * @constant {Error} - Staker not found.
+ */
+export const ErrorStakerNotFound = new Error('Staker not found');
+
/**
* @constant {Error} - Sending a transaction requires a signer.
*/
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts
index f1ac8fa838..676843e2f7 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts
@@ -965,7 +965,7 @@ export class EscrowClient extends BaseEthersClient {
const escrowWithdrawData: EscrowWithdraw = {
txHash: transactionReceipt?.hash || '',
tokenAddress,
- amountWithdrawn: amountTransferred,
+ withdrawnAmount: amountTransferred,
};
return escrowWithdrawData;
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/operator.ts b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/operator.ts
index 692a7b4f85..0a81b2cbf5 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/operator.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/operator.ts
@@ -5,12 +5,6 @@ const LEADER_FRAGMENT = gql`
fragment OperatorFields on Operator {
id
address
- amountStaked
- amountLocked
- lockedUntilTimestamp
- amountWithdrawn
- amountSlashed
- reward
amountJobsProcessed
role
fee
@@ -24,22 +18,30 @@ const LEADER_FRAGMENT = gql`
reputationNetworks
name
category
+ staker {
+ stakedAmount
+ lockedAmount
+ withdrawnAmount
+ slashedAmount
+ lockedUntilTimestamp
+ lastDepositTimestamp
+ }
}
`;
export const GET_LEADERS_QUERY = (filter: IOperatorsFilter) => {
- const { roles, minAmountStaked } = filter;
+ const { roles, minStakedAmount } = filter;
const WHERE_CLAUSE = `
where: {
- ${minAmountStaked ? `amountStaked_gte: $minAmountStaked` : ''}
+ ${minStakedAmount ? `staker_: { stakedAmount_gte: $minStakedAmount }` : ''}
${roles ? `role_in: $roles` : ''}
}
`;
return gql`
query getOperators(
- $minAmountStaked: Int,
+ $minStakedAmount: Int,
$roles: [String!]
$first: Int
$skip: Int
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/staking.ts b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/staking.ts
new file mode 100644
index 0000000000..e9b92854c8
--- /dev/null
+++ b/packages/sdk/typescript/human-protocol-sdk/src/graphql/queries/staking.ts
@@ -0,0 +1,80 @@
+import gql from 'graphql-tag';
+import { IStakersFilter } from '../../interfaces';
+
+const STAKER_FRAGMENT = gql`
+ fragment StakerFields on Staker {
+ id
+ address
+ stakedAmount
+ lockedAmount
+ withdrawnAmount
+ slashedAmount
+ lockedUntilTimestamp
+ lastDepositTimestamp
+ }
+`;
+
+export const GET_STAKERS_QUERY = (filter: IStakersFilter) => {
+ const {
+ minStakedAmount,
+ maxStakedAmount,
+ minLockedAmount,
+ maxLockedAmount,
+ minWithdrawnAmount,
+ maxWithdrawnAmount,
+ minSlashedAmount,
+ maxSlashedAmount,
+ } = filter;
+
+ const whereFields = [
+ minStakedAmount ? `stakedAmount_gte: $minStakedAmount` : '',
+ maxStakedAmount ? `stakedAmount_lte: $maxStakedAmount` : '',
+ minLockedAmount ? `lockedAmount_gte: $minLockedAmount` : '',
+ maxLockedAmount ? `lockedAmount_lte: $maxLockedAmount` : '',
+ minWithdrawnAmount ? `withdrawnAmount_gte: $minWithdrawnAmount` : '',
+ maxWithdrawnAmount ? `withdrawnAmount_lte: $maxWithdrawnAmount` : '',
+ minSlashedAmount ? `slashedAmount_gte: $minSlashedAmount` : '',
+ maxSlashedAmount ? `slashedAmount_lte: $maxSlashedAmount` : '',
+ ].filter(Boolean);
+
+ const WHERE_CLAUSE = whereFields.length
+ ? `where: { ${whereFields.join(', ')} }`
+ : '';
+
+ return gql`
+ query getStakers(
+ $minStakedAmount: BigInt
+ $maxStakedAmount: BigInt
+ $minLockedAmount: BigInt
+ $maxLockedAmount: BigInt
+ $minWithdrawnAmount: BigInt
+ $maxWithdrawnAmount: BigInt
+ $minSlashedAmount: BigInt
+ $maxSlashedAmount: BigInt
+ $orderBy: String
+ $orderDirection: OrderDirection
+ $first: Int
+ $skip: Int
+ ) {
+ stakers(
+ ${WHERE_CLAUSE}
+ orderBy: $orderBy
+ orderDirection: $orderDirection
+ first: $first
+ skip: $skip
+ ) {
+ ...StakerFields
+ }
+ }
+ ${STAKER_FRAGMENT}
+ `;
+};
+
+export const GET_STAKER_BY_ADDRESS_QUERY = gql`
+ query getStaker($id: String!) {
+ staker(id: $id) {
+ ...StakerFields
+ }
+ }
+ ${STAKER_FRAGMENT}
+`;
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts
index 801c3049ba..e5a7a767d4 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/interfaces.ts
@@ -10,12 +10,11 @@ export interface IOperator {
id: string;
chainId: ChainId;
address: string;
- amountStaked: bigint;
- amountLocked: bigint;
+ stakedAmount: bigint;
+ lockedAmount: bigint;
lockedUntilTimestamp: bigint;
- amountWithdrawn: bigint;
- amountSlashed: bigint;
- reward: bigint;
+ withdrawnAmount: bigint;
+ slashedAmount: bigint;
amountJobsProcessed: bigint;
role?: string;
fee?: bigint;
@@ -31,16 +30,36 @@ export interface IOperator {
category?: string;
}
-export interface IOperatorSubgraph
- extends Omit {
- jobTypes?: string;
+export interface IOperatorSubgraph {
+ id: string;
+ address: string;
+ amountJobsProcessed: bigint;
+ role?: string;
+ fee?: bigint;
+ publicKey?: string;
+ webhookUrl?: string;
+ website?: string;
+ url?: string;
+ registrationNeeded?: boolean;
+ registrationInstructions?: string;
+ name?: string;
+ category?: string;
+ jobTypes?: string | string[];
reputationNetworks?: { address: string }[];
+ staker?: {
+ stakedAmount: bigint;
+ lockedAmount: bigint;
+ lockedUntilTimestamp: bigint;
+ withdrawnAmount: bigint;
+ slashedAmount: bigint;
+ lastDepositTimestamp: bigint;
+ };
}
export interface IOperatorsFilter extends IPagination {
chainId: ChainId;
roles?: string[];
- minAmountStaked?: number;
+ minStakedAmount?: number;
orderBy?: string;
}
@@ -55,15 +74,6 @@ export interface IReputationNetworkSubgraph
operators: IOperatorSubgraph[];
}
-export interface IOperator {
- address: string;
- role?: string;
- url?: string;
- jobTypes?: string[];
- registrationNeeded?: boolean;
- registrationInstructions?: string;
-}
-
export interface IEscrow {
id: string;
address: string;
@@ -209,6 +219,32 @@ export interface IWorkersFilter extends IPagination {
orderBy?: string;
}
+export interface IStaker {
+ address: string;
+ stakedAmount: bigint;
+ lockedAmount: bigint;
+ lockedUntil: bigint;
+ withdrawableAmount: bigint;
+ slashedAmount: bigint;
+}
+
+export interface IStakersFilter extends IPagination {
+ chainId: ChainId;
+ minStakedAmount?: string;
+ maxStakedAmount?: string;
+ minLockedAmount?: string;
+ maxLockedAmount?: string;
+ minWithdrawnAmount?: string;
+ maxWithdrawnAmount?: string;
+ minSlashedAmount?: string;
+ maxSlashedAmount?: string;
+ orderBy?:
+ | 'stakedAmount'
+ | 'lockedAmount'
+ | 'withdrawnAmount'
+ | 'slashedAmount'
+ | 'lastDepositTimestamp';
+}
export interface ICancellationRefundFilter extends IPagination {
chainId: ChainId;
escrowAddress?: string;
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/operator.ts b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts
index b5ebff24b2..b9d43b8e22 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/operator.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/operator.ts
@@ -60,33 +60,10 @@ export class OperatorUtils {
});
if (!operator) {
- return (operator as IOperator) || null;
+ return null as any;
}
- let jobTypes: string[] = [];
- let reputationNetworks: string[] = [];
-
- if (typeof operator.jobTypes === 'string') {
- jobTypes = operator.jobTypes.split(',');
- } else if (Array.isArray(operator.jobTypes)) {
- jobTypes = operator.jobTypes;
- }
-
- if (
- operator.reputationNetworks &&
- Array.isArray(operator.reputationNetworks)
- ) {
- reputationNetworks = operator.reputationNetworks.map(
- (network) => network.address
- );
- }
-
- return {
- ...operator,
- jobTypes,
- reputationNetworks,
- chainId,
- };
+ return mapOperator(operator, chainId);
}
/**
@@ -109,8 +86,6 @@ export class OperatorUtils {
public static async getOperators(
filter: IOperatorsFilter
): Promise {
- let operators_data: IOperator[] = [];
-
const first =
filter.first !== undefined && filter.first > 0
? Math.min(filter.first, 1000)
@@ -119,6 +94,15 @@ export class OperatorUtils {
filter.skip !== undefined && filter.skip >= 0 ? filter.skip : 0;
const orderDirection = filter.orderDirection || OrderDirection.DESC;
+ let orderBy = filter.orderBy;
+ if (filter.orderBy === 'stakedAmount') orderBy = 'staker__stakedAmount';
+ else if (filter.orderBy === 'lockedAmount')
+ orderBy = 'staker__lockedAmount';
+ else if (filter.orderBy === 'withdrawnAmount')
+ orderBy = 'staker__withdrawnAmount';
+ else if (filter.orderBy === 'slashedAmount')
+ orderBy = 'staker__slashedAmount';
+
const networkData = NETWORKS[filter.chainId];
if (!networkData) {
@@ -128,9 +112,9 @@ export class OperatorUtils {
const { operators } = await gqlFetch<{
operators: IOperatorSubgraph[];
}>(getSubgraphUrl(networkData), GET_LEADERS_QUERY(filter), {
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
- orderBy: filter?.orderBy,
+ orderBy: orderBy,
orderDirection: orderDirection,
first: first,
skip: skip,
@@ -140,35 +124,7 @@ export class OperatorUtils {
return [];
}
- operators_data = operators_data.concat(
- operators.map((operator) => {
- let jobTypes: string[] = [];
- let reputationNetworks: string[] = [];
-
- if (typeof operator.jobTypes === 'string') {
- jobTypes = operator.jobTypes.split(',');
- } else if (Array.isArray(operator.jobTypes)) {
- jobTypes = operator.jobTypes;
- }
-
- if (
- operator.reputationNetworks &&
- Array.isArray(operator.reputationNetworks)
- ) {
- reputationNetworks = operator.reputationNetworks.map(
- (network) => network.address
- );
- }
-
- return {
- ...operator,
- jobTypes,
- reputationNetworks,
- chainId: filter.chainId,
- };
- })
- );
- return operators_data;
+ return operators.map((operator) => mapOperator(operator, filter.chainId));
}
/**
@@ -206,24 +162,9 @@ export class OperatorUtils {
if (!reputationNetwork) return [];
- return reputationNetwork.operators.map((operator) => {
- let jobTypes: string[] = [];
-
- if (typeof operator.jobTypes === 'string') {
- jobTypes = operator.jobTypes.split(',');
- } else if (Array.isArray(operator.jobTypes)) {
- jobTypes = operator.jobTypes;
- }
-
- return {
- chainId,
- ...operator,
- jobTypes,
- reputationNetworks: operator.reputationNetworks?.map(
- (network) => network.address
- ),
- };
- });
+ return reputationNetwork.operators.map((operator) =>
+ mapOperator(operator, chainId)
+ );
}
/**
@@ -270,3 +211,48 @@ export class OperatorUtils {
});
}
}
+
+function mapOperator(operator: IOperatorSubgraph, chainId: ChainId): IOperator {
+ const staker = operator?.staker;
+ let jobTypes: string[] = [];
+ let reputationNetworks: string[] = [];
+
+ if (typeof operator.jobTypes === 'string') {
+ jobTypes = operator.jobTypes.split(',');
+ } else if (Array.isArray(operator.jobTypes)) {
+ jobTypes = operator.jobTypes;
+ }
+
+ if (
+ operator.reputationNetworks &&
+ Array.isArray(operator.reputationNetworks)
+ ) {
+ reputationNetworks = operator.reputationNetworks.map(
+ (network) => network.address
+ );
+ }
+
+ return {
+ id: operator.id,
+ chainId,
+ address: operator.address,
+ stakedAmount: BigInt(staker?.stakedAmount || 0),
+ lockedAmount: BigInt(staker?.lockedAmount || 0),
+ lockedUntilTimestamp: BigInt(staker?.lockedUntilTimestamp || 0),
+ withdrawnAmount: BigInt(staker?.withdrawnAmount || 0),
+ slashedAmount: BigInt(staker?.slashedAmount || 0),
+ amountJobsProcessed: BigInt(operator.amountJobsProcessed || 0),
+ role: operator.role,
+ fee: operator.fee ? BigInt(operator.fee) : undefined,
+ publicKey: operator.publicKey,
+ webhookUrl: operator.webhookUrl,
+ website: operator.website,
+ url: operator.url,
+ jobTypes,
+ registrationNeeded: operator.registrationNeeded,
+ registrationInstructions: operator.registrationInstructions,
+ reputationNetworks,
+ name: operator.name,
+ category: operator.category,
+ };
+}
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/staking.ts b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts
index 215624c0e2..92cb4192d2 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/staking.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/staking.ts
@@ -7,10 +7,11 @@ import {
Staking__factory,
} from '@human-protocol/core/typechain-types';
import { ContractRunner, Overrides, ethers } from 'ethers';
+import gqlFetch from 'graphql-request';
import { BaseEthersClient } from './base';
import { NETWORKS } from './constants';
import { requiresSigner } from './decorators';
-import { ChainId } from './enums';
+import { ChainId, OrderDirection } from './enums';
import {
ErrorEscrowAddressIsNotProvidedByFactory,
ErrorInvalidEscrowAddressProvided,
@@ -19,11 +20,16 @@ import {
ErrorInvalidStakingValueSign,
ErrorInvalidStakingValueType,
ErrorProviderDoesNotExist,
+ ErrorStakerNotFound,
ErrorUnsupportedChainID,
} from './error';
+import { IStaker, IStakersFilter, StakerInfo } from './interfaces';
import { NetworkData } from './types';
-import { throwError } from './utils';
-import { StakerInfo } from './interfaces';
+import { getSubgraphUrl, throwError } from './utils';
+import {
+ GET_STAKER_BY_ADDRESS_QUERY,
+ GET_STAKERS_QUERY,
+} from './graphql/queries/staking';
/**
* ## Introduction
@@ -439,6 +445,7 @@ export class StakingClient extends BaseEthersClient {
try {
const stakerInfo = await this.stakingContract.stakes(stakerAddress);
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const currentBlock = await this.runner.provider!.getBlockNumber();
const tokensWithdrawable =
@@ -465,3 +472,99 @@ export class StakingClient extends BaseEthersClient {
}
}
}
+
+/**
+ * Utility class for Staking-related subgraph queries.
+ */
+export class StakingUtils {
+ /**
+ * Gets staking info for a staker from the subgraph.
+ *
+ * @param {ChainId} chainId Network in which the staking contract is deployed
+ * @param {string} stakerAddress Address of the staker
+ * @returns {Promise} Staker info from subgraph
+ */
+ public static async getStaker(
+ chainId: ChainId,
+ stakerAddress: string
+ ): Promise {
+ if (!ethers.isAddress(stakerAddress)) {
+ throw ErrorInvalidStakerAddressProvided;
+ }
+
+ const networkData: NetworkData | undefined = NETWORKS[chainId];
+ if (!networkData) {
+ throw ErrorUnsupportedChainID;
+ }
+
+ const { staker } = await gqlFetch<{ staker: IStaker }>(
+ getSubgraphUrl(networkData),
+ GET_STAKER_BY_ADDRESS_QUERY,
+ { id: stakerAddress.toLowerCase() }
+ );
+
+ if (!staker) {
+ throw ErrorStakerNotFound;
+ }
+
+ return staker;
+ }
+
+ /**
+ * Gets all stakers from the subgraph with filters, pagination and ordering.
+ *
+ * @returns {Promise} Array of stakers
+ */
+ public static async getStakers(filter: IStakersFilter): Promise {
+ const first =
+ filter.first !== undefined ? Math.min(filter.first, 1000) : 10;
+ const skip = filter.skip || 0;
+ const orderDirection = filter.orderDirection || OrderDirection.DESC;
+ const orderBy = filter.orderBy || 'lastDepositTimestamp';
+
+ const networkData = NETWORKS[filter.chainId];
+ if (!networkData) {
+ throw ErrorUnsupportedChainID;
+ }
+
+ const { stakers } = await gqlFetch<{ stakers: IStaker[] }>(
+ getSubgraphUrl(networkData),
+ GET_STAKERS_QUERY(filter),
+ {
+ minStakedAmount: filter.minStakedAmount
+ ? filter.minStakedAmount
+ : undefined,
+ maxStakedAmount: filter.maxStakedAmount
+ ? filter.maxStakedAmount
+ : undefined,
+ minLockedAmount: filter.minLockedAmount
+ ? filter.minLockedAmount
+ : undefined,
+ maxLockedAmount: filter.maxLockedAmount
+ ? filter.maxLockedAmount
+ : undefined,
+ minWithdrawnAmount: filter.minWithdrawnAmount
+ ? filter.minWithdrawnAmount
+ : undefined,
+ maxWithdrawnAmount: filter.maxWithdrawnAmount
+ ? filter.maxWithdrawnAmount
+ : undefined,
+ minSlashedAmount: filter.minSlashedAmount
+ ? filter.minSlashedAmount
+ : undefined,
+ maxSlashedAmount: filter.maxSlashedAmount
+ ? filter.maxSlashedAmount
+ : undefined,
+ orderBy: orderBy,
+ orderDirection: orderDirection,
+ first: first,
+ skip: skip,
+ }
+ );
+ if (!stakers) {
+ return [];
+ }
+
+ return stakers;
+ }
+}
diff --git a/packages/sdk/typescript/human-protocol-sdk/src/types.ts b/packages/sdk/typescript/human-protocol-sdk/src/types.ts
index d6c1ea6d7d..0b3b6f9811 100644
--- a/packages/sdk/typescript/human-protocol-sdk/src/types.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/src/types.ts
@@ -158,7 +158,7 @@ export type EscrowWithdraw = {
/**
* The amount withdrawn from the escrow.
*/
- amountWithdrawn: bigint;
+ withdrawnAmount: bigint;
};
/**
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 4d3b859cbb..78bd6bbfba 100644
--- a/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/test/escrow.test.ts
@@ -1880,12 +1880,12 @@ describe('EscrowClient', () => {
});
test('should successfully withdraw from escrow', async () => {
- const amountWithdrawn = 1n;
+ const withdrawnAmount = 1n;
const log = {
address: ethers.ZeroAddress,
name: 'Transfer',
- args: [ethers.ZeroAddress, ethers.ZeroAddress, amountWithdrawn],
+ args: [ethers.ZeroAddress, ethers.ZeroAddress, withdrawnAmount],
};
mockTx.wait.mockResolvedValueOnce({
hash: FAKE_HASH,
@@ -1908,7 +1908,7 @@ describe('EscrowClient', () => {
const result = await escrowClient.withdraw(escrowAddress, tokenAddress);
expect(result).toStrictEqual({
- amountWithdrawn,
+ withdrawnAmount,
tokenAddress,
txHash: FAKE_HASH,
});
@@ -1984,12 +1984,12 @@ describe('EscrowClient', () => {
test('should successfully withdraw from escrow with transaction options', async () => {
const escrowAddress = ethers.ZeroAddress;
- const amountWithdrawn = 1n;
+ const withdrawnAmount = 1n;
const log = {
address: ethers.ZeroAddress,
name: 'Transfer',
- args: [ethers.ZeroAddress, ethers.ZeroAddress, amountWithdrawn],
+ args: [ethers.ZeroAddress, ethers.ZeroAddress, withdrawnAmount],
};
mockTx.wait.mockResolvedValueOnce({
hash: FAKE_HASH,
@@ -2017,7 +2017,7 @@ describe('EscrowClient', () => {
);
expect(result).toStrictEqual({
- amountWithdrawn,
+ withdrawnAmount,
tokenAddress,
txHash: FAKE_HASH,
});
diff --git a/packages/sdk/typescript/human-protocol-sdk/test/operator.test.ts b/packages/sdk/typescript/human-protocol-sdk/test/operator.test.ts
index 95a9d21cb8..a4bdb9c5aa 100644
--- a/packages/sdk/typescript/human-protocol-sdk/test/operator.test.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/test/operator.test.ts
@@ -3,13 +3,14 @@ import { ethers } from 'ethers';
import * as gqlFetch from 'graphql-request';
import { describe, expect, test, vi } from 'vitest';
import { NETWORKS, Role } from '../src/constants';
+import { ChainId, OrderDirection } from '../src/enums';
import {
ErrorInvalidSlasherAddressProvided,
ErrorInvalidStakerAddressProvided,
} from '../src/error';
import {
- GET_LEADERS_QUERY,
GET_LEADER_QUERY,
+ GET_LEADERS_QUERY,
GET_REPUTATION_NETWORK_QUERY,
} from '../src/graphql/queries/operator';
import {
@@ -20,7 +21,6 @@ import {
IReward,
} from '../src/interfaces';
import { OperatorUtils } from '../src/operator';
-import { ChainId, OrderDirection } from '../src/enums';
vi.mock('graphql-request', () => {
return {
@@ -28,39 +28,50 @@ vi.mock('graphql-request', () => {
};
});
-describe('OperatorUtils', () => {
- describe('getOperator', () => {
- const stakerAddress = ethers.ZeroAddress;
- const invalidAddress = 'InvalidAddress';
+const stakerAddress = ethers.ZeroAddress;
+const invalidAddress = 'InvalidAddress';
- const mockOperatorSubgraph: IOperatorSubgraph = {
- id: stakerAddress,
- address: stakerAddress,
- amountStaked: ethers.parseEther('100'),
- amountLocked: ethers.parseEther('25'),
+describe('OperatorUtils', () => {
+ const mockOperatorSubgraph: IOperatorSubgraph = {
+ id: stakerAddress,
+ address: stakerAddress,
+ amountJobsProcessed: ethers.parseEther('25'),
+ jobTypes: ['type1', 'type2'],
+ registrationNeeded: true,
+ registrationInstructions: 'www.google.com',
+ website: 'www.google.com',
+ reputationNetworks: [
+ {
+ address: '0x01',
+ },
+ ],
+ staker: {
+ stakedAmount: ethers.parseEther('100'),
+ lockedAmount: ethers.parseEther('25'),
lockedUntilTimestamp: ethers.toBigInt(0),
- amountWithdrawn: ethers.parseEther('25'),
- amountSlashed: ethers.parseEther('25'),
- reward: ethers.parseEther('25'),
- amountJobsProcessed: ethers.parseEther('25'),
- jobTypes: 'type1,type2',
- registrationNeeded: true,
- registrationInstructions: 'www.google.com',
- website: 'www.google.com',
- reputationNetworks: [
- {
- address: '0x01',
- },
- ],
- };
-
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2'],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
+ withdrawnAmount: ethers.parseEther('25'),
+ slashedAmount: ethers.parseEther('25'),
+ lastDepositTimestamp: ethers.toBigInt(0),
+ },
+ };
+ const operator: IOperator = {
+ id: stakerAddress,
+ address: stakerAddress,
+ amountJobsProcessed: ethers.parseEther('25'),
+ registrationNeeded: true,
+ registrationInstructions: 'www.google.com',
+ website: 'www.google.com',
+ jobTypes: ['type1', 'type2'],
+ reputationNetworks: ['0x01'],
+ chainId: ChainId.LOCALHOST,
+ stakedAmount: ethers.parseEther('100'),
+ lockedAmount: ethers.parseEther('25'),
+ lockedUntilTimestamp: ethers.toBigInt(0),
+ withdrawnAmount: ethers.parseEther('25'),
+ slashedAmount: ethers.parseEther('25'),
+ };
+ describe('getOperator', () => {
test('should return staker information', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
operator: mockOperatorSubgraph,
@@ -78,20 +89,12 @@ describe('OperatorUtils', () => {
address: stakerAddress,
}
);
- expect(result).toEqual(mockOperator);
+ expect(result).toEqual(operator);
});
test('should return staker information when jobTypes is undefined', async () => {
- mockOperatorSubgraph.jobTypes = undefined;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: [],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
-
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- operator: mockOperatorSubgraph,
+ operator: { ...mockOperatorSubgraph, jobTypes: undefined },
});
const result = await OperatorUtils.getOperator(
@@ -106,20 +109,12 @@ describe('OperatorUtils', () => {
address: stakerAddress,
}
);
- expect(result).toEqual(mockOperator);
+ expect(result).toEqual({ ...operator, jobTypes: [] });
});
- test('should return staker information when jobTypes is array', async () => {
- mockOperatorSubgraph.jobTypes = ['type1', 'type2', 'type3'] as any;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2', 'type3'],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
-
+ test('should return staker information when jobTypes is a string', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- operator: mockOperatorSubgraph,
+ operator: { ...mockOperatorSubgraph, jobTypes: 'type1,type2,type3' },
});
const result = await OperatorUtils.getOperator(
@@ -134,7 +129,10 @@ describe('OperatorUtils', () => {
address: stakerAddress,
}
);
- expect(result).toEqual(mockOperator);
+ expect(result).toEqual({
+ ...operator,
+ jobTypes: ['type1', 'type2', 'type3'],
+ });
});
test('should throw an error for an invalid staker address', async () => {
@@ -176,38 +174,6 @@ describe('OperatorUtils', () => {
});
describe('getOperators', () => {
- const stakerAddress = ethers.ZeroAddress;
-
- const mockOperatorSubgraph: IOperatorSubgraph = {
- id: stakerAddress,
- address: stakerAddress,
- amountStaked: ethers.parseEther('100'),
- amountLocked: ethers.parseEther('25'),
- lockedUntilTimestamp: ethers.toBigInt(0),
- amountWithdrawn: ethers.parseEther('25'),
- amountSlashed: ethers.parseEther('25'),
- reward: ethers.parseEther('25'),
- amountJobsProcessed: ethers.parseEther('25'),
- jobTypes: 'type1,type2',
- registrationNeeded: true,
- registrationInstructions: 'www.google.com',
- website: 'www.google.com',
- reputationNetworks: [
- {
- address: '0x01',
- },
- ],
- name: 'Alice',
- category: 'machine_learning',
- };
-
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2'],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
-
test('should return an array of stakers', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
operators: [mockOperatorSubgraph, mockOperatorSubgraph],
@@ -222,7 +188,7 @@ describe('OperatorUtils', () => {
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -230,7 +196,7 @@ describe('OperatorUtils', () => {
skip: 0,
}
);
- expect(result).toEqual([mockOperator, mockOperator]);
+ expect(result).toEqual([operator, operator]);
});
test('should apply default values when first is negative', async () => {
@@ -250,7 +216,7 @@ describe('OperatorUtils', () => {
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -258,7 +224,7 @@ describe('OperatorUtils', () => {
skip: 0,
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([operator]);
});
test('should apply default values when skip is negative', async () => {
@@ -278,7 +244,7 @@ describe('OperatorUtils', () => {
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -286,7 +252,7 @@ describe('OperatorUtils', () => {
skip: 0, // Default value
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([operator]);
});
test('should apply default values when first and skip are undefined', async () => {
@@ -304,7 +270,7 @@ describe('OperatorUtils', () => {
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -312,32 +278,29 @@ describe('OperatorUtils', () => {
skip: 0, // Default value
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([operator]);
});
- test('should return an array of stakers when jobTypes is undefined', async () => {
- mockOperatorSubgraph.jobTypes = undefined;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: [],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
-
+ test('should return an array of stakers when jobTypes is a string', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- operators: [mockOperatorSubgraph, mockOperatorSubgraph],
+ operators: [
+ { ...mockOperatorSubgraph, jobTypes: 'type1,type2,type3' },
+ { ...mockOperatorSubgraph, jobTypes: 'type1,type2,type3' },
+ ],
});
+
const filter: IOperatorsFilter = {
chainId: ChainId.LOCALHOST,
roles: [Role.ExchangeOracle],
};
+
const result = await OperatorUtils.getOperators(filter);
expect(gqlFetchSpy).toHaveBeenCalledWith(
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -345,35 +308,30 @@ describe('OperatorUtils', () => {
skip: 0,
}
);
-
- expect(result).toEqual([mockOperator, mockOperator]);
+ expect(result).toEqual([
+ { ...operator, jobTypes: ['type1', 'type2', 'type3'] },
+ { ...operator, jobTypes: ['type1', 'type2', 'type3'] },
+ ]);
});
- test('should return an array of stakers when jobTypes is array', async () => {
- mockOperatorSubgraph.jobTypes = ['type1', 'type2', 'type3'] as any;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2', 'type3'],
- reputationNetworks: ['0x01'],
- chainId: ChainId.LOCALHOST,
- };
-
+ test('should return an array of stakers when jobTypes is undefined', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- operators: [mockOperatorSubgraph, mockOperatorSubgraph],
+ operators: [
+ { ...mockOperatorSubgraph, jobTypes: undefined },
+ { ...mockOperatorSubgraph, jobTypes: undefined },
+ ],
});
-
const filter: IOperatorsFilter = {
chainId: ChainId.LOCALHOST,
roles: [Role.ExchangeOracle],
};
-
const result = await OperatorUtils.getOperators(filter);
expect(gqlFetchSpy).toHaveBeenCalledWith(
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_LEADERS_QUERY(filter),
{
- minAmountStaked: filter?.minAmountStaked,
+ minStakedAmount: filter?.minStakedAmount,
roles: filter?.roles,
orderBy: filter?.orderBy,
orderDirection: OrderDirection.DESC,
@@ -381,7 +339,11 @@ describe('OperatorUtils', () => {
skip: 0,
}
);
- expect(result).toEqual([mockOperator, mockOperator]);
+
+ expect(result).toEqual([
+ { ...operator, jobTypes: [] },
+ { ...operator, jobTypes: [] },
+ ]);
});
test('should throw an error if gql fetch fails', async () => {
@@ -414,30 +376,6 @@ describe('OperatorUtils', () => {
});
describe('getReputationNetworkOperators', () => {
- const stakerAddress = ethers.ZeroAddress;
- const mockOperatorSubgraph: IOperatorSubgraph = {
- address: '0x0000000000000000000000000000000000000001',
- role: Role.JobLauncher,
- url: 'www.google.com',
- jobTypes: 'type1,type2',
- registrationNeeded: true,
- registrationInstructions: 'www.google.com',
- reputationNetworks: [{ address: stakerAddress }],
- id: '',
- amountStaked: 0n,
- amountLocked: 0n,
- lockedUntilTimestamp: 0n,
- amountWithdrawn: 0n,
- amountSlashed: 0n,
- reward: 0n,
- amountJobsProcessed: 0n,
- };
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2'],
- chainId: ChainId.LOCALHOST,
- reputationNetworks: [stakerAddress],
- };
const mockReputationNetwork: IReputationNetworkSubgraph = {
id: stakerAddress,
address: stakerAddress,
@@ -462,7 +400,7 @@ describe('OperatorUtils', () => {
role: undefined,
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([operator]);
});
test('should return empty data ', async () => {
@@ -487,16 +425,11 @@ describe('OperatorUtils', () => {
});
test('should return reputation network operators when jobTypes is undefined', async () => {
- mockOperatorSubgraph.jobTypes = undefined;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: [],
- chainId: ChainId.LOCALHOST,
- reputationNetworks: [stakerAddress],
- };
-
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- reputationNetwork: mockReputationNetwork,
+ reputationNetwork: {
+ ...mockReputationNetwork,
+ operators: [{ ...mockOperatorSubgraph, jobTypes: undefined }],
+ },
});
const result = await OperatorUtils.getReputationNetworkOperators(
@@ -512,27 +445,23 @@ describe('OperatorUtils', () => {
role: undefined,
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([{ ...operator, jobTypes: [] }]);
});
- test('should return reputation network operators when jobTypes is array', async () => {
- mockOperatorSubgraph.jobTypes = ['type1', 'type2', 'type3'] as any;
- const mockOperator: IOperator = {
- ...mockOperatorSubgraph,
- jobTypes: ['type1', 'type2', 'type3'],
- chainId: ChainId.LOCALHOST,
- reputationNetworks: [stakerAddress],
- };
-
+ test('should return reputation network operators when jobTypes is a string', async () => {
const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
- reputationNetwork: mockReputationNetwork,
+ reputationNetwork: {
+ ...mockReputationNetwork,
+ operators: [
+ { ...mockOperatorSubgraph, jobTypes: 'type1,type2,type3' },
+ ],
+ },
});
const result = await OperatorUtils.getReputationNetworkOperators(
ChainId.LOCALHOST,
stakerAddress
);
-
expect(gqlFetchSpy).toHaveBeenCalledWith(
NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
GET_REPUTATION_NETWORK_QUERY(),
@@ -541,7 +470,9 @@ describe('OperatorUtils', () => {
role: undefined,
}
);
- expect(result).toEqual([mockOperator]);
+ expect(result).toEqual([
+ { ...operator, jobTypes: ['type1', 'type2', 'type3'] },
+ ]);
});
test('should throw an error if gql fetch fails', async () => {
diff --git a/packages/sdk/typescript/human-protocol-sdk/test/staking.test.ts b/packages/sdk/typescript/human-protocol-sdk/test/staking.test.ts
index 33f346aa83..3c4ddda5ca 100644
--- a/packages/sdk/typescript/human-protocol-sdk/test/staking.test.ts
+++ b/packages/sdk/typescript/human-protocol-sdk/test/staking.test.ts
@@ -1,7 +1,8 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
+import * as gqlFetch from 'graphql-request';
import { Overrides, Signer, ethers } from 'ethers';
import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest';
-import { ChainId } from '../src/enums';
+import { ChainId, OrderDirection } from '../src/enums';
import {
ErrorInvalidEscrowAddressProvided,
ErrorInvalidSlasherAddressProvided,
@@ -9,14 +10,24 @@ import {
ErrorInvalidStakingValueSign,
ErrorInvalidStakingValueType,
ErrorProviderDoesNotExist,
+ ErrorStakerNotFound,
ErrorUnsupportedChainID,
} from '../src/error';
+import { NETWORKS } from '../src/constants';
import { StakingClient } from '../src/staking';
import {
DEFAULT_GAS_PAYER_PRIVKEY,
FAKE_AMOUNT,
FAKE_NEGATIVE_AMOUNT,
} from './utils/constants';
+import { IStaker, IStakersFilter } from '../src/interfaces';
+import { StakingUtils } from '../src/staking';
+
+vi.mock('graphql-request', () => {
+ return {
+ default: vi.fn(),
+ };
+});
describe('StakingClient', () => {
let stakingClient: any,
@@ -281,7 +292,6 @@ describe('StakingClient', () => {
describe('withdraw', () => {
test('should call the withdraw method with the correct parameters', async () => {
- mockStakingContract.withdraw.mockResolvedValueOnce();
const withdrawSpy = vi
.spyOn(mockStakingContract, 'withdraw')
.mockImplementation(() => ({
@@ -296,7 +306,6 @@ describe('StakingClient', () => {
expect(withdrawSpy).toHaveBeenCalledTimes(1);
});
test('should call the withdraw method with transaction options', async () => {
- mockStakingContract.withdraw.mockResolvedValueOnce();
const withdrawSpy = vi
.spyOn(mockStakingContract, 'withdraw')
.mockImplementation(() => ({
@@ -549,3 +558,159 @@ describe('StakingClient', () => {
});
});
});
+
+describe('StakingUtils', () => {
+ const stakerAddress = '0x1234567890123456789012345678901234567890';
+ const invalidAddress = 'InvalidAddress';
+
+ describe('getStaker', () => {
+ const mockStaker: IStaker = {
+ address: stakerAddress,
+ stakedAmount: 1000n,
+ lockedAmount: 100n,
+ lockedUntil: 1234567890n,
+ withdrawableAmount: 900n,
+ slashedAmount: 0n,
+ };
+
+ test('should return staker information', async () => {
+ const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
+ staker: mockStaker,
+ });
+
+ const result = await StakingUtils.getStaker(
+ ChainId.LOCALHOST,
+ stakerAddress
+ );
+
+ expect(gqlFetchSpy).toHaveBeenCalledWith(
+ NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
+ expect.anything(),
+ { id: stakerAddress.toLowerCase() }
+ );
+ expect(result).toEqual(mockStaker);
+ });
+
+ test('should throw an error for an invalid staker address', async () => {
+ await expect(
+ StakingUtils.getStaker(ChainId.LOCALHOST, invalidAddress)
+ ).rejects.toThrow(ErrorInvalidStakerAddressProvided);
+ });
+
+ test('should throw an error if the gql fetch fails', async () => {
+ const gqlFetchSpy = vi
+ .spyOn(gqlFetch, 'default')
+ .mockRejectedValueOnce(new Error('Error'));
+
+ await expect(
+ StakingUtils.getStaker(ChainId.LOCALHOST, stakerAddress)
+ ).rejects.toThrow();
+ expect(gqlFetchSpy).toHaveBeenCalledTimes(1);
+ });
+
+ test('should throw an error if staker is not found', async () => {
+ vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
+ staker: undefined,
+ });
+
+ await expect(
+ StakingUtils.getStaker(ChainId.LOCALHOST, stakerAddress)
+ ).rejects.toThrow(ErrorStakerNotFound);
+ });
+ });
+
+ describe('getStakers', () => {
+ const mockStakers: IStaker[] = [
+ {
+ address: stakerAddress,
+ stakedAmount: 1000n,
+ lockedAmount: 100n,
+ lockedUntil: 1234567890n,
+ withdrawableAmount: 900n,
+ slashedAmount: 0n,
+ },
+ {
+ address: '0x0987654321098765432109876543210987654321',
+ stakedAmount: 2000n,
+ lockedAmount: 200n,
+ lockedUntil: 1234567891n,
+ withdrawableAmount: 1800n,
+ slashedAmount: 0n,
+ },
+ ];
+
+ test('should return an array of stakers', async () => {
+ const gqlFetchSpy = vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
+ stakers: mockStakers,
+ });
+ const filter: IStakersFilter = {
+ chainId: ChainId.LOCALHOST,
+ first: 10,
+ skip: 0,
+ };
+
+ const result = await StakingUtils.getStakers(filter);
+
+ expect(gqlFetchSpy).toHaveBeenCalledWith(
+ NETWORKS[ChainId.LOCALHOST]?.subgraphUrl,
+ expect.anything(),
+ expect.objectContaining({
+ minStakedAmount: undefined,
+ maxStakedAmount: undefined,
+ minLockedAmount: undefined,
+ maxLockedAmount: undefined,
+ minWithdrawnAmount: undefined,
+ maxWithdrawnAmount: undefined,
+ minSlashedAmount: undefined,
+ maxSlashedAmount: undefined,
+ orderBy: 'lastDepositTimestamp',
+ orderDirection: OrderDirection.DESC,
+ first: 10,
+ skip: 0,
+ })
+ );
+ expect(result).toEqual(mockStakers);
+ });
+
+ test('should return an empty array if no stakers found', async () => {
+ vi.spyOn(gqlFetch, 'default').mockResolvedValueOnce({
+ stakers: undefined,
+ });
+ const filter: IStakersFilter = {
+ chainId: ChainId.LOCALHOST,
+ first: 10,
+ skip: 0,
+ };
+
+ const result = await StakingUtils.getStakers(filter);
+ expect(result).toEqual([]);
+ });
+
+ test('should throw an error if the gql fetch fails', async () => {
+ const filter: IStakersFilter = {
+ chainId: ChainId.LOCALHOST,
+ first: 10,
+ skip: 0,
+ };
+
+ const gqlFetchSpy = vi
+ .spyOn(gqlFetch, 'default')
+ .mockRejectedValueOnce(new Error('Error'));
+
+ await expect(StakingUtils.getStakers(filter)).rejects.toThrow();
+ expect(gqlFetchSpy).toHaveBeenCalledTimes(1);
+ });
+
+ test('should throw an error if the chain ID is unsupported', async () => {
+ const filter: IStakersFilter = {
+ chainId: 999999 as ChainId,
+ first: 10,
+ skip: 0,
+ };
+
+ await expect(StakingUtils.getStakers(filter)).rejects.toThrow(
+ ErrorUnsupportedChainID
+ );
+ });
+ });
+});
diff --git a/packages/sdk/typescript/subgraph/schema.graphql b/packages/sdk/typescript/subgraph/schema.graphql
index 7abb54ed19..40da8bdaa7 100644
--- a/packages/sdk/typescript/subgraph/schema.graphql
+++ b/packages/sdk/typescript/subgraph/schema.graphql
@@ -32,14 +32,7 @@ type UniqueReceiver @entity(immutable: false) {
type Operator @entity(immutable: false) {
id: Bytes!
address: Bytes!
- amountStaked: BigInt!
- amountLocked: BigInt!
- lockedUntilTimestamp: BigInt!
- amountWithdrawn: BigInt!
- amountSlashed: BigInt!
- reward: BigInt!
amountJobsProcessed: BigInt!
-
role: String
fee: BigInt
publicKey: String
@@ -54,6 +47,8 @@ type Operator @entity(immutable: false) {
name: String
category: String
+
+ staker: Staker @derivedFrom(field: "operator")
}
type OperatorURL @entity(immutable: false) {
@@ -255,6 +250,19 @@ type KVStore @entity(immutable: false) {
}
# Staking
+type Staker @entity(immutable: false) {
+ id: Bytes!
+ address: Bytes! # address
+ stakedAmount: BigInt!
+ lockedAmount: BigInt!
+ withdrawnAmount: BigInt!
+ slashedAmount: BigInt!
+ lockedUntilTimestamp: BigInt!
+ lastDepositTimestamp: BigInt!
+
+ operator: Operator
+}
+
type StakeDepositedEvent @entity(immutable: true) {
id: Bytes!
block: BigInt!
@@ -350,11 +358,6 @@ type EventDayData @entity(immutable: false) {
dailyUniqueReceivers: BigInt!
}
-type OperatorStatistics @entity(immutable: false) {
- id: Bytes!
- operators: BigInt!
-}
-
type Transaction @entity(immutable: false) {
id: Bytes!
block: BigInt!
diff --git a/packages/sdk/typescript/subgraph/src/mapping/EscrowFactory.ts b/packages/sdk/typescript/subgraph/src/mapping/EscrowFactory.ts
index 5a27cf805f..20014574b0 100644
--- a/packages/sdk/typescript/subgraph/src/mapping/EscrowFactory.ts
+++ b/packages/sdk/typescript/subgraph/src/mapping/EscrowFactory.ts
@@ -5,7 +5,7 @@ import {
import { Escrow, EscrowStatusEvent } from '../../generated/schema';
import { Escrow as EscrowTemplate } from '../../generated/templates';
import { createOrLoadEscrowStatistics } from './Escrow';
-import { createOrLoadOperator } from './Staking';
+import { createOrLoadOperator } from './KVStore';
import { createTransaction } from './utils/transaction';
import { getEventDayData } from './utils/dayUpdates';
import { toEventId } from './utils/event';
diff --git a/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts b/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts
index 9008993c08..ecec501358 100644
--- a/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts
+++ b/packages/sdk/typescript/subgraph/src/mapping/EscrowTemplate.ts
@@ -40,7 +40,7 @@ import { toEventDayId, toEventId } from './utils/event';
import { getEventDayData } from './utils/dayUpdates';
import { createTransaction } from './utils/transaction';
import { toBytes } from './utils/string';
-import { createOrLoadOperator } from './Staking';
+import { createOrLoadOperator } from './KVStore';
// eslint-disable-next-line prettier/prettier
export const HMT_ADDRESS = Address.fromString('{{ HMToken.address }}');
diff --git a/packages/sdk/typescript/subgraph/src/mapping/KVStore.ts b/packages/sdk/typescript/subgraph/src/mapping/KVStore.ts
index 77e742dfcd..7cf03a445d 100644
--- a/packages/sdk/typescript/subgraph/src/mapping/KVStore.ts
+++ b/packages/sdk/typescript/subgraph/src/mapping/KVStore.ts
@@ -12,13 +12,32 @@ import {
Operator,
OperatorURL,
ReputationNetwork,
+ Staker,
} from '../../generated/schema';
-import { createOrLoadOperator } from './Staking';
import { isValidEthAddress } from './utils/ethAdrress';
import { toEventId } from './utils/event';
import { toBytes } from './utils/string';
import { createTransaction } from './utils/transaction';
import { store } from '@graphprotocol/graph-ts';
+import { ZERO_BI } from './utils/number';
+
+export function createOrLoadOperator(address: Address): Operator {
+ let operator = Operator.load(address);
+ if (!operator) {
+ operator = new Operator(address);
+ operator.address = address;
+ operator.amountJobsProcessed = ZERO_BI;
+
+ const staker = Staker.load(address);
+ if (staker) {
+ staker.operator = operator.id;
+ staker.save();
+ }
+ operator.save();
+ }
+
+ return operator;
+}
export function createOrLoadOperatorURL(
operator: Operator,
@@ -120,9 +139,9 @@ export function handleDataSaved(event: DataSaved): void {
event.params.sender
);
- const operator = createOrLoadOperator(ethAddress);
+ const targetOperator = createOrLoadOperator(ethAddress);
- let reputationNetworks = operator.reputationNetworks;
+ let reputationNetworks = targetOperator.reputationNetworks;
if (reputationNetworks === null) {
reputationNetworks = [];
}
@@ -139,9 +158,8 @@ export function handleDataSaved(event: DataSaved): void {
reputationNetworks = filteredNetworks;
}
- operator.reputationNetworks = reputationNetworks;
-
- operator.save();
+ targetOperator.reputationNetworks = reputationNetworks;
+ targetOperator.save();
} else if (key == 'registration_needed') {
operator.registrationNeeded = event.params.value.toLowerCase() == 'true';
} else if (key == 'registration_instructions') {
diff --git a/packages/sdk/typescript/subgraph/src/mapping/StakingTemplate.ts b/packages/sdk/typescript/subgraph/src/mapping/StakingTemplate.ts
index 20dee90d7d..6cd2e82dc7 100644
--- a/packages/sdk/typescript/subgraph/src/mapping/StakingTemplate.ts
+++ b/packages/sdk/typescript/subgraph/src/mapping/StakingTemplate.ts
@@ -7,57 +7,42 @@ import {
} from '../../generated/Staking/Staking';
import {
Operator,
- OperatorStatistics,
StakeDepositedEvent,
StakeLockedEvent,
+ Staker,
StakeSlashedEvent,
StakeWithdrawnEvent,
} from '../../generated/schema';
import { Address, dataSource } from '@graphprotocol/graph-ts';
-import { ONE_BI, ZERO_BI } from './utils/number';
+import { ZERO_BI } from './utils/number';
import { toEventId } from './utils/event';
import { createTransaction } from './utils/transaction';
-import { toBytes } from './utils/string';
// eslint-disable-next-line prettier/prettier
export const TOKEN_ADDRESS = Address.fromString('{{ HMToken.address }}');
-export const STATISTICS_ENTITY_ID = toBytes('operator-statistics-id');
-function constructStatsEntity(): OperatorStatistics {
- const entity = new OperatorStatistics(STATISTICS_ENTITY_ID);
-
- entity.operators = ZERO_BI;
-
- return entity;
-}
-
-export function createOrLoadOperatorStatistics(): OperatorStatistics {
- let statsEntity = OperatorStatistics.load(STATISTICS_ENTITY_ID);
-
- if (!statsEntity) {
- statsEntity = constructStatsEntity();
+export function createOrLoadStaker(address: Address): Staker {
+ let staker = Staker.load(address);
+
+ if (!staker) {
+ staker = new Staker(address);
+
+ staker.address = address;
+ staker.stakedAmount = ZERO_BI;
+ staker.lockedAmount = ZERO_BI;
+ staker.withdrawnAmount = ZERO_BI;
+ staker.slashedAmount = ZERO_BI;
+ staker.lockedUntilTimestamp = ZERO_BI;
+ staker.lastDepositTimestamp = ZERO_BI;
+
+ const operator = Operator.load(address);
+ if (operator) {
+ staker.operator = operator.id;
+ }
+ staker.save();
}
- return statsEntity;
-}
-
-export function createOrLoadOperator(address: Address): Operator {
- let operator = Operator.load(address);
-
- if (!operator) {
- operator = new Operator(address);
-
- operator.address = address;
- operator.amountStaked = ZERO_BI;
- operator.amountLocked = ZERO_BI;
- operator.lockedUntilTimestamp = ZERO_BI;
- operator.amountSlashed = ZERO_BI;
- operator.amountWithdrawn = ZERO_BI;
- operator.reward = ZERO_BI;
- operator.amountJobsProcessed = ZERO_BI;
- }
-
- return operator;
+ return staker;
}
export function handleStakeDeposited(event: StakeDeposited): void {
@@ -80,23 +65,13 @@ export function handleStakeDeposited(event: StakeDeposited): void {
eventEntity.amount = event.params.tokens;
eventEntity.save();
- // Update operator
- const operator = createOrLoadOperator(event.params.staker);
-
- // Increase operator count for new operator
- if (
- operator.amountStaked.equals(ZERO_BI) &&
- operator.amountLocked.equals(ZERO_BI) &&
- operator.amountWithdrawn.equals(ZERO_BI)
- ) {
- // Update Operator Statistics
- const statsEntity = createOrLoadOperatorStatistics();
- statsEntity.operators = statsEntity.operators.plus(ONE_BI);
- statsEntity.save();
- }
+ // Update staker
+ const staker = createOrLoadStaker(event.params.staker);
+
+ staker.stakedAmount = staker.stakedAmount.plus(eventEntity.amount);
+ staker.lastDepositTimestamp = event.block.timestamp;
- operator.amountStaked = operator.amountStaked.plus(eventEntity.amount);
- operator.save();
+ staker.save();
}
export function handleStakeLocked(event: StakeLocked): void {
@@ -120,11 +95,11 @@ export function handleStakeLocked(event: StakeLocked): void {
eventEntity.lockedUntilTimestamp = event.params.until;
eventEntity.save();
- // Update operator
- const operator = createOrLoadOperator(event.params.staker);
- operator.amountLocked = eventEntity.amount;
- operator.lockedUntilTimestamp = eventEntity.lockedUntilTimestamp;
- operator.save();
+ // Update staker
+ const staker = createOrLoadStaker(event.params.staker);
+ staker.lockedAmount = eventEntity.amount;
+ staker.lockedUntilTimestamp = eventEntity.lockedUntilTimestamp;
+ staker.save();
}
export function handleStakeWithdrawn(event: StakeWithdrawn): void {
@@ -147,15 +122,15 @@ export function handleStakeWithdrawn(event: StakeWithdrawn): void {
eventEntity.amount = event.params.tokens;
eventEntity.save();
- // Update operator
- const operator = createOrLoadOperator(event.params.staker);
- operator.amountLocked = operator.amountLocked.minus(eventEntity.amount);
- if (operator.amountLocked.equals(ZERO_BI)) {
- operator.lockedUntilTimestamp = ZERO_BI;
+ // Update staker
+ const staker = createOrLoadStaker(event.params.staker);
+ staker.lockedAmount = staker.lockedAmount.minus(eventEntity.amount);
+ if (staker.lockedAmount.equals(ZERO_BI)) {
+ staker.lockedUntilTimestamp = ZERO_BI;
}
- operator.amountStaked = operator.amountStaked.minus(eventEntity.amount);
- operator.amountWithdrawn = operator.amountWithdrawn.plus(eventEntity.amount);
- operator.save();
+ staker.stakedAmount = staker.stakedAmount.minus(eventEntity.amount);
+ staker.withdrawnAmount = staker.withdrawnAmount.plus(eventEntity.amount);
+ staker.save();
}
export function handleStakeSlashed(event: StakeSlashed): void {
@@ -180,11 +155,11 @@ export function handleStakeSlashed(event: StakeSlashed): void {
eventEntity.slashRequester = event.params.slashRequester;
eventEntity.save();
- // Update operator
- const operator = createOrLoadOperator(event.params.staker);
- operator.amountSlashed = operator.amountSlashed.plus(eventEntity.amount);
- operator.amountStaked = operator.amountStaked.minus(eventEntity.amount);
- operator.save();
+ // Update staker
+ const staker = createOrLoadStaker(event.params.staker);
+ staker.slashedAmount = staker.slashedAmount.plus(eventEntity.amount);
+ staker.stakedAmount = staker.stakedAmount.minus(eventEntity.amount);
+ staker.save();
}
export function handleFeeWithdrawn(event: FeeWithdrawn): void {
diff --git a/packages/sdk/typescript/subgraph/src/mapping/legacy/EscrowFactory.ts b/packages/sdk/typescript/subgraph/src/mapping/legacy/EscrowFactory.ts
index 97c653158d..b5442fbd16 100644
--- a/packages/sdk/typescript/subgraph/src/mapping/legacy/EscrowFactory.ts
+++ b/packages/sdk/typescript/subgraph/src/mapping/legacy/EscrowFactory.ts
@@ -4,7 +4,7 @@ import { LegacyEscrow as EscrowTemplate } from '../../../generated/templates';
import { ONE_BI, ZERO_BI } from '../utils/number';
import { getEventDayData } from '../utils/dayUpdates';
import { createOrLoadEscrowStatistics } from '../Escrow';
-import { createOrLoadOperator } from '../Staking';
+import { createOrLoadOperator } from '../KVStore';
import { createTransaction } from '../utils/transaction';
import { dataSource } from '@graphprotocol/graph-ts';
diff --git a/packages/sdk/typescript/subgraph/tests/kvstore/kvstore.test.ts b/packages/sdk/typescript/subgraph/tests/kvstore/kvstore.test.ts
index 6ea5886744..5a2df8a98d 100644
--- a/packages/sdk/typescript/subgraph/tests/kvstore/kvstore.test.ts
+++ b/packages/sdk/typescript/subgraph/tests/kvstore/kvstore.test.ts
@@ -1,4 +1,4 @@
-import { BigInt, DataSourceContext } from '@graphprotocol/graph-ts';
+import { Address, BigInt, DataSourceContext } from '@graphprotocol/graph-ts';
import {
afterEach,
assert,
@@ -11,6 +11,7 @@ import {
import { Operator } from '../../generated/schema';
import { handleDataSaved } from '../../src/mapping/KVStore';
+import { createOrLoadStaker } from '../../src/mapping/Staking';
import { toEventId } from '../../src/mapping/utils/event';
import { toBytes } from '../../src/mapping/utils/string';
import { createDataSavedEvent } from './fixtures';
@@ -793,4 +794,25 @@ describe('KVStore', () => {
'market_making'
);
});
+
+ test('Should assign operator to Staker if Staker exists before Operator (KVStore)', () => {
+ const stakerAddress = '0xD979105297fB0eee83F7433fC09279cb5B94fFC7';
+
+ const staker = createOrLoadStaker(Address.fromString(stakerAddress));
+
+ const operatorEvent = createDataSavedEvent(
+ stakerAddress,
+ 'role',
+ 'Operator',
+ BigInt.fromI32(11)
+ );
+ handleDataSaved(operatorEvent);
+
+ assert.fieldEquals(
+ 'Staker',
+ staker.address.toHex(),
+ 'operator',
+ staker.address.toHex()
+ );
+ });
});
diff --git a/packages/sdk/typescript/subgraph/tests/staking/staking.test.ts b/packages/sdk/typescript/subgraph/tests/staking/staking.test.ts
index f01f645978..a935e329b6 100644
--- a/packages/sdk/typescript/subgraph/tests/staking/staking.test.ts
+++ b/packages/sdk/typescript/subgraph/tests/staking/staking.test.ts
@@ -16,7 +16,6 @@ import {
handleStakeSlashed,
handleStakeWithdrawn,
handleFeeWithdrawn,
- STATISTICS_ENTITY_ID,
TOKEN_ADDRESS,
} from '../../src/mapping/Staking';
import { toEventId } from '../../src/mapping/utils/event';
@@ -28,6 +27,7 @@ import {
createStakeSlashedEvent,
createStakeWithdrawnEvent,
} from './fixtures';
+import { createOrLoadOperator } from '../../src/mapping/KVStore';
const stakingAddressString = '0xa16081f360e3847006db660bae1c6d1b2e17ffaa';
const escrow1AddressString = '0xD979105297fB0eee83F7433fC09279cb5B94fFC7';
@@ -147,25 +147,17 @@ describe('Staking', () => {
);
assert.fieldEquals('StakeDepositedEvent', id2, 'amount', '200');
- // Operator statistics
- assert.fieldEquals(
- 'OperatorStatistics',
- STATISTICS_ENTITY_ID.toHex(),
- 'operators',
- '2'
- );
-
// Operator
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'100'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'200'
);
@@ -206,6 +198,14 @@ describe('Staking', () => {
'token',
TOKEN_ADDRESS.toHexString()
);
+
+ assert.fieldEquals(
+ 'Staker',
+ data1.params.staker.toHex(),
+ 'address',
+ data1.params.staker.toHex()
+ );
+ assert.notInStore('Operator', data1.params.staker.toHex());
});
test('Should properly index StakeLocked events', () => {
@@ -284,48 +284,40 @@ describe('Staking', () => {
assert.fieldEquals('StakeLockedEvent', id2, 'amount', '100');
assert.fieldEquals('StakeLockedEvent', id2, 'lockedUntilTimestamp', '31');
- // Operator statistics
- assert.fieldEquals(
- 'OperatorStatistics',
- STATISTICS_ENTITY_ID.toHex(),
- 'operators',
- '2'
- );
-
// Operator
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'100'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'50'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
'lockedUntilTimestamp',
'30'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'200'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'100'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
'lockedUntilTimestamp',
'31'
@@ -442,62 +434,54 @@ describe('Staking', () => {
);
assert.fieldEquals('StakeWithdrawnEvent', id2, 'amount', '100');
- // Operator statistics
- assert.fieldEquals(
- 'OperatorStatistics',
- STATISTICS_ENTITY_ID.toHex(),
- 'operators',
- '2'
- );
-
// Operator
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'70'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'20'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
'lockedUntilTimestamp',
'30'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountWithdrawn',
+ 'withdrawnAmount',
'30'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'100'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'0'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
'lockedUntilTimestamp',
'0'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountWithdrawn',
+ 'withdrawnAmount',
'100'
);
@@ -640,74 +624,66 @@ describe('Staking', () => {
data2.params.slashRequester.toHex()
);
- // Operator statistics
- assert.fieldEquals(
- 'OperatorStatistics',
- STATISTICS_ENTITY_ID.toHex(),
- 'operators',
- '2'
- );
-
// Operator
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'60'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'20'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
'lockedUntilTimestamp',
'30'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountWithdrawn',
+ 'withdrawnAmount',
'30'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data1.params.staker.toHex(),
- 'amountSlashed',
+ 'slashedAmount',
'10'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountStaked',
+ 'stakedAmount',
'90'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountLocked',
+ 'lockedAmount',
'0'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
'lockedUntilTimestamp',
'0'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountWithdrawn',
+ 'withdrawnAmount',
'100'
);
assert.fieldEquals(
- 'Operator',
+ 'Staker',
data2.params.staker.toHex(),
- 'amountSlashed',
+ 'slashedAmount',
'10'
);
@@ -799,4 +775,23 @@ describe('Staking', () => {
TOKEN_ADDRESS.toHexString()
);
});
+
+ test('Should associate Staker with Operator if Operator exists before staking', () => {
+ const stakerAddress = '0xD979105297fB0eee83F7433fC09279cb5B94fFC8';
+ const data = createStakeDepositedEvent(
+ stakerAddress,
+ 100,
+ BigInt.fromI32(12)
+ );
+ createOrLoadOperator(Address.fromString(stakerAddress));
+
+ handleStakeDeposited(data);
+
+ assert.fieldEquals(
+ 'Staker',
+ data.params.staker.toHex(),
+ 'operator',
+ data.params.staker.toHex()
+ );
+ });
});
diff --git a/yarn.lock b/yarn.lock
index c5564bace8..beb5a6fc2d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -48,9 +48,9 @@ __metadata:
languageName: node
linkType: hard
-"@angular-devkit/core@npm:19.2.6":
- version: 19.2.6
- resolution: "@angular-devkit/core@npm:19.2.6"
+"@angular-devkit/core@npm:19.2.15":
+ version: 19.2.15
+ resolution: "@angular-devkit/core@npm:19.2.15"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
@@ -63,7 +63,7 @@ __metadata:
peerDependenciesMeta:
chokidar:
optional: true
- checksum: 10c0/0f15217b48beda566e5d050b1ac704cbcf180e1e99c66d51d79bbbc4f67e62bd0311c64ab8f6c843427d316c817f2ff27d6531212015985dd4d7dc96578ff5ff
+ checksum: 10c0/ed37170b30e8ff19ab785e2c5b717efb6bb73c261e3fe6b27ac61bcb781c60fe545ac0589dd3eabe75cf24f055210b65f386a03e804b32effa191fc7c9512e63
languageName: node
linkType: hard
@@ -96,16 +96,16 @@ __metadata:
languageName: node
linkType: hard
-"@angular-devkit/schematics@npm:19.2.6":
- version: 19.2.6
- resolution: "@angular-devkit/schematics@npm:19.2.6"
+"@angular-devkit/schematics@npm:19.2.15":
+ version: 19.2.15
+ resolution: "@angular-devkit/schematics@npm:19.2.15"
dependencies:
- "@angular-devkit/core": "npm:19.2.6"
+ "@angular-devkit/core": "npm:19.2.15"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
- checksum: 10c0/17a5a8fac6fd1a17c2f4772233c048f4fd952d65b5372f7a42b31b6b5432dc5398272ae2f1299b451d3bfce2c3ef9088d0a045358f39eb661bb944ee75efd943
+ checksum: 10c0/363ae06957c1e05a00351c283f00da113d71a9e621f9233146601db936a329f95772867ca09c7693d7db4eec8c6c1756048984e6a299515e7f164f874ea8d3a4
languageName: node
linkType: hard
@@ -118,16 +118,16 @@ __metadata:
languageName: node
linkType: hard
-"@asamuzakjp/css-color@npm:^3.1.2":
- version: 3.1.7
- resolution: "@asamuzakjp/css-color@npm:3.1.7"
+"@asamuzakjp/css-color@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "@asamuzakjp/css-color@npm:3.2.0"
dependencies:
"@csstools/css-calc": "npm:^2.1.3"
"@csstools/css-color-parser": "npm:^3.0.9"
"@csstools/css-parser-algorithms": "npm:^3.0.4"
"@csstools/css-tokenizer": "npm:^3.0.3"
lru-cache: "npm:^10.4.3"
- checksum: 10c0/ac70af38c9b9d972941fe9dbed5221118077bc8f217617edbd534d9c7c281fd2c4023d0f0daa349d57b895cb73430d67d509b722226294bad2910a81d9439e91
+ checksum: 10c0/a4bf1c831751b1fae46b437e37e8a38c0b5bd58d23230157ae210bd1e905fe509b89b7c243e63d1522d852668a6292ed730a160e21342772b4e5b7b8ea14c092
languageName: node
linkType: hard
@@ -239,420 +239,426 @@ __metadata:
linkType: hard
"@aws-sdk/client-lambda@npm:^3.563.0":
- version: 3.804.0
- resolution: "@aws-sdk/client-lambda@npm:3.804.0"
+ version: 3.876.0
+ resolution: "@aws-sdk/client-lambda@npm:3.876.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/credential-provider-node": "npm:3.804.0"
- "@aws-sdk/middleware-host-header": "npm:3.804.0"
- "@aws-sdk/middleware-logger": "npm:3.804.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
- "@aws-sdk/middleware-user-agent": "npm:3.804.0"
- "@aws-sdk/region-config-resolver": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@aws-sdk/util-endpoints": "npm:3.804.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.804.0"
- "@aws-sdk/util-user-agent-node": "npm:3.804.0"
- "@smithy/config-resolver": "npm:^4.1.0"
- "@smithy/core": "npm:^3.3.1"
- "@smithy/eventstream-serde-browser": "npm:^4.0.2"
- "@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
- "@smithy/eventstream-serde-node": "npm:^4.0.2"
- "@smithy/fetch-http-handler": "npm:^5.0.2"
- "@smithy/hash-node": "npm:^4.0.2"
- "@smithy/invalid-dependency": "npm:^4.0.2"
- "@smithy/middleware-content-length": "npm:^4.0.2"
- "@smithy/middleware-endpoint": "npm:^4.1.2"
- "@smithy/middleware-retry": "npm:^4.1.3"
- "@smithy/middleware-serde": "npm:^4.0.3"
- "@smithy/middleware-stack": "npm:^4.0.2"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/node-http-handler": "npm:^4.0.4"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/url-parser": "npm:^4.0.2"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/credential-provider-node": "npm:3.876.0"
+ "@aws-sdk/middleware-host-header": "npm:3.873.0"
+ "@aws-sdk/middleware-logger": "npm:3.876.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.876.0"
+ "@aws-sdk/region-config-resolver": "npm:3.873.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@aws-sdk/util-endpoints": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.876.0"
+ "@smithy/config-resolver": "npm:^4.1.5"
+ "@smithy/core": "npm:^3.8.0"
+ "@smithy/eventstream-serde-browser": "npm:^4.0.5"
+ "@smithy/eventstream-serde-config-resolver": "npm:^4.1.3"
+ "@smithy/eventstream-serde-node": "npm:^4.0.5"
+ "@smithy/fetch-http-handler": "npm:^5.1.1"
+ "@smithy/hash-node": "npm:^4.0.5"
+ "@smithy/invalid-dependency": "npm:^4.0.5"
+ "@smithy/middleware-content-length": "npm:^4.0.5"
+ "@smithy/middleware-endpoint": "npm:^4.1.18"
+ "@smithy/middleware-retry": "npm:^4.1.19"
+ "@smithy/middleware-serde": "npm:^4.0.9"
+ "@smithy/middleware-stack": "npm:^4.0.5"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/node-http-handler": "npm:^4.1.1"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/smithy-client": "npm:^4.4.10"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.10"
- "@smithy/util-defaults-mode-node": "npm:^4.0.10"
- "@smithy/util-endpoints": "npm:^3.0.2"
- "@smithy/util-middleware": "npm:^4.0.2"
- "@smithy/util-retry": "npm:^4.0.3"
- "@smithy/util-stream": "npm:^4.2.0"
+ "@smithy/util-defaults-mode-browser": "npm:^4.0.26"
+ "@smithy/util-defaults-mode-node": "npm:^4.0.26"
+ "@smithy/util-endpoints": "npm:^3.0.7"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-retry": "npm:^4.0.7"
+ "@smithy/util-stream": "npm:^4.2.4"
"@smithy/util-utf8": "npm:^4.0.0"
- "@smithy/util-waiter": "npm:^4.0.3"
+ "@smithy/util-waiter": "npm:^4.0.7"
tslib: "npm:^2.6.2"
- checksum: 10c0/bf0f607b01ef70dba2ca4a310cb8765d1a0e24630875709ec3006a1cbc92afb7373505fe88b9a9c9a2aab41b2701b496fe7ef6b559ce98caac94174965e3deee
+ checksum: 10c0/609da78465e73b01963ae996de33a192c9c8b3b9aaca9505b9dd779afe462a195549c59dc6cc2d27af7a6578aed5b45d4454666f5b02bd7c983378e9d42ab202
languageName: node
linkType: hard
-"@aws-sdk/client-sso@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/client-sso@npm:3.804.0"
+"@aws-sdk/client-sso@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/client-sso@npm:3.876.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/middleware-host-header": "npm:3.804.0"
- "@aws-sdk/middleware-logger": "npm:3.804.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
- "@aws-sdk/middleware-user-agent": "npm:3.804.0"
- "@aws-sdk/region-config-resolver": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@aws-sdk/util-endpoints": "npm:3.804.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.804.0"
- "@aws-sdk/util-user-agent-node": "npm:3.804.0"
- "@smithy/config-resolver": "npm:^4.1.0"
- "@smithy/core": "npm:^3.3.1"
- "@smithy/fetch-http-handler": "npm:^5.0.2"
- "@smithy/hash-node": "npm:^4.0.2"
- "@smithy/invalid-dependency": "npm:^4.0.2"
- "@smithy/middleware-content-length": "npm:^4.0.2"
- "@smithy/middleware-endpoint": "npm:^4.1.2"
- "@smithy/middleware-retry": "npm:^4.1.3"
- "@smithy/middleware-serde": "npm:^4.0.3"
- "@smithy/middleware-stack": "npm:^4.0.2"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/node-http-handler": "npm:^4.0.4"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/url-parser": "npm:^4.0.2"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/middleware-host-header": "npm:3.873.0"
+ "@aws-sdk/middleware-logger": "npm:3.876.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.876.0"
+ "@aws-sdk/region-config-resolver": "npm:3.873.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@aws-sdk/util-endpoints": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.876.0"
+ "@smithy/config-resolver": "npm:^4.1.5"
+ "@smithy/core": "npm:^3.8.0"
+ "@smithy/fetch-http-handler": "npm:^5.1.1"
+ "@smithy/hash-node": "npm:^4.0.5"
+ "@smithy/invalid-dependency": "npm:^4.0.5"
+ "@smithy/middleware-content-length": "npm:^4.0.5"
+ "@smithy/middleware-endpoint": "npm:^4.1.18"
+ "@smithy/middleware-retry": "npm:^4.1.19"
+ "@smithy/middleware-serde": "npm:^4.0.9"
+ "@smithy/middleware-stack": "npm:^4.0.5"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/node-http-handler": "npm:^4.1.1"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/smithy-client": "npm:^4.4.10"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.10"
- "@smithy/util-defaults-mode-node": "npm:^4.0.10"
- "@smithy/util-endpoints": "npm:^3.0.2"
- "@smithy/util-middleware": "npm:^4.0.2"
- "@smithy/util-retry": "npm:^4.0.3"
+ "@smithy/util-defaults-mode-browser": "npm:^4.0.26"
+ "@smithy/util-defaults-mode-node": "npm:^4.0.26"
+ "@smithy/util-endpoints": "npm:^3.0.7"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/bdca6467b4d8cda794a5e2353c4cefe28630b07b7bf8dd2441275d77195f49765f17cb8154110c562ecb125a890ba6bc129e7a080683fd87205b17e56ad39331
+ checksum: 10c0/af816526130aa48e9e15be0b4930041fcefe8d3cfe5c9bbf60548f092871db7dce88ecf2953af7181d4aa5c3f46b8740e65e5df19ed95ac423fe54f18e819908
languageName: node
linkType: hard
-"@aws-sdk/core@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/core@npm:3.804.0"
+"@aws-sdk/core@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/core@npm:3.876.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/core": "npm:^3.3.1"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/signature-v4": "npm:^5.1.0"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/util-middleware": "npm:^4.0.2"
- fast-xml-parser: "npm:4.4.1"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@aws-sdk/xml-builder": "npm:3.873.0"
+ "@smithy/core": "npm:^3.8.0"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/signature-v4": "npm:^5.1.3"
+ "@smithy/smithy-client": "npm:^4.4.10"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/util-base64": "npm:^4.0.0"
+ "@smithy/util-body-length-browser": "npm:^4.0.0"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-utf8": "npm:^4.0.0"
+ fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
- checksum: 10c0/c20d9cd253bbe214e92f33260f7c52766cfdd21ebf4ee198bbba0e6a1d24ee8dc9e1ed024abf3f2772919d9bfd391f236839e4da07b4330690a0c6a874b0f992
+ checksum: 10c0/aa74bdd9b1d3992913b82f62fd9ceb45ae55cbdffc109d1bb73b5ef0f85983e0eea1679488064d8cf5fa5aa6e1d711eed0216606a4eff41a96ae7c7d82dacafb
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-env@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-env@npm:3.804.0"
+"@aws-sdk/credential-provider-env@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-env@npm:3.876.0"
dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/5a8f5ed24c29c1cd0d87f552975b16bb413ac9c3f7c608effb169c6b5b75727eb6200e3eaecb9560783bbb8899655d6ecd2bb5290304945c2b5fb97d35ac19e5
+ checksum: 10c0/e34b7f69eb26177a5564d5b9ea7451de68d124131e4776c34852582246243f9c00b8d5aa535dc5a14cc247e483797e9af5778ffe09a86d3d2975f64c3854989f
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-http@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-http@npm:3.804.0"
+"@aws-sdk/credential-provider-http@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-http@npm:3.876.0"
dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/fetch-http-handler": "npm:^5.0.2"
- "@smithy/node-http-handler": "npm:^4.0.4"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/util-stream": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/fetch-http-handler": "npm:^5.1.1"
+ "@smithy/node-http-handler": "npm:^4.1.1"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/smithy-client": "npm:^4.4.10"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/util-stream": "npm:^4.2.4"
tslib: "npm:^2.6.2"
- checksum: 10c0/7c290ba3fb5245010f193cd5d6f2c6ed41555c107911ac1a6dc9136ba6f21857a0101cd3f7b226a748a1b407b5e6b90503badde3ff0d6ab7e9900bd3b414786c
- languageName: node
- linkType: hard
-
-"@aws-sdk/credential-provider-ini@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-ini@npm:3.804.0"
- dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/credential-provider-env": "npm:3.804.0"
- "@aws-sdk/credential-provider-http": "npm:3.804.0"
- "@aws-sdk/credential-provider-process": "npm:3.804.0"
- "@aws-sdk/credential-provider-sso": "npm:3.804.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.804.0"
- "@aws-sdk/nested-clients": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/credential-provider-imds": "npm:^4.0.2"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ checksum: 10c0/f98cbe898cac6d0d912c07f02dafc94f3e7b036a0b6489104f37b9c07d693937b437b3da7f3e7bfe654c699023b16cdc8309e42f13e953d33dfa9af7b366eec8
+ languageName: node
+ linkType: hard
+
+"@aws-sdk/credential-provider-ini@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-ini@npm:3.876.0"
+ dependencies:
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/credential-provider-env": "npm:3.876.0"
+ "@aws-sdk/credential-provider-http": "npm:3.876.0"
+ "@aws-sdk/credential-provider-process": "npm:3.876.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.876.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.876.0"
+ "@aws-sdk/nested-clients": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/credential-provider-imds": "npm:^4.0.7"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/f1e78aef499fcbb4da35385ecc7af52bcd0833446ad1cd041d7912a85096a516e9f96eb3ea984d7559aa6ebb3ae6b1406dc328b5e87d22fbb12ff94d33328695
+ checksum: 10c0/b983477ee0083fac6e35d817ebe35545d3c2ccff176d0e0865fbe45ad2ea6ae5987d291f2fcb4be8e9bac0e1e5e34f2b292af5202604251214b3bd8a096047ad
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-node@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-node@npm:3.804.0"
+"@aws-sdk/credential-provider-node@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-node@npm:3.876.0"
dependencies:
- "@aws-sdk/credential-provider-env": "npm:3.804.0"
- "@aws-sdk/credential-provider-http": "npm:3.804.0"
- "@aws-sdk/credential-provider-ini": "npm:3.804.0"
- "@aws-sdk/credential-provider-process": "npm:3.804.0"
- "@aws-sdk/credential-provider-sso": "npm:3.804.0"
- "@aws-sdk/credential-provider-web-identity": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/credential-provider-imds": "npm:^4.0.2"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/credential-provider-env": "npm:3.876.0"
+ "@aws-sdk/credential-provider-http": "npm:3.876.0"
+ "@aws-sdk/credential-provider-ini": "npm:3.876.0"
+ "@aws-sdk/credential-provider-process": "npm:3.876.0"
+ "@aws-sdk/credential-provider-sso": "npm:3.876.0"
+ "@aws-sdk/credential-provider-web-identity": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/credential-provider-imds": "npm:^4.0.7"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/3146becead8deddc7bd0a147a1b6a98b3fed02bb4b833d664c0b950ac7fb7b41c8f3c99b0969eff38d303c527009217f7309a98e3ff1a24b5e618ac1a4aaa8dc
+ checksum: 10c0/35d0e51faadd9b97f6753f528ab343000d14be4f9878d974c515cb35cce64ef9a6a3e92a6f2cdd7735c5c5bb3330ac7da36cfd1612c47b388609c429d1a176b7
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-process@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-process@npm:3.804.0"
+"@aws-sdk/credential-provider-process@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-process@npm:3.876.0"
dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/b1a885940b21bda0c373f3792bb2280b5689032acd81b028dbac66d50c56efe31033c14c074bfcf07f207a8b2cb6f5095972094df8b9618f1e16522e1facf567
+ checksum: 10c0/9cd926f289d576cf00af7afe58c1881d3be2b2ccb3a17d8cb52e008ce6cb8088abdc1980575de96824709cedc40f215a767d832e6470912c84545275a1680641
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-sso@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-sso@npm:3.804.0"
+"@aws-sdk/credential-provider-sso@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-sso@npm:3.876.0"
dependencies:
- "@aws-sdk/client-sso": "npm:3.804.0"
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/token-providers": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/client-sso": "npm:3.876.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/token-providers": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/61bb9e97988f3c42ad832788231ea77fb6cf631e2906e4740c20549edf369f2b67e470f430b16c63e99749bafff7220947ec1a1fc0c68f7f3c7adcbbe407d429
+ checksum: 10c0/099fc975603988be4106f9c87153b6d5079d42fa8c9eb6208bc0735e98e61c92e5912867c0d2b1a958f6af40ecdc87d9b3584abaff7ec08b56cd4201d92e3c9d
languageName: node
linkType: hard
-"@aws-sdk/credential-provider-web-identity@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/credential-provider-web-identity@npm:3.804.0"
+"@aws-sdk/credential-provider-web-identity@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/credential-provider-web-identity@npm:3.876.0"
dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/nested-clients": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/nested-clients": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/9b4193cd459836aa386c8ef65bcb125774379660b05a1fd42eb9b953976d29bd5c2857720aa595f1c3de9b17b4a9ace8aab07334bd1f637cc454b3b982eeafa7
+ checksum: 10c0/ecb86046f3e05492daaf696d21168ae20a5f03893af2eb2b99cb0fb2a57820f258c9b68ce3dc7ba893ec742a77de74a5200de405acfd0ec9d23be748d8409b95
languageName: node
linkType: hard
-"@aws-sdk/middleware-host-header@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/middleware-host-header@npm:3.804.0"
+"@aws-sdk/middleware-host-header@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/middleware-host-header@npm:3.873.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/4089d24b70d2d80f4936e4468f69d3ce1dfd80bc84ed0db65c57b25814c7842076e6ab55a80346f2b396b1db967c447370839a2dac836e1db81b01928985ceeb
+ checksum: 10c0/177f42c4342666ba8270a3a0f5de16e713b7245b8b5435f1b4863d46cbad9ea8930d23d9731d79ffc0b960be7f70a96693fa0b524a2dd24ca61d1ce8873c9b55
languageName: node
linkType: hard
-"@aws-sdk/middleware-logger@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/middleware-logger@npm:3.804.0"
+"@aws-sdk/middleware-logger@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/middleware-logger@npm:3.876.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/4b7deebb336231e529857673fbba898e578b7ca88049923f3e822e67732262a08bbcaecf388e1cd687102744ad9867ab535b71e8b086602f91e1a4bb43b39a5a
+ checksum: 10c0/8a4b31102579bbdabc22f982277239535627e658fce8cff32df4032c510ec944ce4ffef73ae6cd948b918f87809133c6e3e3f7fdd60bd6feec89f4cbab4300c8
languageName: node
linkType: hard
-"@aws-sdk/middleware-recursion-detection@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/middleware-recursion-detection@npm:3.804.0"
+"@aws-sdk/middleware-recursion-detection@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/middleware-recursion-detection@npm:3.873.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/86e6d2902dd8ec8551d9f66ebc470b21bcf0d3caab457ef3395ee18fcd371d3816e86f17f39cd69a27cc39ee96b6b85d0b179e44fec5a6da11f44a4905d8ac92
+ checksum: 10c0/ce8b10a9da07faf41246c581d342ac3a8e4373bd8c1e07e131573575fed8d6d379e15b4d8f0efebd84936bf4fc800ae7719e36b50931bcf4df2ac547bde31f61
languageName: node
linkType: hard
-"@aws-sdk/middleware-user-agent@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/middleware-user-agent@npm:3.804.0"
+"@aws-sdk/middleware-user-agent@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/middleware-user-agent@npm:3.876.0"
dependencies:
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@aws-sdk/util-endpoints": "npm:3.804.0"
- "@smithy/core": "npm:^3.3.1"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@aws-sdk/util-endpoints": "npm:3.873.0"
+ "@smithy/core": "npm:^3.8.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/5e125dbb220a4ccef454cca673226f3af5306d79016740b71b41c83da9b6ea382301b88f741c500fe3cd72b79ecd22cce591eeb9c2d231773ab52895a84cf183
+ checksum: 10c0/256e94f3e448f073484c9eab522e8d9368c59c319abfe72ece71a4266459414dfff6678f79f24e85ac8cb593c6d902cbbd1de0b2e669c71dc3c2fea6309b4c5e
languageName: node
linkType: hard
-"@aws-sdk/nested-clients@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/nested-clients@npm:3.804.0"
+"@aws-sdk/nested-clients@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/nested-clients@npm:3.876.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
- "@aws-sdk/core": "npm:3.804.0"
- "@aws-sdk/middleware-host-header": "npm:3.804.0"
- "@aws-sdk/middleware-logger": "npm:3.804.0"
- "@aws-sdk/middleware-recursion-detection": "npm:3.804.0"
- "@aws-sdk/middleware-user-agent": "npm:3.804.0"
- "@aws-sdk/region-config-resolver": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@aws-sdk/util-endpoints": "npm:3.804.0"
- "@aws-sdk/util-user-agent-browser": "npm:3.804.0"
- "@aws-sdk/util-user-agent-node": "npm:3.804.0"
- "@smithy/config-resolver": "npm:^4.1.0"
- "@smithy/core": "npm:^3.3.1"
- "@smithy/fetch-http-handler": "npm:^5.0.2"
- "@smithy/hash-node": "npm:^4.0.2"
- "@smithy/invalid-dependency": "npm:^4.0.2"
- "@smithy/middleware-content-length": "npm:^4.0.2"
- "@smithy/middleware-endpoint": "npm:^4.1.2"
- "@smithy/middleware-retry": "npm:^4.1.3"
- "@smithy/middleware-serde": "npm:^4.0.3"
- "@smithy/middleware-stack": "npm:^4.0.2"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/node-http-handler": "npm:^4.0.4"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/url-parser": "npm:^4.0.2"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/middleware-host-header": "npm:3.873.0"
+ "@aws-sdk/middleware-logger": "npm:3.876.0"
+ "@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.876.0"
+ "@aws-sdk/region-config-resolver": "npm:3.873.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@aws-sdk/util-endpoints": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-browser": "npm:3.873.0"
+ "@aws-sdk/util-user-agent-node": "npm:3.876.0"
+ "@smithy/config-resolver": "npm:^4.1.5"
+ "@smithy/core": "npm:^3.8.0"
+ "@smithy/fetch-http-handler": "npm:^5.1.1"
+ "@smithy/hash-node": "npm:^4.0.5"
+ "@smithy/invalid-dependency": "npm:^4.0.5"
+ "@smithy/middleware-content-length": "npm:^4.0.5"
+ "@smithy/middleware-endpoint": "npm:^4.1.18"
+ "@smithy/middleware-retry": "npm:^4.1.19"
+ "@smithy/middleware-serde": "npm:^4.0.9"
+ "@smithy/middleware-stack": "npm:^4.0.5"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/node-http-handler": "npm:^4.1.1"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/smithy-client": "npm:^4.4.10"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
- "@smithy/util-defaults-mode-browser": "npm:^4.0.10"
- "@smithy/util-defaults-mode-node": "npm:^4.0.10"
- "@smithy/util-endpoints": "npm:^3.0.2"
- "@smithy/util-middleware": "npm:^4.0.2"
- "@smithy/util-retry": "npm:^4.0.3"
+ "@smithy/util-defaults-mode-browser": "npm:^4.0.26"
+ "@smithy/util-defaults-mode-node": "npm:^4.0.26"
+ "@smithy/util-endpoints": "npm:^3.0.7"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/38517496490d138ad150aedeb8ce0ab4ab660bb6d3ec5d82fb29c08afd495296cba3cd9375e5f5f0f9be4bfecd4f03beef5e0b925f2fb0da7acba3aaa583f6db
+ checksum: 10c0/90874497631cedc0f0c3f8db4a00dd9b2958e04a91ee59b1586d02676f1a9a43cde3bde7f5dd7779112cd06516bb5a5f9a44265f36b5f157867971588ccc27ea
languageName: node
linkType: hard
-"@aws-sdk/region-config-resolver@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/region-config-resolver@npm:3.804.0"
+"@aws-sdk/region-config-resolver@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/region-config-resolver@npm:3.873.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-config-provider": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.2"
+ "@smithy/util-middleware": "npm:^4.0.5"
tslib: "npm:^2.6.2"
- checksum: 10c0/f4c5b9c3cb75e2c928f71b6d060ed292d408bf6401ae86a29342fe34a5af3eda0e2680848134f909d41e1c0cd1c0c63656c06090f29494fd9699bb11cafd240b
+ checksum: 10c0/5d2141beaafcc2cf56fe8c92efb176f773de1fbaaac9645fb26ca4478648c0bc440b73bbe8a9837f1843d66bdb513d1ad6e649ffbbd03dc3dae9eeb06c318622
languageName: node
linkType: hard
-"@aws-sdk/token-providers@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/token-providers@npm:3.804.0"
+"@aws-sdk/token-providers@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/token-providers@npm:3.876.0"
dependencies:
- "@aws-sdk/nested-clients": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/core": "npm:3.876.0"
+ "@aws-sdk/nested-clients": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/ea2c56708b0ea312f14bbaedad1cc0ce8247d9f7a6a881173240479d0a0a22dd566afb9a8fa7dff504813a455f6aab1cd0309b43548a84e6cad9b6fb46507795
+ checksum: 10c0/f0e0ca2efd94e7c1ca8d910e24d5503370960d993c0c2bb00c90105fe3be6f48ae22b8a4526448bc4edd4502b7e20b513598120035f4d2451aee1202e8c23f06
languageName: node
linkType: hard
-"@aws-sdk/types@npm:3.804.0, @aws-sdk/types@npm:^3.1.0, @aws-sdk/types@npm:^3.222.0":
- version: 3.804.0
- resolution: "@aws-sdk/types@npm:3.804.0"
+"@aws-sdk/types@npm:3.862.0, @aws-sdk/types@npm:^3.1.0, @aws-sdk/types@npm:^3.222.0":
+ version: 3.862.0
+ resolution: "@aws-sdk/types@npm:3.862.0"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/cdda6d77466ed34de1ca0e23b9df5c576e7d67dc87cfda2a2d024a9c5f4180fe77ebaf57194a4cf034ee5edfbcd8efdeca458e9b61b1f364b261284b4a141ae5
+ checksum: 10c0/d8e13eadde27c29e39d8effa861a3dc8ef43fba6ecb9772e3461619a76897873c8d4355be89aa5090294d1f17e1a6697834f0bbf6a7f73902a77fe00b1fbe5c2
languageName: node
linkType: hard
-"@aws-sdk/util-endpoints@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/util-endpoints@npm:3.804.0"
+"@aws-sdk/util-endpoints@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/util-endpoints@npm:3.873.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/util-endpoints": "npm:^3.0.2"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
+ "@smithy/util-endpoints": "npm:^3.0.7"
tslib: "npm:^2.6.2"
- checksum: 10c0/09bd3a9a114b0ebc897275ef75df72b3652af3023405484b86484861455b14f6c51809086598c9395b6381f85abe8f3d11a02b98806b55004c450b9937fcc4b2
+ checksum: 10c0/663b882c69400f6473d5d3acd7c337031412bc86d2edd60a1f3faa40c575a79f0a2927b03b0b059453c43cc818e05fb6da0e4b8ab7f960d1c9d2a2b7de952a4d
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
- version: 3.804.0
- resolution: "@aws-sdk/util-locate-window@npm:3.804.0"
+ version: 3.873.0
+ resolution: "@aws-sdk/util-locate-window@npm:3.873.0"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/a0ceaf6531f188751fea7e829b730650689fa2196e0b3f870dde3888bcb840fe0852e10488699d4d9683db0765cd7f7060ca8ac216348991996b6d794f9957ab
+ checksum: 10c0/b72af4921c5f036bd9aeb1b7a40d66c6cc317a9b5d6e249ef296bbbb2402f262139df03e21a5300b941d6914d879742911841cf2189c8b63df4fd2f8e0c76cc2
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-browser@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/util-user-agent-browser@npm:3.804.0"
+"@aws-sdk/util-user-agent-browser@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/util-user-agent-browser@npm:3.873.0"
dependencies:
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/types": "npm:^4.3.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/d459a94955e7298c72dc97e7e59d276320ff004615b117bd2f63bbacf762159c5476f40a8f24d9b5eb054915bd6ce97ffade3a649d5fad98643f92a9d90a5192
+ checksum: 10c0/a65177d5b27632ebeb4e922ee3a7ab1bce06d8120a9ac33343900125be67498837f0df8495008df6144ef7b687c095477016dba54d40be11397b6a418a4f81ef
languageName: node
linkType: hard
-"@aws-sdk/util-user-agent-node@npm:3.804.0":
- version: 3.804.0
- resolution: "@aws-sdk/util-user-agent-node@npm:3.804.0"
+"@aws-sdk/util-user-agent-node@npm:3.876.0":
+ version: 3.876.0
+ resolution: "@aws-sdk/util-user-agent-node@npm:3.876.0"
dependencies:
- "@aws-sdk/middleware-user-agent": "npm:3.804.0"
- "@aws-sdk/types": "npm:3.804.0"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@aws-sdk/middleware-user-agent": "npm:3.876.0"
+ "@aws-sdk/types": "npm:3.862.0"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
- checksum: 10c0/f039f6420b7fe01674f63d5a48733e471ddcd03871d86cbd14d51af2a38da1473ac38f3cd192f0b82ce2bae66c69dd86074e2cf212cb68a183f17430cdf7dc63
+ checksum: 10c0/fb06cb8b29efd32f356166c1aabc2d7376885fb23b286d7195a24b411b753f8ecca9495e1f3f8602997ab3af6c5e611edcae816e2cbf98170e1e939f5ceeeaa0
languageName: node
linkType: hard
@@ -665,6 +671,16 @@ __metadata:
languageName: node
linkType: hard
+"@aws-sdk/xml-builder@npm:3.873.0":
+ version: 3.873.0
+ resolution: "@aws-sdk/xml-builder@npm:3.873.0"
+ dependencies:
+ "@smithy/types": "npm:^4.3.2"
+ tslib: "npm:^2.6.2"
+ checksum: 10c0/f58d49c1bbee2fb8a225b23ff7c26e84264df657d55cf7ca204f07f583603cbb75be356a5ef576810f9a1fddfe133d556ead0a39349cdb94e28bcaae6c279128
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.18.6, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
@@ -676,39 +692,39 @@ __metadata:
languageName: node
linkType: hard
-"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.27.2":
- version: 7.27.2
- resolution: "@babel/compat-data@npm:7.27.2"
- checksum: 10c0/077c9e01af3b90decee384a6a44dcf353898e980cee22ec7941f9074655dbbe97ec317345536cdc7ef7391521e1497930c522a3816af473076dd524be7fccd32
+"@babel/compat-data@npm:^7.27.2, @babel/compat-data@npm:^7.27.7, @babel/compat-data@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/compat-data@npm:7.28.0"
+ checksum: 10c0/c4e527302bcd61052423f757355a71c3bc62362bac13f7f130de16e439716f66091ff5bdecda418e8fa0271d4c725f860f0ee23ab7bf6e769f7a8bb16dfcb531
languageName: node
linkType: hard
-"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.16.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.0, @babel/core@npm:^7.26.10":
- version: 7.27.1
- resolution: "@babel/core@npm:7.27.1"
+"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.16.0, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.0, @babel/core@npm:^7.28.0":
+ version: 7.28.3
+ resolution: "@babel/core@npm:7.28.3"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.27.1"
- "@babel/generator": "npm:^7.27.1"
- "@babel/helper-compilation-targets": "npm:^7.27.1"
- "@babel/helper-module-transforms": "npm:^7.27.1"
- "@babel/helpers": "npm:^7.27.1"
- "@babel/parser": "npm:^7.27.1"
- "@babel/template": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
+ "@babel/generator": "npm:^7.28.3"
+ "@babel/helper-compilation-targets": "npm:^7.27.2"
+ "@babel/helper-module-transforms": "npm:^7.28.3"
+ "@babel/helpers": "npm:^7.28.3"
+ "@babel/parser": "npm:^7.28.3"
+ "@babel/template": "npm:^7.27.2"
+ "@babel/traverse": "npm:^7.28.3"
+ "@babel/types": "npm:^7.28.2"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
- checksum: 10c0/0fc31f87f5401ac5d375528cb009f4ea5527fc8c5bb5b64b5b22c033b60fd0ad723388933a5f3f5db14e1edd13c958e9dd7e5c68f9b68c767aeb496199c8a4bb
+ checksum: 10c0/e6b3eb830c4b93f5a442b305776df1cd2bb4fafa4612355366f67c764f3e54a69d45b84def77fb2d4fd83439102667b0a92c3ea2838f678733245b748c602a7b
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.16.3, @babel/eslint-parser@npm:^7.23.10":
- version: 7.27.1
- resolution: "@babel/eslint-parser@npm:7.27.1"
+ version: 7.28.0
+ resolution: "@babel/eslint-parser@npm:7.28.0"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
@@ -716,33 +732,33 @@ __metadata:
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- checksum: 10c0/dedb2bc7ef00307eaf8e40d5ec7f1e8ae4649838fa2e7ec5e1b47eaf9bd8708949503b05175de922e2431ce69a5f3b5fab1c1202003b1d9457d3c0b2c3bdc4ec
+ checksum: 10c0/ca25b8ce38026f22ef875bf45a7bf96601446461d245dabfd8422c4e9d17a8fbe48149b97f5adc58147962118b22acf7f45c54effef8501232f88b3e5eb7c62e
languageName: node
linkType: hard
-"@babel/generator@npm:^7.27.1, @babel/generator@npm:^7.7.2":
- version: 7.27.1
- resolution: "@babel/generator@npm:7.27.1"
+"@babel/generator@npm:^7.28.3, @babel/generator@npm:^7.7.2":
+ version: 7.28.3
+ resolution: "@babel/generator@npm:7.28.3"
dependencies:
- "@babel/parser": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
- "@jridgewell/gen-mapping": "npm:^0.3.5"
- "@jridgewell/trace-mapping": "npm:^0.3.25"
+ "@babel/parser": "npm:^7.28.3"
+ "@babel/types": "npm:^7.28.2"
+ "@jridgewell/gen-mapping": "npm:^0.3.12"
+ "@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
- checksum: 10c0/c4156434b21818f558ebd93ce45f027c53ee570ce55a84fd2d9ba45a79ad204c17e0bff753c886fb6c07df3385445a9e34dc7ccb070d0ac7e80bb91c8b57f423
+ checksum: 10c0/0ff58bcf04f8803dcc29479b547b43b9b0b828ec1ee0668e92d79f9e90f388c28589056637c5ff2fd7bcf8d153c990d29c448d449d852bf9d1bc64753ca462bc
languageName: node
linkType: hard
-"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-annotate-as-pure@npm:7.27.1"
+"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3":
+ version: 7.27.3
+ resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
- "@babel/types": "npm:^7.27.1"
- checksum: 10c0/fc4751b59c8f5417e1acb0455d6ffce53fa5e79b3aca690299fbbf73b1b65bfaef3d4a18abceb190024c5836bb6cfbc3711e83888648df93df54e18152a1196c
+ "@babel/types": "npm:^7.27.3"
+ checksum: 10c0/94996ce0a05b7229f956033e6dcd69393db2b0886d0db6aff41e704390402b8cdcca11f61449cb4f86cfd9e61b5ad3a73e4fa661eeed7846b125bd1c33dbc633
languageName: node
linkType: hard
-"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.27.2":
+"@babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
@@ -755,20 +771,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-create-class-features-plugin@npm:7.27.1"
+"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.27.1, @babel/helper-create-class-features-plugin@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.28.3"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.27.1"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
"@babel/helper-member-expression-to-functions": "npm:^7.27.1"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/helper-replace-supers": "npm:^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.3"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10c0/4ee199671d6b9bdd4988aa2eea4bdced9a73abfc831d81b00c7634f49a8fc271b3ceda01c067af58018eb720c6151322015d463abea7072a368ee13f35adbb4c
+ checksum: 10c0/f1ace9476d581929128fd4afc29783bb674663898577b2e48ed139cfd2e92dfc69654cff76cb8fd26fece6286f66a99a993186c1e0a3e17b703b352d0bcd1ca4
languageName: node
linkType: hard
@@ -785,18 +801,25 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-define-polyfill-provider@npm:^0.6.3, @babel/helper-define-polyfill-provider@npm:^0.6.4":
- version: 0.6.4
- resolution: "@babel/helper-define-polyfill-provider@npm:0.6.4"
+"@babel/helper-define-polyfill-provider@npm:^0.6.5":
+ version: 0.6.5
+ resolution: "@babel/helper-define-polyfill-provider@npm:0.6.5"
dependencies:
- "@babel/helper-compilation-targets": "npm:^7.22.6"
- "@babel/helper-plugin-utils": "npm:^7.22.5"
- debug: "npm:^4.1.1"
+ "@babel/helper-compilation-targets": "npm:^7.27.2"
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ debug: "npm:^4.4.1"
lodash.debounce: "npm:^4.0.8"
- resolve: "npm:^1.14.2"
+ resolve: "npm:^1.22.10"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10c0/b74f2b46e233a178618d19432bdae16e0137d0a603497ee901155e083c4a61f26fe01d79fb95d5f4c22131ade9d958d8f587088d412cca1302633587f070919d
+ checksum: 10c0/4886a068d9ca1e70af395340656a9dda33c50502c67eed39ff6451785f370bdfc6e57095b90cb92678adcd4a111ca60909af53d3a741120719c5604346ae409e
+ languageName: node
+ linkType: hard
+
+"@babel/helper-globals@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/helper-globals@npm:7.28.0"
+ checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
@@ -820,16 +843,16 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-module-transforms@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-module-transforms@npm:7.27.1"
+"@babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/helper-module-transforms@npm:7.28.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.3"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10c0/196ab29635fe6eb5ba6ead2972d41b1c0d40f400f99bd8fc109cef21440de24c26c972fabf932585e618694d590379ab8d22def8da65a54459d38ec46112ead7
+ checksum: 10c0/549be62515a6d50cd4cfefcab1b005c47f89bd9135a22d602ee6a5e3a01f27571868ada10b75b033569f24dc4a2bb8d04bfa05ee75c16da7ade2d0db1437fcdb
languageName: node
linkType: hard
@@ -842,7 +865,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.8.0":
+"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.27.1
resolution: "@babel/helper-plugin-utils@npm:7.27.1"
checksum: 10c0/94cf22c81a0c11a09b197b41ab488d416ff62254ce13c57e62912c85700dc2e99e555225787a4099ff6bae7a1812d622c80fbaeda824b79baa10a6c5ac4cf69b
@@ -907,34 +930,34 @@ __metadata:
linkType: hard
"@babel/helper-wrap-function@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-wrap-function@npm:7.27.1"
+ version: 7.28.3
+ resolution: "@babel/helper-wrap-function@npm:7.28.3"
dependencies:
- "@babel/template": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
- checksum: 10c0/c472f75c0951bc657ab0a117538c7c116566ae7579ed47ac3f572c42dc78bd6f1e18f52ebe80d38300c991c3fcaa06979e2f8864ee919369dabd59072288de30
+ "@babel/template": "npm:^7.27.2"
+ "@babel/traverse": "npm:^7.28.3"
+ "@babel/types": "npm:^7.28.2"
+ checksum: 10c0/aecb8a457efd893dc3c6378ab9221d06197573fb2fe64afabe7923e7732607d59b07f4c5603909877d69bea3ee87025f4b1d8e4f0403ae0a07b14e9ce0bf355a
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helpers@npm:7.27.1"
+"@babel/helpers@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/helpers@npm:7.28.3"
dependencies:
- "@babel/template": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
- checksum: 10c0/e078257b9342dae2c041ac050276c5a28701434ad09478e6dc6976abd99f721a5a92e4bebddcbca6b1c3a7e8acace56a946340c701aad5e7507d2c87446459ba
+ "@babel/template": "npm:^7.27.2"
+ "@babel/types": "npm:^7.28.2"
+ checksum: 10c0/03a8f94135415eec62d37be9c62c63908f2d5386c7b00e04545de4961996465775330e3eb57717ea7451e19b0e24615777ebfec408c2adb1df3b10b4df6bf1ce
languageName: node
linkType: hard
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2":
- version: 7.27.2
- resolution: "@babel/parser@npm:7.27.2"
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/parser@npm:7.28.3"
dependencies:
- "@babel/types": "npm:^7.27.1"
+ "@babel/types": "npm:^7.28.2"
bin:
parser: ./bin/babel-parser.js
- checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4
+ checksum: 10c0/1f41eb82623b0ca0f94521b57f4790c6c457cd922b8e2597985b36bdec24114a9ccf54640286a760ceb60f11fe9102d192bf60477aee77f5d45f1029b9b72729
languageName: node
linkType: hard
@@ -985,15 +1008,15 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.27.1"
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.28.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.3"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10c0/b94e6c3fc019e988b1499490829c327a1067b4ddea8ad402f6d0554793c9124148c2125338c723661b6dff040951abc1f092afbf3f2d234319cd580b68e52445
+ checksum: 10c0/3cdc27c4e08a632a58e62c6017369401976edf1cd9ae73fd9f0d6770ddd9accf40b494db15b66bab8db2a8d5dc5bab5ca8c65b19b81fdca955cd8cbbe24daadb
languageName: node
linkType: hard
@@ -1010,15 +1033,15 @@ __metadata:
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.16.4":
- version: 7.27.1
- resolution: "@babel/plugin-proposal-decorators@npm:7.27.1"
+ version: 7.28.0
+ resolution: "@babel/plugin-proposal-decorators@npm:7.28.0"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/plugin-syntax-decorators": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/3af0db6b2468907bcaf62246b2cfd3616ba9239ea1cd26036ec6baff1bc095fe4964853b1d29a79944d36e6e3d331cd130d05b0c41c835266daf7bb9d8e8f87c
+ checksum: 10c0/e399f3adc4278560d15fd80691c7a9b644f46e50fa90746f9f3b9ac02cf955ef2b6677277d97c97a4bd6d6a777821fdedf1318923632a439cba1c05e8e59246c
languageName: node
linkType: hard
@@ -1337,16 +1360,16 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-async-generator-functions@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-async-generator-functions@npm:7.27.1"
+"@babel/plugin-transform-async-generator-functions@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-async-generator-functions@npm:7.28.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-remap-async-to-generator": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.0"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/772e449c69ee42a466443acefb07083bd89efb1a1d95679a4dc99ea3be9d8a3c43a2b74d2da95d7c818e9dd9e0b72bfa7c03217a1feaf108f21b7e542f0943c0
+ checksum: 10c0/739d577e649d7d7b9845dc309e132964327ab3eaea43ad04d04a7dcb977c63f9aa9a423d1ca39baf10939128d02f52e6fda39c834fb9f1753785b1497e72c4dc
languageName: node
linkType: hard
@@ -1374,14 +1397,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoping@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-block-scoping@npm:7.27.1"
+"@babel/plugin-transform-block-scoping@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-block-scoping@npm:7.28.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/d3f357beeb92fbdf3045aea2ba286a60dafc9c2d2a9f89065bb3c4bea9cc48934ee6689df3db0439d9ec518eda5e684f3156cab792b7c38c33ece2f8204ddee8
+ checksum: 10c0/787d85e72a92917e735aa54e23062fa777031f8a07046e67f5026eff3d91e64eb535575dd1df917b0011bee014ae51287478af14c1d4ba60bc81e326bc044cfc
languageName: node
linkType: hard
@@ -1397,31 +1420,31 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-class-static-block@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-class-static-block@npm:7.27.1"
+"@babel/plugin-transform-class-static-block@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/plugin-transform-class-static-block@npm:7.28.3"
dependencies:
- "@babel/helper-create-class-features-plugin": "npm:^7.27.1"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.3"
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.12.0
- checksum: 10c0/396997dd81fc1cf242b921e337d25089d6b9dc3596e81322ff11a6359326dc44f2f8b82dcc279c2e514cafaf8964dc7ed39e9fab4b8af1308b57387d111f6a20
+ checksum: 10c0/8c922a64f6f5b359f7515c89ef0037bad583b4484dfebc1f6bc1cf13462547aaceb19788827c57ec9a2d62495f34c4b471ca636bf61af00fdaea5e9642c82b60
languageName: node
linkType: hard
-"@babel/plugin-transform-classes@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-classes@npm:7.27.1"
+"@babel/plugin-transform-classes@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/plugin-transform-classes@npm:7.28.3"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.27.1"
- "@babel/helper-compilation-targets": "npm:^7.27.1"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
+ "@babel/helper-compilation-targets": "npm:^7.27.2"
+ "@babel/helper-globals": "npm:^7.28.0"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-replace-supers": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.27.1"
- globals: "npm:^11.1.0"
+ "@babel/traverse": "npm:^7.28.3"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/1071f4cb1ed5deb5e6f8d0442f2293a540cac5caa5ab3c25ad0571aadcbf961f61e26d367a67894976165a543e02f3a19e40b63b909afbed6e710801a590635c
+ checksum: 10c0/01b6122a127c28ee42a41eacf7da14417901898a29b722c40fbf9d3db0755461f3b5a82c091496c47fe328d4e22f2266966654dc84749296f9cfabf8a4ad9e0c
languageName: node
linkType: hard
@@ -1437,14 +1460,15 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-destructuring@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-destructuring@npm:7.27.1"
+"@babel/plugin-transform-destructuring@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-destructuring@npm:7.28.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/traverse": "npm:^7.28.0"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/56afda7a0b205f8d1af727daef4c529fc2e756887408affd39033ae4476e54d586d3d9dc1e72cfb15c74a2a5ca0653ab13dbaa8cbf79fbb2a3a746d0f107cb86
+ checksum: 10c0/cc7ccafa952b3ff7888544d5688cfafaba78c69ce1e2f04f3233f4f78c9de5e46e9695f5ea42c085b0c0cfa39b10f366d362a2be245b6d35b66d3eb1d427ccb2
languageName: node
linkType: hard
@@ -1494,6 +1518,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-explicit-resource-management@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-explicit-resource-management@npm:7.28.0"
+ dependencies:
+ "@babel/helper-plugin-utils": "npm:^7.27.1"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.0"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 10c0/3baa706af3112adf2ae0c7ec0dc61b63dd02695eb5582f3c3a2b2d05399c6aa7756f55e7bbbd5412e613a6ba1dd6b6736904074b4d7ebd6b45a1e3f9145e4094
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-exponentiation-operator@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.27.1"
@@ -1692,17 +1728,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-object-rest-spread@npm:^7.27.2":
- version: 7.27.2
- resolution: "@babel/plugin-transform-object-rest-spread@npm:7.27.2"
+"@babel/plugin-transform-object-rest-spread@npm:^7.28.0":
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-object-rest-spread@npm:7.28.0"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-plugin-utils": "npm:^7.27.1"
- "@babel/plugin-transform-destructuring": "npm:^7.27.1"
- "@babel/plugin-transform-parameters": "npm:^7.27.1"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.0"
+ "@babel/plugin-transform-parameters": "npm:^7.27.7"
+ "@babel/traverse": "npm:^7.28.0"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/5e255b262dd65c8700078d9f6ed87bd45f951a905dda6b3414be28d7b2781b18e6b812e9d71421e61360c9cf51e1e619c1d48348593bb7399496f61f5f221446
+ checksum: 10c0/360dc6fd5285ee5e1d3be8a1fb0decd120b2a1726800317b4ab48b7c91616247030239b7fa06ceaa1a8a586fde1e143c24d45f8d41956876099d97d664f8ef1e
languageName: node
linkType: hard
@@ -1741,14 +1778,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-parameters@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-parameters@npm:7.27.1"
+"@babel/plugin-transform-parameters@npm:^7.27.7":
+ version: 7.27.7
+ resolution: "@babel/plugin-transform-parameters@npm:7.27.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/453a9618735eeff5551d4c7f02c250606586fe1dd210ec9f69a4f15629ace180cd944339ebff2b0f11e1a40567d83a229ba1c567620e70b2ebedea576e12196a
+ checksum: 10c0/f2da3804e047d9f1cfb27be6c014e2c7f6cf5e1e38290d1cb3cb2607859e3d6facb4ee8c8c1e336e9fbb440091a174ce95ce156582d7e8bf9c0e735d11681f0f
languageName: node
linkType: hard
@@ -1789,13 +1826,13 @@ __metadata:
linkType: hard
"@babel/plugin-transform-react-display-name@npm:^7.16.0, @babel/plugin-transform-react-display-name@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-react-display-name@npm:7.27.1"
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-react-display-name@npm:7.28.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/6cd474b5fb30a2255027d8fc19975aee1c1da54dd8bc8b79802676096182ca4136302ce65a24fbb277f8fe30f266006bbf327ef6be2846d3681eb57509744125
+ checksum: 10c0/f5f86d2ad92be3e962158f344c2e385e23e2dfae7c8c7dc32138fb2cc46f63f5e50386c9f6c6fc16dbf1792c7bb650ad92c18203d0c2c0bd875bc28b0b80ef30
languageName: node
linkType: hard
@@ -1810,7 +1847,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-self@npm:^7.25.9":
+"@babel/plugin-transform-react-jsx-self@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
dependencies:
@@ -1821,7 +1858,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-source@npm:^7.25.9":
+"@babel/plugin-transform-react-jsx-source@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
dependencies:
@@ -1859,14 +1896,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-regenerator@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-regenerator@npm:7.27.1"
+"@babel/plugin-transform-regenerator@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/plugin-transform-regenerator@npm:7.28.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/42395908899310bb107d9ca31ebd4c302e14c582e3ad3ebfe1498fabafc43155c8f10850265c1e686a2afcf50d1f402cc5c5218fba72e167852607a4d8d6492e
+ checksum: 10c0/57443c680251f86aa75c15b02b9a741df2b76bcad8eb53b9941bc09b50d50108f108e1243effe99113892f07880d2d201e932677dce0b701aefb356ce7188be9
languageName: node
linkType: hard
@@ -1894,18 +1931,18 @@ __metadata:
linkType: hard
"@babel/plugin-transform-runtime@npm:^7.16.4":
- version: 7.27.1
- resolution: "@babel/plugin-transform-runtime@npm:7.27.1"
+ version: 7.28.3
+ resolution: "@babel/plugin-transform-runtime@npm:7.28.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
- babel-plugin-polyfill-corejs2: "npm:^0.4.10"
- babel-plugin-polyfill-corejs3: "npm:^0.11.0"
- babel-plugin-polyfill-regenerator: "npm:^0.6.1"
+ babel-plugin-polyfill-corejs2: "npm:^0.4.14"
+ babel-plugin-polyfill-corejs3: "npm:^0.13.0"
+ babel-plugin-polyfill-regenerator: "npm:^0.6.5"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/7abbae60a6441ba8546dee3fcbc00b38038304250ba2419adaf0c76267bff43420ff75b7049003a24a829e01d9fde2ac8a422352af6d88aebd31996a83f04c2f
+ checksum: 10c0/561629bb6c53561b5ad470df2e76bdd15e177fc518d91087bd7dc64a1025e42303ce333281875c6f0c7bf29b2edc7d99945343a09caf0ed6738d25fe34473254
languageName: node
linkType: hard
@@ -1966,17 +2003,17 @@ __metadata:
linkType: hard
"@babel/plugin-transform-typescript@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/plugin-transform-typescript@npm:7.27.1"
+ version: 7.28.0
+ resolution: "@babel/plugin-transform-typescript@npm:7.28.0"
dependencies:
- "@babel/helper-annotate-as-pure": "npm:^7.27.1"
+ "@babel/helper-annotate-as-pure": "npm:^7.27.3"
"@babel/helper-create-class-features-plugin": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
"@babel/plugin-syntax-typescript": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/48f1db5de17a0f9fc365ff4fb046010aedc7aad813a7aa42fb73fcdab6442f9e700dde2cc0481086e01b0dae662ae4d3e965a52cde154f0f146d243a8ac68e93
+ checksum: 10c0/049c2bd3407bbf5041d8c95805a4fadee6d176e034f6b94ce7967b92a846f1e00f323cf7dfbb2d06c93485f241fb8cf4c10520e30096a6059d251b94e80386e9
languageName: node
linkType: hard
@@ -2028,10 +2065,10 @@ __metadata:
linkType: hard
"@babel/preset-env@npm:^7.16.4":
- version: 7.27.2
- resolution: "@babel/preset-env@npm:7.27.2"
+ version: 7.28.3
+ resolution: "@babel/preset-env@npm:7.28.3"
dependencies:
- "@babel/compat-data": "npm:^7.27.2"
+ "@babel/compat-data": "npm:^7.28.0"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-validator-option": "npm:^7.27.1"
@@ -2039,25 +2076,26 @@ __metadata:
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.27.1"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.27.1"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.27.1"
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.27.1"
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.28.3"
"@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2"
"@babel/plugin-syntax-import-assertions": "npm:^7.27.1"
"@babel/plugin-syntax-import-attributes": "npm:^7.27.1"
"@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6"
"@babel/plugin-transform-arrow-functions": "npm:^7.27.1"
- "@babel/plugin-transform-async-generator-functions": "npm:^7.27.1"
+ "@babel/plugin-transform-async-generator-functions": "npm:^7.28.0"
"@babel/plugin-transform-async-to-generator": "npm:^7.27.1"
"@babel/plugin-transform-block-scoped-functions": "npm:^7.27.1"
- "@babel/plugin-transform-block-scoping": "npm:^7.27.1"
+ "@babel/plugin-transform-block-scoping": "npm:^7.28.0"
"@babel/plugin-transform-class-properties": "npm:^7.27.1"
- "@babel/plugin-transform-class-static-block": "npm:^7.27.1"
- "@babel/plugin-transform-classes": "npm:^7.27.1"
+ "@babel/plugin-transform-class-static-block": "npm:^7.28.3"
+ "@babel/plugin-transform-classes": "npm:^7.28.3"
"@babel/plugin-transform-computed-properties": "npm:^7.27.1"
- "@babel/plugin-transform-destructuring": "npm:^7.27.1"
+ "@babel/plugin-transform-destructuring": "npm:^7.28.0"
"@babel/plugin-transform-dotall-regex": "npm:^7.27.1"
"@babel/plugin-transform-duplicate-keys": "npm:^7.27.1"
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.27.1"
"@babel/plugin-transform-dynamic-import": "npm:^7.27.1"
+ "@babel/plugin-transform-explicit-resource-management": "npm:^7.28.0"
"@babel/plugin-transform-exponentiation-operator": "npm:^7.27.1"
"@babel/plugin-transform-export-namespace-from": "npm:^7.27.1"
"@babel/plugin-transform-for-of": "npm:^7.27.1"
@@ -2074,15 +2112,15 @@ __metadata:
"@babel/plugin-transform-new-target": "npm:^7.27.1"
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.27.1"
"@babel/plugin-transform-numeric-separator": "npm:^7.27.1"
- "@babel/plugin-transform-object-rest-spread": "npm:^7.27.2"
+ "@babel/plugin-transform-object-rest-spread": "npm:^7.28.0"
"@babel/plugin-transform-object-super": "npm:^7.27.1"
"@babel/plugin-transform-optional-catch-binding": "npm:^7.27.1"
"@babel/plugin-transform-optional-chaining": "npm:^7.27.1"
- "@babel/plugin-transform-parameters": "npm:^7.27.1"
+ "@babel/plugin-transform-parameters": "npm:^7.27.7"
"@babel/plugin-transform-private-methods": "npm:^7.27.1"
"@babel/plugin-transform-private-property-in-object": "npm:^7.27.1"
"@babel/plugin-transform-property-literals": "npm:^7.27.1"
- "@babel/plugin-transform-regenerator": "npm:^7.27.1"
+ "@babel/plugin-transform-regenerator": "npm:^7.28.3"
"@babel/plugin-transform-regexp-modifiers": "npm:^7.27.1"
"@babel/plugin-transform-reserved-words": "npm:^7.27.1"
"@babel/plugin-transform-shorthand-properties": "npm:^7.27.1"
@@ -2095,14 +2133,14 @@ __metadata:
"@babel/plugin-transform-unicode-regex": "npm:^7.27.1"
"@babel/plugin-transform-unicode-sets-regex": "npm:^7.27.1"
"@babel/preset-modules": "npm:0.1.6-no-external-plugins"
- babel-plugin-polyfill-corejs2: "npm:^0.4.10"
- babel-plugin-polyfill-corejs3: "npm:^0.11.0"
- babel-plugin-polyfill-regenerator: "npm:^0.6.1"
- core-js-compat: "npm:^3.40.0"
+ babel-plugin-polyfill-corejs2: "npm:^0.4.14"
+ babel-plugin-polyfill-corejs3: "npm:^0.13.0"
+ babel-plugin-polyfill-regenerator: "npm:^0.6.5"
+ core-js-compat: "npm:^3.43.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/fd7ec310832a9ff26ed8d56bc0832cdbdb3a188e022050b74790796650649fb8373568af05b320b58b3ff922507979bad50ff95a4d504ab0081134480103504e
+ checksum: 10c0/f7320cb062abf62de132ea2901135476938d32a896e03f5b7b3d543de08016053f6abbdaaf921d18fa43a0b76537dfd5ce8ee5dc647249b2057b8c6bf1289305
languageName: node
linkType: hard
@@ -2151,29 +2189,22 @@ __metadata:
linkType: hard
"@babel/runtime-corejs3@npm:^7.24.4":
- version: 7.27.1
- resolution: "@babel/runtime-corejs3@npm:7.27.1"
+ version: 7.28.3
+ resolution: "@babel/runtime-corejs3@npm:7.28.3"
dependencies:
- core-js-pure: "npm:^3.30.2"
- checksum: 10c0/81b46b6c73b590842abca14024a6b7c8751eaf0b519794f129b7c971043e13967e4d370933dbd7d0fdc78872ae45971b36013e0fa13c6d5c0130bfe971be0ac1
- languageName: node
- linkType: hard
-
-"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.9, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.27.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7":
- version: 7.27.1
- resolution: "@babel/runtime@npm:7.27.1"
- checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05
+ core-js-pure: "npm:^3.43.0"
+ checksum: 10c0/07de7d790909159af47adfd8d159e3c0fe31beaa74f584dd2885a85463cc40be7217b68b121c49661e56c8cddd9ae869ed611f1173d9cc317b07faa959ce4645
languageName: node
linkType: hard
-"@babel/runtime@npm:^7.27.6":
- version: 7.27.6
- resolution: "@babel/runtime@npm:7.27.6"
- checksum: 10c0/89726be83f356f511dcdb74d3ea4d873a5f0cf0017d4530cb53aa27380c01ca102d573eff8b8b77815e624b1f8c24e7f0311834ad4fb632c90a770fda00bd4c8
+"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.9, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.27.6, @babel/runtime@npm:^7.28.2, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7":
+ version: 7.28.3
+ resolution: "@babel/runtime@npm:7.28.3"
+ checksum: 10c0/b360f82c2c5114f2a062d4d143d7b4ec690094764853937110585a9497977aed66c102166d0e404766c274e02a50ffb8f6d77fef7251ecf3f607f0e03e6397bc
languageName: node
linkType: hard
-"@babel/template@npm:^7.27.1, @babel/template@npm:^7.3.3":
+"@babel/template@npm:^7.27.1, @babel/template@npm:^7.27.2, @babel/template@npm:^7.3.3":
version: 7.27.2
resolution: "@babel/template@npm:7.27.2"
dependencies:
@@ -2184,28 +2215,44 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/traverse@npm:7.27.1"
+"@babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.3":
+ version: 7.28.3
+ resolution: "@babel/traverse@npm:7.28.3"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
- "@babel/generator": "npm:^7.27.1"
- "@babel/parser": "npm:^7.27.1"
- "@babel/template": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
+ "@babel/generator": "npm:^7.28.3"
+ "@babel/helper-globals": "npm:^7.28.0"
+ "@babel/parser": "npm:^7.28.3"
+ "@babel/template": "npm:^7.27.2"
+ "@babel/types": "npm:^7.28.2"
debug: "npm:^4.3.1"
- globals: "npm:^11.1.0"
- checksum: 10c0/d912110037b03b1d70a2436cfd51316d930366a5f54252da2bced1ba38642f644f848240a951e5caf12f1ef6c40d3d96baa92ea6e84800f2e891c15e97b25d50
+ checksum: 10c0/26e95b29a46925b7b41255e03185b7e65b2c4987e14bbee7bbf95867fb19c69181f301bbe1c7b201d4fe0cce6aa0cbea0282dad74b3a0fef3d9058f6c76fdcb3
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.27.1, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
- version: 7.27.1
- resolution: "@babel/types@npm:7.27.1"
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
+ version: 7.28.2
+ resolution: "@babel/types@npm:7.28.2"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
- checksum: 10c0/ed736f14db2fdf0d36c539c8e06b6bb5e8f9649a12b5c0e1c516fed827f27ef35085abe08bf4d1302a4e20c9a254e762eed453bce659786d4a6e01ba26a91377
+ checksum: 10c0/24b11c9368e7e2c291fe3c1bcd1ed66f6593a3975f479cbb9dd7b8c8d8eab8a962b0d2fca616c043396ce82500ac7d23d594fbbbd013828182c01596370a0b10
+ languageName: node
+ linkType: hard
+
+"@base-org/account@npm:1.1.1":
+ version: 1.1.1
+ resolution: "@base-org/account@npm:1.1.1"
+ dependencies:
+ "@noble/hashes": "npm:1.4.0"
+ clsx: "npm:1.2.1"
+ eventemitter3: "npm:5.0.1"
+ idb-keyval: "npm:6.2.1"
+ ox: "npm:0.6.9"
+ preact: "npm:10.24.2"
+ viem: "npm:^2.31.7"
+ zustand: "npm:5.0.3"
+ checksum: 10c0/36912a6c8e22582f42dd6fe5139c8eb89b1b5523d966f50ce06d56221893d563acdeeb3a70bed71a109b8de3ca935a13ec9138eda348d57eed766e7861c51fe6
languageName: node
linkType: hard
@@ -2216,6 +2263,13 @@ __metadata:
languageName: node
linkType: hard
+"@borewit/text-codec@npm:^0.1.0":
+ version: 0.1.1
+ resolution: "@borewit/text-codec@npm:0.1.1"
+ checksum: 10c0/c92606b355111053f9db47d485c8679cc09a5be0eb2738aad5b922d3744465f2fce47144ffb27d5106fa431d1d2e5a2e0140d0a22351dccf49693098702c0274
+ languageName: node
+ linkType: hard
+
"@bytecodealliance/preview2-shim@npm:0.17.0":
version: 0.17.0
resolution: "@bytecodealliance/preview2-shim@npm:0.17.0"
@@ -2239,27 +2293,19 @@ __metadata:
languageName: node
linkType: hard
-"@coinbase/wallet-sdk@npm:4.3.0":
- version: 4.3.0
- resolution: "@coinbase/wallet-sdk@npm:4.3.0"
- dependencies:
- "@noble/hashes": "npm:^1.4.0"
- clsx: "npm:^1.2.1"
- eventemitter3: "npm:^5.0.1"
- preact: "npm:^10.24.2"
- checksum: 10c0/39e38ab6f84e34d8a61b9baf3fb69ad20b497d6844fe3f0cb1496e89bbb990066a6e8d68446f90054394eee840f3a452330ffbb015adabc34400f36a3ef03364
- languageName: node
- linkType: hard
-
-"@coinbase/wallet-sdk@npm:4.3.3":
- version: 4.3.3
- resolution: "@coinbase/wallet-sdk@npm:4.3.3"
+"@coinbase/wallet-sdk@npm:4.3.6":
+ version: 4.3.6
+ resolution: "@coinbase/wallet-sdk@npm:4.3.6"
dependencies:
- "@noble/hashes": "npm:^1.4.0"
- clsx: "npm:^1.2.1"
- eventemitter3: "npm:^5.0.1"
- preact: "npm:^10.24.2"
- checksum: 10c0/528cbc62f42c151c45c61c4c73e120d6b98d88f5858edbc8cf50f3d96030103b5b0ae53415e2aa80d455a1be660d1f0dc73672aa64636359bd55aa25b0faea60
+ "@noble/hashes": "npm:1.4.0"
+ clsx: "npm:1.2.1"
+ eventemitter3: "npm:5.0.1"
+ idb-keyval: "npm:6.2.1"
+ ox: "npm:0.6.9"
+ preact: "npm:10.24.2"
+ viem: "npm:^2.27.2"
+ zustand: "npm:5.0.3"
+ checksum: 10c0/ad5c7b124217ef191950c8c485d709d806f4a17eb039b1b8f325510cbc751b48c1e68acf8b44c3b24bb35682e44a6e3140eaba2d623166bf5a4e9dd4c4aef2e1
languageName: node
linkType: hard
@@ -2279,86 +2325,86 @@ __metadata:
languageName: node
linkType: hard
-"@csstools/color-helpers@npm:^5.0.2":
- version: 5.0.2
- resolution: "@csstools/color-helpers@npm:5.0.2"
- checksum: 10c0/bebaddb28b9eb58b0449edd5d0c0318fa88f3cb079602ee27e88c9118070d666dcc4e09a5aa936aba2fde6ba419922ade07b7b506af97dd7051abd08dfb2959b
+"@csstools/color-helpers@npm:^5.1.0":
+ version: 5.1.0
+ resolution: "@csstools/color-helpers@npm:5.1.0"
+ checksum: 10c0/b7f99d2e455cf1c9b41a67a5327d5d02888cd5c8802a68b1887dffef537d9d4bc66b3c10c1e62b40bbed638b6c1d60b85a232f904ed7b39809c4029cb36567db
languageName: node
linkType: hard
-"@csstools/css-calc@npm:^2.1.3":
- version: 2.1.3
- resolution: "@csstools/css-calc@npm:2.1.3"
+"@csstools/css-calc@npm:^2.1.3, @csstools/css-calc@npm:^2.1.4":
+ version: 2.1.4
+ resolution: "@csstools/css-calc@npm:2.1.4"
peerDependencies:
- "@csstools/css-parser-algorithms": ^3.0.4
- "@csstools/css-tokenizer": ^3.0.3
- checksum: 10c0/85f5b4f96d60f395d5f0108056b0ddee037b22d6deba448d74324b50f1c554de284f84715ebfac7b2888b78e09d20d02a7cd213ee7bdaa71011ea9b4eee3a251
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10c0/42ce5793e55ec4d772083808a11e9fb2dfe36db3ec168713069a276b4c3882205b3507c4680224c28a5d35fe0bc2d308c77f8f2c39c7c09aad8747708eb8ddd8
languageName: node
linkType: hard
"@csstools/css-color-parser@npm:^3.0.9":
- version: 3.0.9
- resolution: "@csstools/css-color-parser@npm:3.0.9"
+ version: 3.1.0
+ resolution: "@csstools/css-color-parser@npm:3.1.0"
dependencies:
- "@csstools/color-helpers": "npm:^5.0.2"
- "@csstools/css-calc": "npm:^2.1.3"
+ "@csstools/color-helpers": "npm:^5.1.0"
+ "@csstools/css-calc": "npm:^2.1.4"
peerDependencies:
- "@csstools/css-parser-algorithms": ^3.0.4
- "@csstools/css-tokenizer": ^3.0.3
- checksum: 10c0/acc026a6bd6d8c4c641fa5f9b4d77cd5dfa54c57c3278ae52329d96b5837723428dcb93c34db4062bbea2f45a98451119df06eaf39fd196aaf6368c59d799f20
+ "@csstools/css-parser-algorithms": ^3.0.5
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10c0/0e0c670ad54ec8ec4d9b07568b80defd83b9482191f5e8ca84ab546b7be6db5d7cc2ba7ac9fae54488b129a4be235d6183d3aab4416fec5e89351f73af4222c5
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^3.0.4":
- version: 3.0.4
- resolution: "@csstools/css-parser-algorithms@npm:3.0.4"
+ version: 3.0.5
+ resolution: "@csstools/css-parser-algorithms@npm:3.0.5"
peerDependencies:
- "@csstools/css-tokenizer": ^3.0.3
- checksum: 10c0/d411f07765e14eede17bccc6bd4f90ff303694df09aabfede3fd104b2dfacfd4fe3697cd25ddad14684c850328f3f9420ebfa9f78380892492974db24ae47dbd
+ "@csstools/css-tokenizer": ^3.0.4
+ checksum: 10c0/d9a1c888bd43849ae3437ca39251d5c95d2c8fd6b5ccdb7c45491dfd2c1cbdc3075645e80901d120e4d2c1993db9a5b2d83793b779dbbabcfb132adb142eb7f7
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^3.0.3":
- version: 3.0.3
- resolution: "@csstools/css-tokenizer@npm:3.0.3"
- checksum: 10c0/c31bf410e1244b942e71798e37c54639d040cb59e0121b21712b40015fced2b0fb1ffe588434c5f8923c9cd0017cfc1c1c8f3921abc94c96edf471aac2eba5e5
+ version: 3.0.4
+ resolution: "@csstools/css-tokenizer@npm:3.0.4"
+ checksum: 10c0/3b589f8e9942075a642213b389bab75a2d50d05d203727fcdac6827648a5572674caff07907eff3f9a2389d86a4ee47308fafe4f8588f4a77b7167c588d2559f
languageName: node
linkType: hard
-"@ecies/ciphers@npm:^0.2.2":
- version: 0.2.3
- resolution: "@ecies/ciphers@npm:0.2.3"
+"@ecies/ciphers@npm:^0.2.3":
+ version: 0.2.4
+ resolution: "@ecies/ciphers@npm:0.2.4"
peerDependencies:
"@noble/ciphers": ^1.0.0
- checksum: 10c0/a01bf75b1db89d34688d2784531bf4f8734e50f953ed8921383c04416a7e7eb8b5fb3ba6defddf55b46b0fb6722cec5c6462bdccbb64d31ef00468e9733a208e
+ checksum: 10c0/fc9a1be681b3509e6a828269d8c08dfe156276b5378a1f5fe85cd389fe43c46d6efad0438219b08a99951e918c32a9e07ce7b6d72adfd71b42dcae92a613286b
languageName: node
linkType: hard
-"@emnapi/core@npm:^1.4.0, @emnapi/core@npm:^1.4.3":
- version: 1.4.3
- resolution: "@emnapi/core@npm:1.4.3"
+"@emnapi/core@npm:^1.4.3":
+ version: 1.5.0
+ resolution: "@emnapi/core@npm:1.5.0"
dependencies:
- "@emnapi/wasi-threads": "npm:1.0.2"
+ "@emnapi/wasi-threads": "npm:1.1.0"
tslib: "npm:^2.4.0"
- checksum: 10c0/e30101d16d37ef3283538a35cad60e22095aff2403fb9226a35330b932eb6740b81364d525537a94eb4fb51355e48ae9b10d779c0dd1cdcd55d71461fe4b45c7
+ checksum: 10c0/52ba3485277706d92fa27d92b37e5b4f6ef0742c03ed68f8096f294c6bfa30f0752c82d4c2bfa14bff4dc30d63c9f71a8f9fb64a92743d00807d9e468fafd5ff
languageName: node
linkType: hard
-"@emnapi/runtime@npm:^1.4.0, @emnapi/runtime@npm:^1.4.3":
- version: 1.4.3
- resolution: "@emnapi/runtime@npm:1.4.3"
+"@emnapi/runtime@npm:^1.4.3":
+ version: 1.5.0
+ resolution: "@emnapi/runtime@npm:1.5.0"
dependencies:
tslib: "npm:^2.4.0"
- checksum: 10c0/3b7ab72d21cb4e034f07df80165265f85f445ef3f581d1bc87b67e5239428baa00200b68a7d5e37a0425c3a78320b541b07f76c5530f6f6f95336a6294ebf30b
+ checksum: 10c0/a85c9fc4e3af49cbe41e5437e5be2551392a931910cd0a5b5d3572532786927810c9cc1db11b232ec8f9657b33d4e6f7c4f985f1a052917d7cd703b5b2a20faa
languageName: node
linkType: hard
-"@emnapi/wasi-threads@npm:1.0.2":
- version: 1.0.2
- resolution: "@emnapi/wasi-threads@npm:1.0.2"
+"@emnapi/wasi-threads@npm:1.1.0":
+ version: 1.1.0
+ resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: "npm:^2.4.0"
- checksum: 10c0/f0621b1fc715221bd2d8332c0ca922617bcd77cdb3050eae50a124eb8923c54fa425d23982dc8f29d505c8798a62d1049bace8b0686098ff9dd82270e06d772e
+ checksum: 10c0/e6d54bf2b1e64cdd83d2916411e44e579b6ae35d5def0dea61a3c452d9921373044dff32a8b8473ae60c80692bdc39323e98b96a3f3d87ba6886b24dd0ef7ca1
languageName: node
linkType: hard
@@ -2475,8 +2521,8 @@ __metadata:
linkType: hard
"@emotion/styled@npm:^11.10.5, @emotion/styled@npm:^11.11.0, @emotion/styled@npm:^11.11.5":
- version: 11.14.0
- resolution: "@emotion/styled@npm:11.14.0"
+ version: 11.14.1
+ resolution: "@emotion/styled@npm:11.14.1"
dependencies:
"@babel/runtime": "npm:^7.18.3"
"@emotion/babel-plugin": "npm:^11.13.5"
@@ -2490,7 +2536,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 10c0/20aa5c488e4edecf63659212fc5ba1ccff2d3a66593fc8461de7cd5fe9192a741db357ffcd270a455bd61898d7f37cd5c84b4fd2b7974dade712badf7860ca9c
+ checksum: 10c0/2bbf8451df49c967e41fbcf8111a7f6dafe6757f0cc113f2f6e287206c45ac1d54dc8a95a483b7c0cee8614b8a8d08155bded6453d6721de1f8cc8d5b9216963
languageName: node
linkType: hard
@@ -2531,177 +2577,184 @@ __metadata:
languageName: node
linkType: hard
-"@esbuild/aix-ppc64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/aix-ppc64@npm:0.25.4"
+"@esbuild/aix-ppc64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/aix-ppc64@npm:0.25.9"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
-"@esbuild/android-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/android-arm64@npm:0.25.4"
+"@esbuild/android-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/android-arm64@npm:0.25.9"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/android-arm@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/android-arm@npm:0.25.4"
+"@esbuild/android-arm@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/android-arm@npm:0.25.9"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@esbuild/android-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/android-x64@npm:0.25.4"
+"@esbuild/android-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/android-x64@npm:0.25.9"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
-"@esbuild/darwin-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/darwin-arm64@npm:0.25.4"
+"@esbuild/darwin-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/darwin-arm64@npm:0.25.9"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/darwin-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/darwin-x64@npm:0.25.4"
+"@esbuild/darwin-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/darwin-x64@npm:0.25.9"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@esbuild/freebsd-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/freebsd-arm64@npm:0.25.4"
+"@esbuild/freebsd-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/freebsd-arm64@npm:0.25.9"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/freebsd-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/freebsd-x64@npm:0.25.4"
+"@esbuild/freebsd-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/freebsd-x64@npm:0.25.9"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/linux-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-arm64@npm:0.25.4"
+"@esbuild/linux-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-arm64@npm:0.25.9"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/linux-arm@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-arm@npm:0.25.4"
+"@esbuild/linux-arm@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-arm@npm:0.25.9"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@esbuild/linux-ia32@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-ia32@npm:0.25.4"
+"@esbuild/linux-ia32@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-ia32@npm:0.25.9"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
-"@esbuild/linux-loong64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-loong64@npm:0.25.4"
+"@esbuild/linux-loong64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-loong64@npm:0.25.9"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
-"@esbuild/linux-mips64el@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-mips64el@npm:0.25.4"
+"@esbuild/linux-mips64el@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-mips64el@npm:0.25.9"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
-"@esbuild/linux-ppc64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-ppc64@npm:0.25.4"
+"@esbuild/linux-ppc64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-ppc64@npm:0.25.9"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
-"@esbuild/linux-riscv64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-riscv64@npm:0.25.4"
+"@esbuild/linux-riscv64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-riscv64@npm:0.25.9"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
-"@esbuild/linux-s390x@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-s390x@npm:0.25.4"
+"@esbuild/linux-s390x@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-s390x@npm:0.25.9"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
-"@esbuild/linux-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/linux-x64@npm:0.25.4"
+"@esbuild/linux-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/linux-x64@npm:0.25.9"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
-"@esbuild/netbsd-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/netbsd-arm64@npm:0.25.4"
+"@esbuild/netbsd-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/netbsd-arm64@npm:0.25.9"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/netbsd-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/netbsd-x64@npm:0.25.4"
+"@esbuild/netbsd-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/netbsd-x64@npm:0.25.9"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/openbsd-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/openbsd-arm64@npm:0.25.4"
+"@esbuild/openbsd-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/openbsd-arm64@npm:0.25.9"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/openbsd-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/openbsd-x64@npm:0.25.4"
+"@esbuild/openbsd-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/openbsd-x64@npm:0.25.9"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/sunos-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/sunos-x64@npm:0.25.4"
+"@esbuild/openharmony-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/openharmony-arm64@npm:0.25.9"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/sunos-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/sunos-x64@npm:0.25.9"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
-"@esbuild/win32-arm64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/win32-arm64@npm:0.25.4"
+"@esbuild/win32-arm64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/win32-arm64@npm:0.25.9"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/win32-ia32@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/win32-ia32@npm:0.25.4"
+"@esbuild/win32-ia32@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/win32-ia32@npm:0.25.9"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@esbuild/win32-x64@npm:0.25.4":
- version: 0.25.4
- resolution: "@esbuild/win32-x64@npm:0.25.4"
+"@esbuild/win32-x64@npm:0.25.9":
+ version: 0.25.9
+ resolution: "@esbuild/win32-x64@npm:0.25.9"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -2724,17 +2777,6 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/config-array@npm:^0.20.0":
- version: 0.20.0
- resolution: "@eslint/config-array@npm:0.20.0"
- dependencies:
- "@eslint/object-schema": "npm:^2.1.6"
- debug: "npm:^4.3.1"
- minimatch: "npm:^3.1.2"
- checksum: 10c0/94bc5d0abb96dc5295ff559925242ff75a54eacfb3576677e95917e42f7175e1c4b87bf039aa2a872f949b4852ad9724bf2f7529aaea6b98f28bb3fca7f1d659
- languageName: node
- linkType: hard
-
"@eslint/config-array@npm:^0.21.0":
version: 0.21.0
resolution: "@eslint/config-array@npm:0.21.0"
@@ -2746,20 +2788,6 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/config-helpers@npm:^0.2.1":
- version: 0.2.2
- resolution: "@eslint/config-helpers@npm:0.2.2"
- checksum: 10c0/98f7cefe484bb754674585d9e73cf1414a3ab4fd0783c385465288d13eb1a8d8e7d7b0611259fc52b76b396c11a13517be5036d1f48eeb877f6f0a6b9c4f03ad
- languageName: node
- linkType: hard
-
-"@eslint/config-helpers@npm:^0.3.0":
- version: 0.3.0
- resolution: "@eslint/config-helpers@npm:0.3.0"
- checksum: 10c0/013ae7b189eeae8b30cc2ee87bc5c9c091a9cd615579003290eb28bebad5d78806a478e74ba10b3fe08ed66975b52af7d2cd4b4b43990376412b14e5664878c8
- languageName: node
- linkType: hard
-
"@eslint/config-helpers@npm:^0.3.1":
version: 0.3.1
resolution: "@eslint/config-helpers@npm:0.3.1"
@@ -2767,15 +2795,6 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/core@npm:^0.14.0":
- version: 0.14.0
- resolution: "@eslint/core@npm:0.14.0"
- dependencies:
- "@types/json-schema": "npm:^7.0.15"
- checksum: 10c0/259f279445834ba2d2cbcc18e9d43202a4011fde22f29d5fb802181d66e0f6f0bd1f6b4b4b46663451f545d35134498231bd5e656e18d9034a457824b92b7741
- languageName: node
- linkType: hard
-
"@eslint/core@npm:^0.15.2":
version: 0.15.2
resolution: "@eslint/core@npm:0.15.2"
@@ -2826,24 +2845,10 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/js@npm:9.28.0, @eslint/js@npm:^9.27.0":
- version: 9.28.0
- resolution: "@eslint/js@npm:9.28.0"
- checksum: 10c0/5a6759542490dd9f778993edfbc8d2f55168fd0f7336ceed20fe3870c65499d72fc0bca8d1ae00ea246b0923ea4cba2e0758a8a5507a3506ddcf41c92282abb8
- languageName: node
- linkType: hard
-
-"@eslint/js@npm:9.30.1, @eslint/js@npm:^9.30.1":
- version: 9.30.1
- resolution: "@eslint/js@npm:9.30.1"
- checksum: 10c0/17fc382a0deafdb1cadac1269d9c2f2464f025bde6e4d12fc4f4775eb9886b41340d4650b72e85a53423644fdc89bf59c987a852f27379ad25feecf2c5bbc1c9
- languageName: node
- linkType: hard
-
-"@eslint/js@npm:9.33.0, @eslint/js@npm:^9.33.0":
- version: 9.33.0
- resolution: "@eslint/js@npm:9.33.0"
- checksum: 10c0/4c42c9abde76a183b8e47205fd6c3116b058f82f07b6ad4de40de56cdb30a36e9ecd40efbea1b63a84d08c206aadbb0aa39a890197e1ad6455a8e542df98f186
+"@eslint/js@npm:9.34.0, @eslint/js@npm:^9.27.0, @eslint/js@npm:^9.30.1, @eslint/js@npm:^9.33.0":
+ version: 9.34.0
+ resolution: "@eslint/js@npm:9.34.0"
+ checksum: 10c0/53f1bfd2a374683d9382a6850354555f6e89a88416c34a5d34e9fbbaf717e97c2b06300e8f93e5eddba8bda8951ccab7f93a680e56ded1a3d21d526019e69bab
languageName: node
linkType: hard
@@ -2854,16 +2859,6 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/plugin-kit@npm:^0.3.1":
- version: 0.3.1
- resolution: "@eslint/plugin-kit@npm:0.3.1"
- dependencies:
- "@eslint/core": "npm:^0.14.0"
- levn: "npm:^0.4.1"
- checksum: 10c0/a75f0b5d38430318a551b83e27bee570747eb50beeb76b03f64b0e78c2c27ef3d284cfda3443134df028db3251719bc0850c105f778122f6ad762d5270ec8063
- languageName: node
- linkType: hard
-
"@eslint/plugin-kit@npm:^0.3.5":
version: 0.3.5
resolution: "@eslint/plugin-kit@npm:0.3.5"
@@ -3350,14 +3345,7 @@ __metadata:
languageName: node
linkType: hard
-"@faker-js/faker@npm:^9.7.0":
- version: 9.7.0
- resolution: "@faker-js/faker@npm:9.7.0"
- checksum: 10c0/5a95147cbf0ae52909aea18346edb159efefe5e9800048d906317f1ec872c657256b43140f194d1308cb58074e57c619140ee96d26f57623b2957e5e74bbb3b8
- languageName: node
- linkType: hard
-
-"@faker-js/faker@npm:^9.8.0, @faker-js/faker@npm:^9.9.0":
+"@faker-js/faker@npm:^9.7.0, @faker-js/faker@npm:^9.8.0, @faker-js/faker@npm:^9.9.0":
version: 9.9.0
resolution: "@faker-js/faker@npm:9.9.0"
checksum: 10c0/02107cb6915217b4831fa4b261603165972eb7f09d2ab2e1d4b75807df2d425a2bac8621cddbfdcc158c2c447c2bce2e14939d51c4a63fbd832df55452e7f73c
@@ -3372,9 +3360,9 @@ __metadata:
linkType: hard
"@fastify/busboy@npm:^3.1.1":
- version: 3.1.1
- resolution: "@fastify/busboy@npm:3.1.1"
- checksum: 10c0/d34b3640bc331f9951e27426769bdf90b1a5c238a22e4df39f9b18ec4cf793100a929ac0339f6643a4086f780f49177a528936d918dfd6c9dfe5a12566303215
+ version: 3.2.0
+ resolution: "@fastify/busboy@npm:3.2.0"
+ checksum: 10c0/3e4fb00a27e3149d1c68de8ff14007d2bbcbbc171a9d050d0a8772e836727329d4d3f130995ebaa19cf537d5d2f5ce2a88000366e6192e751457bfcc2125f351
languageName: node
linkType: hard
@@ -3392,48 +3380,48 @@ __metadata:
languageName: node
linkType: hard
-"@floating-ui/core@npm:^1.7.0":
- version: 1.7.0
- resolution: "@floating-ui/core@npm:1.7.0"
+"@floating-ui/core@npm:^1.7.3":
+ version: 1.7.3
+ resolution: "@floating-ui/core@npm:1.7.3"
dependencies:
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/f7e66a650ad8c73765edb39a7530d81fa990c08c172f03b6129030234d32bccd4401c29ded9c8a4e4135e9beac349c5608d94962fa08c2a2ae2dab7a6530550c
+ "@floating-ui/utils": "npm:^0.2.10"
+ checksum: 10c0/edfc23800122d81df0df0fb780b7328ae6c5f00efbb55bd48ea340f4af8c5b3b121ceb4bb81220966ab0f87b443204d37105abdd93d94846468be3243984144c
languageName: node
linkType: hard
-"@floating-ui/dom@npm:^1.0.0":
- version: 1.7.0
- resolution: "@floating-ui/dom@npm:1.7.0"
+"@floating-ui/dom@npm:^1.7.4":
+ version: 1.7.4
+ resolution: "@floating-ui/dom@npm:1.7.4"
dependencies:
- "@floating-ui/core": "npm:^1.7.0"
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/49a7f0fbef82ba2c2f0bde7bb4812b276ae431b59e6a81427283a55cfb36c0af9cc459cbeb0bb1a5cc3efca1a332f584e123e7b1a8f0a9c94a21989b09b8c060
+ "@floating-ui/core": "npm:^1.7.3"
+ "@floating-ui/utils": "npm:^0.2.10"
+ checksum: 10c0/da6166c25f9b0729caa9f498685a73a0e28251613b35d27db8de8014bc9d045158a23c092b405321a3d67c2064909b6e2a7e6c1c9cc0f62967dca5779f5aef30
languageName: node
linkType: hard
"@floating-ui/react-dom@npm:^2.0.8":
- version: 2.1.2
- resolution: "@floating-ui/react-dom@npm:2.1.2"
+ version: 2.1.6
+ resolution: "@floating-ui/react-dom@npm:2.1.6"
dependencies:
- "@floating-ui/dom": "npm:^1.0.0"
+ "@floating-ui/dom": "npm:^1.7.4"
peerDependencies:
react: ">=16.8.0"
react-dom: ">=16.8.0"
- checksum: 10c0/e855131c74e68cab505f7f44f92cd4e2efab1c125796db3116c54c0859323adae4bf697bf292ee83ac77b9335a41ad67852193d7aeace90aa2e1c4a640cafa60
+ checksum: 10c0/6654834a8e73ecbdbc6cad2ad8f7abc698ac7c1800ded4d61113525c591c03d2e3b59d3cf9205859221465ea38c87af4f9e6e204703c5b7a7e85332d1eef2e18
languageName: node
linkType: hard
-"@floating-ui/utils@npm:^0.2.9":
- version: 0.2.9
- resolution: "@floating-ui/utils@npm:0.2.9"
- checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f
+"@floating-ui/utils@npm:^0.2.10":
+ version: 0.2.10
+ resolution: "@floating-ui/utils@npm:0.2.10"
+ checksum: 10c0/e9bc2a1730ede1ee25843937e911ab6e846a733a4488623cd353f94721b05ec2c9ec6437613a2ac9379a94c2fd40c797a2ba6fa1df2716f5ce4aa6ddb1cf9ea4
languageName: node
linkType: hard
"@fontsource/inter@npm:^5.0.17":
- version: 5.2.5
- resolution: "@fontsource/inter@npm:5.2.5"
- checksum: 10c0/071e12a6a9c8cf6e95da43ba532e80eb8e35c1ffd2384c9c6555d7f222e306e22968f7c4fff5065b9f81503db622cf3de8a688fbc1cb0c04aa3803c797f6f6a0
+ version: 5.2.6
+ resolution: "@fontsource/inter@npm:5.2.6"
+ checksum: 10c0/7a1347608aab06e53665272ed41fd906ffa96c57b004e8aae91b98177bba97c54b60305d956254c4771387c383f9bdbd917006fb34c9721c020e6017d33e9a5c
languageName: node
linkType: hard
@@ -3444,16 +3432,28 @@ __metadata:
languageName: node
linkType: hard
-"@gerrit0/mini-shiki@npm:^3.7.0":
- version: 3.7.0
- resolution: "@gerrit0/mini-shiki@npm:3.7.0"
+"@gemini-wallet/core@npm:0.2.0":
+ version: 0.2.0
+ resolution: "@gemini-wallet/core@npm:0.2.0"
+ dependencies:
+ "@metamask/rpc-errors": "npm:7.0.2"
+ eventemitter3: "npm:5.0.1"
+ peerDependencies:
+ viem: ">=2.0.0"
+ checksum: 10c0/6232d521833b7cf39223f1cdf8d976aa6d3ba28c5d34c9f31fafbbf4ba9ef541e11e603bfae158c49b60bae2a45ceadf521064575ab23bd075065eb6ac568aab
+ languageName: node
+ linkType: hard
+
+"@gerrit0/mini-shiki@npm:^3.9.0":
+ version: 3.12.0
+ resolution: "@gerrit0/mini-shiki@npm:3.12.0"
dependencies:
- "@shikijs/engine-oniguruma": "npm:^3.7.0"
- "@shikijs/langs": "npm:^3.7.0"
- "@shikijs/themes": "npm:^3.7.0"
- "@shikijs/types": "npm:^3.7.0"
+ "@shikijs/engine-oniguruma": "npm:^3.12.0"
+ "@shikijs/langs": "npm:^3.12.0"
+ "@shikijs/themes": "npm:^3.12.0"
+ "@shikijs/types": "npm:^3.12.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
- checksum: 10c0/eb3f4900d841338077d839ebbc7f8722b13876a586cff7abc73295e956683724dd3371a9f990900184a2d069461965951b2604d677991badf3474262e7811384
+ checksum: 10c0/ec2dd4165a59b8f3a6c650b5e9004fcd63276ca86f1829577cddd0bec0571e5bb7ee4e7773353261916ab2618e8b8fc5662a6e7e237ba99f5dbf187fadc37ba7
languageName: node
linkType: hard
@@ -3496,8 +3496,8 @@ __metadata:
linkType: hard
"@google-cloud/storage@npm:^7.15.0":
- version: 7.16.0
- resolution: "@google-cloud/storage@npm:7.16.0"
+ version: 7.17.0
+ resolution: "@google-cloud/storage@npm:7.17.0"
dependencies:
"@google-cloud/paginator": "npm:^5.0.0"
"@google-cloud/projectify": "npm:^4.0.0"
@@ -3514,7 +3514,7 @@ __metadata:
retry-request: "npm:^7.0.0"
teeny-request: "npm:^9.0.0"
uuid: "npm:^8.0.0"
- checksum: 10c0/a2a3f341232415d702c8fb054ec2eecbb6908a613848d7279f0b36db9b556ad93444a77a2f2a4c4c6b3f8901b3e7b2350120408c89b17c0ee17b31867a261462
+ checksum: 10c0/6246c278bddfb4b20532cadd100cbeb85ee076b3c89c6cd347ca21f4b82c8985b9221e5e2bacdccb80b7726236027a437da7e553ea4b2c171371f8be50aa4f09
languageName: node
linkType: hard
@@ -3566,11 +3566,11 @@ __metadata:
linkType: hard
"@graphprotocol/graph-ts@npm:^0.38.0":
- version: 0.38.0
- resolution: "@graphprotocol/graph-ts@npm:0.38.0"
+ version: 0.38.1
+ resolution: "@graphprotocol/graph-ts@npm:0.38.1"
dependencies:
assemblyscript: "npm:0.27.31"
- checksum: 10c0/ab19712281db7ed4a1fe46bf294e1fd8aca2a39f5eff4db904fb9f068b4f1883aa253e5f27447fac35e8ae708a70f5c0d6ee6202d1540b126645fafa9a39afa4
+ checksum: 10c0/59bb49f0e24e673e9c68fffeb81e60ad8f5c1dc93133b3a1a2d9ee2480338d662638a6f93c30b6dc06abad20cb20d8c1cba1ed7638c58d95cfe6a5e9b6500e26
languageName: node
linkType: hard
@@ -3864,12 +3864,12 @@ __metadata:
linkType: hard
"@grpc/grpc-js@npm:^1.10.9":
- version: 1.13.3
- resolution: "@grpc/grpc-js@npm:1.13.3"
+ version: 1.13.4
+ resolution: "@grpc/grpc-js@npm:1.13.4"
dependencies:
"@grpc/proto-loader": "npm:^0.7.13"
"@js-sdsl/ordered-map": "npm:^4.4.2"
- checksum: 10c0/1d4e5504a62c5d65be783f6edce24d5fdd101b1d204813e07e6f512e5ca3485138c57caffe4c3cd237e4ed107168ad29237c2629a52e4639b0b2d2947c02bf01
+ checksum: 10c0/ecdb99efbe540d8b261ca53e4be224fb4683fb22c6ab1b575d2f4ca34471fc7f221b58f718001a6d157c54237cc482514766233968f5de50e358f061600a885b
languageName: node
linkType: hard
@@ -3903,10 +3903,10 @@ __metadata:
languageName: node
linkType: hard
-"@hcaptcha/loader@npm:^2.0.0":
- version: 2.0.0
- resolution: "@hcaptcha/loader@npm:2.0.0"
- checksum: 10c0/c69c8e62ccf41cc5cce8f25721b9bd8284e201da608022476dc6d69afbd70512a6f272dd2bfe558c4b5fdbc0ee20fb5f062033c4d556e6d523ecb2448203298f
+"@hcaptcha/loader@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "@hcaptcha/loader@npm:2.0.1"
+ checksum: 10c0/04b6cd32fe1a61666cd8ab0a0f400ce5e45ab1f51ec264048452c5c0d14e991b4c47770f1707b62a25e2686581a1357f66b43680321bcf05fb6c0bf94c825039
languageName: node
linkType: hard
@@ -3921,19 +3921,19 @@ __metadata:
linkType: hard
"@hcaptcha/react-hcaptcha@npm:^1.10.1":
- version: 1.12.0
- resolution: "@hcaptcha/react-hcaptcha@npm:1.12.0"
+ version: 1.12.1
+ resolution: "@hcaptcha/react-hcaptcha@npm:1.12.1"
dependencies:
"@babel/runtime": "npm:^7.17.9"
- "@hcaptcha/loader": "npm:^2.0.0"
+ "@hcaptcha/loader": "npm:^2.0.1"
peerDependencies:
react: ">= 16.3.0"
react-dom: ">= 16.3.0"
- checksum: 10c0/58fddf7cbbeb1c9d784a90a4ee76604efd8d0c968d1d256f72d112d95c8d68bbb1255dd4184148e7e43e38491c5614b3747f4d17393a17d320e28935da47f8e8
+ checksum: 10c0/033eb10278e7389ac959dffc3f332bc894f8af55e0f236c5676f93d4eb755b1ac9d7c89594b53871a68e22c62e6556e906ca4ebf513fda7d08c3fa287611eacd
languageName: node
linkType: hard
-"@hookform/resolvers@npm:^5.0.1":
+"@hookform/resolvers@npm:~5.0.1":
version: 5.0.1
resolution: "@hookform/resolvers@npm:5.0.1"
dependencies:
@@ -4033,7 +4033,7 @@ __metadata:
use-debounce: "npm:^10.0.2"
vite: "npm:^6.2.4"
vite-plugin-node-polyfills: "npm:^0.23.0"
- zod: "npm:^3.23.8"
+ zod: "npm:~3.24.4"
zustand: "npm:^4.5.4"
languageName: unknown
linkType: soft
@@ -4273,7 +4273,7 @@ __metadata:
"@fontsource/inter": "npm:^5.0.17"
"@fontsource/roboto": "npm:^5.2.6"
"@hcaptcha/react-hcaptcha": "npm:^0.3.6"
- "@hookform/resolvers": "npm:^5.0.1"
+ "@hookform/resolvers": "npm:~5.0.1"
"@human-protocol/sdk": "workspace:*"
"@mui/icons-material": "npm:^7.0.1"
"@mui/material": "npm:^5.16.7"
@@ -4328,7 +4328,7 @@ __metadata:
vite-plugin-svgr: "npm:^4.2.0"
vitest: "npm:^3.1.1"
wagmi: "npm:^2.15.6"
- zod: "npm:^3.22.4"
+ zod: "npm:~3.24.4"
zustand: "npm:^4.5.0"
languageName: unknown
linkType: soft
@@ -4751,13 +4751,13 @@ __metadata:
languageName: node
linkType: hard
-"@inquirer/checkbox@npm:^4.1.5":
- version: 4.1.5
- resolution: "@inquirer/checkbox@npm:4.1.5"
+"@inquirer/checkbox@npm:^4.2.2":
+ version: 4.2.2
+ resolution: "@inquirer/checkbox@npm:4.2.2"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/figures": "npm:^1.0.11"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/figures": "npm:^1.0.13"
+ "@inquirer/type": "npm:^3.0.8"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
@@ -4765,31 +4765,31 @@ __metadata:
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/b984fb3ce8af34c327f3a85adcfe9fbd9eaac0c689bb9af79a5d55d508acb01de329747e8c923c9f4962e4006c353ed2dbe79e3fc9ae0f85f5851427dbed75ed
+ checksum: 10c0/d5861d1e6c18ce263b2d88da5c8071857e65e5815409b062919fcfc489598615ccc7df1d32c7348dc2587aed2053ee045cf770612a73ef8a0b08374f969ed388
languageName: node
linkType: hard
-"@inquirer/confirm@npm:^5.1.9":
- version: 5.1.9
- resolution: "@inquirer/confirm@npm:5.1.9"
+"@inquirer/confirm@npm:^5.1.16":
+ version: 5.1.16
+ resolution: "@inquirer/confirm@npm:5.1.16"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/e35c134303f8151074479d6704c048676b2684debfde18a46ff0fb7585a3ee31dea551899ddcb48169fbef5dfe64c1948d2d8ac17a6939bedd31bb54c39bbea4
+ checksum: 10c0/9a54171554404bfc89f2a065bb89282ca7cc69046956943e348c29a6a7c4d263dfbcbb46ad115aef616866083eb42130d05424a4a8ef3b30777a912e7ae20fec
languageName: node
linkType: hard
-"@inquirer/core@npm:^10.1.10":
- version: 10.1.10
- resolution: "@inquirer/core@npm:10.1.10"
+"@inquirer/core@npm:^10.2.0":
+ version: 10.2.0
+ resolution: "@inquirer/core@npm:10.2.0"
dependencies:
- "@inquirer/figures": "npm:^1.0.11"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/figures": "npm:^1.0.13"
+ "@inquirer/type": "npm:^3.0.8"
ansi-escapes: "npm:^4.3.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^2.0.0"
@@ -4801,158 +4801,173 @@ __metadata:
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/8d0a3b725e42e40efbdc6ed087283795f1e36e642b119dd7dd3cbf31fce74bdbdb1b987da16159cd2475f45b2ede7e33293ae92bad3ac481832889c230df3fc0
+ checksum: 10c0/6dc93634dc6005bb7c58522cd80bbf8fb5f756f104445a1916ed7a00dad99e10165a559f5b13e6d141ae744dbe4a5b9e405e10c5986ef7859988de191b3b71f3
languageName: node
linkType: hard
-"@inquirer/editor@npm:^4.2.10":
- version: 4.2.10
- resolution: "@inquirer/editor@npm:4.2.10"
+"@inquirer/editor@npm:^4.2.18":
+ version: 4.2.18
+ resolution: "@inquirer/editor@npm:4.2.18"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
- external-editor: "npm:^3.1.0"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/external-editor": "npm:^1.0.1"
+ "@inquirer/type": "npm:^3.0.8"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/b0213ad3ef45bc30427def4742db22126a1e6a59923033d21cae216276d8cf85d2af8abe432e5567ea24a7f6a31e23e7014e31308405cde684060b974e454a22
+ checksum: 10c0/a8b48bc692a566cbbf6c3ea3d095d26bef14abfba631958f61cea85b54bcd7a4dbd7aa164a4752f48d7317340ebe126ac4ef6593b12ad6b3b729d4ec99df1fc1
languageName: node
linkType: hard
-"@inquirer/expand@npm:^4.0.12":
- version: 4.0.12
- resolution: "@inquirer/expand@npm:4.0.12"
+"@inquirer/expand@npm:^4.0.18":
+ version: 4.0.18
+ resolution: "@inquirer/expand@npm:4.0.18"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/f7abfc09ef942b63504677be5cf6fc443fb8090b5d43f7d2fe09983215cc01c6d82351cd1b596e90723b382a0931c9344d3280d54acf47d898782f4af2030b2e
+ checksum: 10c0/9fe1daef1efefdc4760bfe0317e0a765a8defe2f9453230938886ea06abd65c6a7a3eb72dc90ba5bbb82709f6703a271b8f7bb97283b825763a4cd1f68efb8a8
languageName: node
linkType: hard
-"@inquirer/figures@npm:^1.0.11":
- version: 1.0.11
- resolution: "@inquirer/figures@npm:1.0.11"
- checksum: 10c0/6270e24eebbe42bbc4e7f8e761e906be66b4896787f31ab3e7484ad271c8edc90bce4ec20e232a5da447aee4fc73803397b2dda8cf645f4f7eea83e773b44e1e
+"@inquirer/external-editor@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "@inquirer/external-editor@npm:1.0.1"
+ dependencies:
+ chardet: "npm:^2.1.0"
+ iconv-lite: "npm:^0.6.3"
+ peerDependencies:
+ "@types/node": ">=18"
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ checksum: 10c0/bdac4395e0bba7065d39b141d618bfc06369f246c402c511396a5238baf2657f3038ccba8438521a49e5cb602f4302b9d1f46b52b647b27af2c9911720022118
languageName: node
linkType: hard
-"@inquirer/input@npm:^4.1.9":
- version: 4.1.9
- resolution: "@inquirer/input@npm:4.1.9"
+"@inquirer/figures@npm:^1.0.13":
+ version: 1.0.13
+ resolution: "@inquirer/figures@npm:1.0.13"
+ checksum: 10c0/23700a4a0627963af5f51ef4108c338ae77bdd90393164b3fdc79a378586e1f5531259882b7084c690167bf5a36e83033e45aca0321570ba810890abe111014f
+ languageName: node
+ linkType: hard
+
+"@inquirer/input@npm:^4.2.2":
+ version: 4.2.2
+ resolution: "@inquirer/input@npm:4.2.2"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/db2e661ee482f3f27bf8cb77f054f99aba30291bd24d63b28db62204c4c5efc496199a9ddc03d01e0f6e6455d6967efb3ef92d2cd91e672905948c8c978c67a1
+ checksum: 10c0/7d8f202eb0e970841005026634596ffdb3b68a9c6b599841ad46b25841e277d2950582e5eeddd69b168d7ef52631cf15782922844731d01d3808a018461d8f98
languageName: node
linkType: hard
-"@inquirer/number@npm:^3.0.12":
- version: 3.0.12
- resolution: "@inquirer/number@npm:3.0.12"
+"@inquirer/number@npm:^3.0.18":
+ version: 3.0.18
+ resolution: "@inquirer/number@npm:3.0.18"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/e40726e1c60ba48a374b4867d212bd5e14cb12daae97a6536095906246ba6af91ec7fa68e347ba52607ba5bd84f9e804768d12fbc1250b2cac814187fb5e9628
+ checksum: 10c0/dbaead7813bba1978ef429eb485bb02e55e9047194f2337313592546b4504b06ea18b37919e23ea53388f5314dc96ea038e4599c7f396344910b17b3d9a159cb
languageName: node
linkType: hard
-"@inquirer/password@npm:^4.0.12":
- version: 4.0.12
- resolution: "@inquirer/password@npm:4.0.12"
+"@inquirer/password@npm:^4.0.18":
+ version: 4.0.18
+ resolution: "@inquirer/password@npm:4.0.18"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
ansi-escapes: "npm:^4.3.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/03257985bbbd813c4f0c412effb691737517e348ca2590558864fe09877080daf90eb9910a60d097048fce9cf0c56a900e8f099854a9ae21512ceaadbd986e01
+ checksum: 10c0/7d05940633f74d1fa3850884ce71b32c3790bc421439cd77366553df39ec910f64dcdb2084776ee9d9a10d248390801700113ca3d8b0b02b1517531109798814
languageName: node
linkType: hard
-"@inquirer/prompts@npm:^7.5.0":
- version: 7.5.0
- resolution: "@inquirer/prompts@npm:7.5.0"
- dependencies:
- "@inquirer/checkbox": "npm:^4.1.5"
- "@inquirer/confirm": "npm:^5.1.9"
- "@inquirer/editor": "npm:^4.2.10"
- "@inquirer/expand": "npm:^4.0.12"
- "@inquirer/input": "npm:^4.1.9"
- "@inquirer/number": "npm:^3.0.12"
- "@inquirer/password": "npm:^4.0.12"
- "@inquirer/rawlist": "npm:^4.1.0"
- "@inquirer/search": "npm:^3.0.12"
- "@inquirer/select": "npm:^4.2.0"
+"@inquirer/prompts@npm:^7.8.3":
+ version: 7.8.4
+ resolution: "@inquirer/prompts@npm:7.8.4"
+ dependencies:
+ "@inquirer/checkbox": "npm:^4.2.2"
+ "@inquirer/confirm": "npm:^5.1.16"
+ "@inquirer/editor": "npm:^4.2.18"
+ "@inquirer/expand": "npm:^4.0.18"
+ "@inquirer/input": "npm:^4.2.2"
+ "@inquirer/number": "npm:^3.0.18"
+ "@inquirer/password": "npm:^4.0.18"
+ "@inquirer/rawlist": "npm:^4.1.6"
+ "@inquirer/search": "npm:^3.1.1"
+ "@inquirer/select": "npm:^4.3.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/40faf282ec35a2b89258c65f8e55f1e9193a0f8bdfbb724641ce7c7036b4e995a84f685d311807ed18885b8e0231c278a40e90469d829eb165b4993b8edf101b
+ checksum: 10c0/bf04aa108eeed602287eda26c646b6407cdd2db3d4a2175d1e88f1325987b5aeb7741af3f2ad82035811d74efa5c561d78ec642423060723d93b2275e669f0bb
languageName: node
linkType: hard
-"@inquirer/rawlist@npm:^4.1.0":
- version: 4.1.0
- resolution: "@inquirer/rawlist@npm:4.1.0"
+"@inquirer/rawlist@npm:^4.1.6":
+ version: 4.1.6
+ resolution: "@inquirer/rawlist@npm:4.1.6"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/type": "npm:^3.0.8"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/0e92e8ee7eebd6b6ba7a81d968701f398dd372638f51dd8e3cb1fd3a03520bc0f713e112488d37fdb813f18928f338d82527c575e18a9bebde7ac3273045898c
+ checksum: 10c0/0589a3098de545cf83450b2ce59623865e06e435a773240a5f6f47c20602a13ea3e9bf85849f39e57335e4faace510182c0251e88de0a3cc8d23b4f2270772e3
languageName: node
linkType: hard
-"@inquirer/search@npm:^3.0.12":
- version: 3.0.12
- resolution: "@inquirer/search@npm:3.0.12"
+"@inquirer/search@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "@inquirer/search@npm:3.1.1"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/figures": "npm:^1.0.11"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/figures": "npm:^1.0.13"
+ "@inquirer/type": "npm:^3.0.8"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/ef764f96b561b48e4d9a99716789d1fc0941d40884d1c9fea715c304360b46ec8c6e3edf603f7425a27d7743915564f405a3ccd1a72f0379a714be22887fe6ff
+ checksum: 10c0/31f5e74d200f1c40b47099ebb74f5138b0900c99afe1b98b4a3d60e286cd8ca062ed5a68a5d1394cb6b8584cac2931f2b584241cf39dc34b83dc4ce8eb7daddd
languageName: node
linkType: hard
-"@inquirer/select@npm:^4.2.0":
- version: 4.2.0
- resolution: "@inquirer/select@npm:4.2.0"
+"@inquirer/select@npm:^4.3.2":
+ version: 4.3.2
+ resolution: "@inquirer/select@npm:4.3.2"
dependencies:
- "@inquirer/core": "npm:^10.1.10"
- "@inquirer/figures": "npm:^1.0.11"
- "@inquirer/type": "npm:^3.0.6"
+ "@inquirer/core": "npm:^10.2.0"
+ "@inquirer/figures": "npm:^1.0.13"
+ "@inquirer/type": "npm:^3.0.8"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
@@ -4960,48 +4975,64 @@ __metadata:
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/b3cfab393d54e48012336710b8e9267a0dd5551878a7727800da3d78602398720aab8777d5687b2138261fb731b0079d1c3ec0f4d0fee194bb1c4496c97b340b
+ checksum: 10c0/48aaec29e21fd19b9b3045ad01d7fbe46aa9ac828adc5b8e5b8e5055daad47e0d1134cde40281e9e639bd963c30756ca729c20fcb629e3053ac411020cf4bc78
languageName: node
linkType: hard
-"@inquirer/type@npm:^3.0.6":
- version: 3.0.6
- resolution: "@inquirer/type@npm:3.0.6"
+"@inquirer/type@npm:^3.0.8":
+ version: 3.0.8
+ resolution: "@inquirer/type@npm:3.0.8"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/92382c1b046559ddb16c53e1353a900a43266566a0d73902e5325433c640b6aaeaf3e34cc5b2a68fd089ff5d8add914d0b9875cdec64f7a09313f9c4420b021d
+ checksum: 10c0/1171bffb9ea0018b12ec4f46a7b485f7e2a328e620e89f3b03f2be8c25889e5b9e62daca3ea10ed040a71d847066c4d9879dc1fea8aa5690ebbc968d3254a5ac
languageName: node
linkType: hard
"@ipld/dag-cbor@npm:^9.0.0":
- version: 9.2.2
- resolution: "@ipld/dag-cbor@npm:9.2.2"
+ version: 9.2.4
+ resolution: "@ipld/dag-cbor@npm:9.2.4"
dependencies:
cborg: "npm:^4.0.0"
multiformats: "npm:^13.1.0"
- checksum: 10c0/de554379adf27d6c3dc5ed706cbceb319ef7c54646c53dca6f85a840eeb4d08895c722ee08c92022b396090050f275a44ce5b07c7bdb87e105ebb0f84ad3e2ca
+ checksum: 10c0/185948cd0c5129bfa4da134ec4025748a718072698d83a6969f0b369fab3b4f3b833a99788fc7d04b05ea000b49f5933867e7f0d71fd083b23dd10e30da522e1
languageName: node
linkType: hard
"@ipld/dag-json@npm:^10.0.0":
- version: 10.2.3
- resolution: "@ipld/dag-json@npm:10.2.3"
+ version: 10.2.5
+ resolution: "@ipld/dag-json@npm:10.2.5"
dependencies:
cborg: "npm:^4.0.0"
multiformats: "npm:^13.1.0"
- checksum: 10c0/0ea69085fb1733b36f52c48428465a20105bc37b5398ff85348b397dee966a6bf243f14322c1d6efd4172ff028acee06d5390dca350f450273db177302b812c5
+ checksum: 10c0/5b807691fc78c01106389f621f54a2293bdaac2b90d5b997310731e368b0c37c9f9b5dc44abca50f6e45ffeacc1f07f91a763adc7339333990d1d5e1b941a58f
languageName: node
linkType: hard
"@ipld/dag-pb@npm:^4.0.0":
- version: 4.1.3
- resolution: "@ipld/dag-pb@npm:4.1.3"
+ version: 4.1.5
+ resolution: "@ipld/dag-pb@npm:4.1.5"
dependencies:
multiformats: "npm:^13.1.0"
- checksum: 10c0/c785c8e291c7c417618b43381a57672feda61e1fed8aaf3365e306f29b31d4770cf54f68a4de4fac03775a768d93c2be11690a008e0856851a5b64a4b7d27efc
+ checksum: 10c0/be650b3f13239802191a0ff3f41908e4ec9acaa59c3f15f48b3a81c6eb49597f7531308d098518bb3aec7ceb60f43bde675258db422dbcb6b62f3d17f121e408
+ languageName: node
+ linkType: hard
+
+"@isaacs/balanced-match@npm:^4.0.1":
+ version: 4.0.1
+ resolution: "@isaacs/balanced-match@npm:4.0.1"
+ checksum: 10c0/7da011805b259ec5c955f01cee903da72ad97c5e6f01ca96197267d3f33103d5b2f8a1af192140f3aa64526c593c8d098ae366c2b11f7f17645d12387c2fd420
+ languageName: node
+ linkType: hard
+
+"@isaacs/brace-expansion@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "@isaacs/brace-expansion@npm:5.0.0"
+ dependencies:
+ "@isaacs/balanced-match": "npm:^4.0.1"
+ checksum: 10c0/b4d4812f4be53afc2c5b6c545001ff7a4659af68d4484804e9d514e183d20269bb81def8682c01a22b17c4d6aed14292c8494f7d2ac664e547101c1a905aa977
languageName: node
linkType: hard
@@ -5278,14 +5309,13 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/gen-mapping@npm:^0.3.5":
- version: 0.3.8
- resolution: "@jridgewell/gen-mapping@npm:0.3.8"
+"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
+ version: 0.3.13
+ resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
- "@jridgewell/set-array": "npm:^1.2.1"
- "@jridgewell/sourcemap-codec": "npm:^1.4.10"
+ "@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a
+ checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
languageName: node
linkType: hard
@@ -5296,27 +5326,20 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/set-array@npm:^1.2.1":
- version: 1.2.1
- resolution: "@jridgewell/set-array@npm:1.2.1"
- checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
- languageName: node
- linkType: hard
-
"@jridgewell/source-map@npm:^0.3.3":
- version: 0.3.6
- resolution: "@jridgewell/source-map@npm:0.3.6"
+ version: 0.3.11
+ resolution: "@jridgewell/source-map@npm:0.3.11"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
- checksum: 10c0/6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04
+ checksum: 10c0/50a4fdafe0b8f655cb2877e59fe81320272eaa4ccdbe6b9b87f10614b2220399ae3e05c16137a59db1f189523b42c7f88bd097ee991dbd7bc0e01113c583e844
languageName: node
linkType: hard
-"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15, @jridgewell/sourcemap-codec@npm:^1.5.0":
- version: 1.5.0
- resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
- checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
+"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
+ version: 1.5.5
+ resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
+ checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
@@ -5330,13 +5353,13 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
- version: 0.3.25
- resolution: "@jridgewell/trace-mapping@npm:0.3.25"
+"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.28":
+ version: 0.3.30
+ resolution: "@jridgewell/trace-mapping@npm:0.3.30"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
- checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
+ checksum: 10c0/3a1516c10f44613b9ba27c37a02ff8f410893776b2b3dad20a391b51b884dd60f97bbb56936d65d2ff8fe978510a0000266654ab8426bdb9ceb5fb4585b19e23
languageName: node
linkType: hard
@@ -5354,73 +5377,84 @@ __metadata:
languageName: node
linkType: hard
-"@libp2p/crypto@npm:^5.0.0, @libp2p/crypto@npm:^5.1.1":
- version: 5.1.1
- resolution: "@libp2p/crypto@npm:5.1.1"
+"@libp2p/crypto@npm:^5.0.0, @libp2p/crypto@npm:^5.1.8":
+ version: 5.1.8
+ resolution: "@libp2p/crypto@npm:5.1.8"
dependencies:
- "@libp2p/interface": "npm:^2.9.0"
- "@noble/curves": "npm:^1.7.0"
- "@noble/hashes": "npm:^1.6.1"
- multiformats: "npm:^13.3.1"
+ "@libp2p/interface": "npm:^2.11.0"
+ "@noble/curves": "npm:^1.9.1"
+ "@noble/hashes": "npm:^1.8.0"
+ multiformats: "npm:^13.3.6"
protons-runtime: "npm:^5.5.0"
uint8arraylist: "npm:^2.4.8"
uint8arrays: "npm:^5.1.0"
- checksum: 10c0/8f2eccd1ff54b9832a78280b556dac2bb129f5c964e86ccbb75fe5b5973031d8b7be89bf590780d2196d5c5828af96bdd9580d5e9869a8dd26e800a7496ba344
+ checksum: 10c0/823038ec1f5656cccddd240ca7cb61a8e780b907bbebded536db4479f178ce744a374d9dff4d82129b26d87370a4f901a793630b50ed54917db3bb4d469c5343
languageName: node
linkType: hard
-"@libp2p/interface@npm:^2.0.0, @libp2p/interface@npm:^2.9.0":
- version: 2.9.0
- resolution: "@libp2p/interface@npm:2.9.0"
+"@libp2p/interface@npm:^2.0.0, @libp2p/interface@npm:^2.11.0":
+ version: 2.11.0
+ resolution: "@libp2p/interface@npm:2.11.0"
dependencies:
- "@multiformats/multiaddr": "npm:^12.3.3"
+ "@multiformats/dns": "npm:^1.0.6"
+ "@multiformats/multiaddr": "npm:^12.4.4"
it-pushable: "npm:^3.2.3"
it-stream-types: "npm:^2.0.2"
- multiformats: "npm:^13.3.1"
+ main-event: "npm:^1.0.1"
+ multiformats: "npm:^13.3.6"
progress-events: "npm:^1.0.1"
uint8arraylist: "npm:^2.4.8"
- checksum: 10c0/943c8eaabea51e47c6455894808a17b1f5eaf756fe03e9b51ad6cdb1c572f08f827d18982124ee436b8addeddec978089be7cbf502346a44787e962279197230
+ checksum: 10c0/d156bf82182bf2ec9eeba0041cfbfeb86f9d7ac6f362f5b331fc7463c9b21704938d38a2f37e8a56202540c56cdeb36309f598ba62406267bb933572228d6c1b
languageName: node
linkType: hard
"@libp2p/logger@npm:^5.0.0":
- version: 5.1.15
- resolution: "@libp2p/logger@npm:5.1.15"
+ version: 5.2.0
+ resolution: "@libp2p/logger@npm:5.2.0"
dependencies:
- "@libp2p/interface": "npm:^2.9.0"
- "@multiformats/multiaddr": "npm:^12.3.3"
+ "@libp2p/interface": "npm:^2.11.0"
+ "@multiformats/multiaddr": "npm:^12.4.4"
interface-datastore: "npm:^8.3.1"
- multiformats: "npm:^13.3.1"
+ multiformats: "npm:^13.3.6"
weald: "npm:^1.0.4"
- checksum: 10c0/7ad649aa496baaa12827a127805349b2dd92f16410d5e113bfbfafb9684c824e27b7398c33044aa0d53c4004fe79e4ef4de1a87d082a3b7f5bca71f5167286c8
+ checksum: 10c0/ef72bbfda83fbca61c012da981ed42975cc3bbe77b8d48f803837721e8cb59ca894c922a8fb48ea40ad19d6e5712418482907a98d0639b8ee44b53139a377e0f
languageName: node
linkType: hard
"@libp2p/peer-id@npm:^5.0.0":
- version: 5.1.2
- resolution: "@libp2p/peer-id@npm:5.1.2"
+ version: 5.1.9
+ resolution: "@libp2p/peer-id@npm:5.1.9"
dependencies:
- "@libp2p/crypto": "npm:^5.1.1"
- "@libp2p/interface": "npm:^2.9.0"
- multiformats: "npm:^13.3.1"
+ "@libp2p/crypto": "npm:^5.1.8"
+ "@libp2p/interface": "npm:^2.11.0"
+ multiformats: "npm:^13.3.6"
uint8arrays: "npm:^5.1.0"
- checksum: 10c0/6654afec15357890a2f0745f2abc5eb009e244ff7af3d5280631093fd5491837e82d759e0c79067ecd538d80584378012d188f7686a72cce42799ee67b3f3b5d
+ checksum: 10c0/5b4da2b53970ed646003a5d223fff608bc1d1b42e6f3d9397f3f0c9c78f3f10798f7def8dc8bafc1b5025b9c712cbd1f78d590dba64e29e34b9640a565c525b8
languageName: node
linkType: hard
-"@lit-labs/ssr-dom-shim@npm:^1.2.0":
- version: 1.3.0
- resolution: "@lit-labs/ssr-dom-shim@npm:1.3.0"
- checksum: 10c0/743a9b295ef2f186712f08883da553c9990be291409615309c99aa4946cfe440a184e4213c790c24505c80beb86b9cfecf10b5fb30ce17c83698f8424f48678d
+"@lit-labs/ssr-dom-shim@npm:^1.4.0":
+ version: 1.4.0
+ resolution: "@lit-labs/ssr-dom-shim@npm:1.4.0"
+ checksum: 10c0/eb8b4c6ed83db48e2f2c8c038f88e0ac302214918e5c1209458cb82a35ce27ce586100c5692885b2c5520f6941b2c3512f26c4d7b7dd48f13f17f1668553395a
languageName: node
linkType: hard
-"@lit/reactive-element@npm:^2.0.0, @lit/reactive-element@npm:^2.1.0":
- version: 2.1.0
- resolution: "@lit/reactive-element@npm:2.1.0"
+"@lit/react@npm:1.0.8":
+ version: 1.0.8
+ resolution: "@lit/react@npm:1.0.8"
+ peerDependencies:
+ "@types/react": 17 || 18 || 19
+ checksum: 10c0/18bf3eb6584fa989e0ad40988b349a4401da1cecd5bf1c6edfc1c5caed80037852a4ebe5685b04941e5b28ccf93e740676dae32773d7ae44b1479b96538392b1
+ languageName: node
+ linkType: hard
+
+"@lit/reactive-element@npm:^2.1.0":
+ version: 2.1.1
+ resolution: "@lit/reactive-element@npm:2.1.1"
dependencies:
- "@lit-labs/ssr-dom-shim": "npm:^1.2.0"
- checksum: 10c0/3cd61c4e7cc8effeb2c246d5dada8fbe0a730e9e0dd488eb38c91a4f63b773e3b7f86f8384051677298e73de470c7ca6b5634df3ca190b307f8bb8e0d51bb91c
+ "@lit-labs/ssr-dom-shim": "npm:^1.4.0"
+ checksum: 10c0/200d72c3d1bb8babc88123f3684e52cf490ec20cc7974002d666b092afa18e4a7c1ca15883c84c0b8671361a9875905eb18c1f03d20ecbbbaefdaec6e0c7c4eb
languageName: node
linkType: hard
@@ -5543,6 +5577,16 @@ __metadata:
languageName: node
linkType: hard
+"@metamask/rpc-errors@npm:7.0.2":
+ version: 7.0.2
+ resolution: "@metamask/rpc-errors@npm:7.0.2"
+ dependencies:
+ "@metamask/utils": "npm:^11.0.1"
+ fast-safe-stringify: "npm:^2.0.6"
+ checksum: 10c0/ff9f96ea89fdd4f9bbb4c04efb24a47051c5ba3763fe570b0abce5a74726b0991aeb5c7baae09ec4555ccb2415c53858a5e40e641cf2e4e8f01dc1886291c062
+ languageName: node
+ linkType: hard
+
"@metamask/rpc-errors@npm:^6.2.1":
version: 6.4.0
resolution: "@metamask/rpc-errors@npm:6.4.0"
@@ -5629,6 +5673,25 @@ __metadata:
languageName: node
linkType: hard
+"@metamask/utils@npm:^11.0.1":
+ version: 11.6.0
+ resolution: "@metamask/utils@npm:11.6.0"
+ dependencies:
+ "@ethereumjs/tx": "npm:^4.2.0"
+ "@metamask/superstruct": "npm:^3.1.0"
+ "@noble/hashes": "npm:^1.3.1"
+ "@scure/base": "npm:^1.1.3"
+ "@types/debug": "npm:^4.1.7"
+ "@types/lodash": "npm:^4.17.20"
+ debug: "npm:^4.3.4"
+ lodash: "npm:^4.17.21"
+ pony-cause: "npm:^2.1.10"
+ semver: "npm:^7.5.4"
+ uuid: "npm:^9.0.1"
+ checksum: 10c0/36b3b36cb134165583612d050c877e55e64ec24bd38ab6f1091a8749b2d835dd1be9b9acbcd9f363ec75664c6654917fd6f344137e4a553d60ea58e9b38e0414
+ languageName: node
+ linkType: hard
+
"@metamask/utils@npm:^5.0.1":
version: 5.0.2
resolution: "@metamask/utils@npm:5.0.2"
@@ -5709,9 +5772,9 @@ __metadata:
languageName: node
linkType: hard
-"@mswjs/interceptors@npm:^0.38.5":
- version: 0.38.6
- resolution: "@mswjs/interceptors@npm:0.38.6"
+"@mswjs/interceptors@npm:^0.39.5":
+ version: 0.39.6
+ resolution: "@mswjs/interceptors@npm:0.39.6"
dependencies:
"@open-draft/deferred-promise": "npm:^2.2.0"
"@open-draft/logger": "npm:^0.3.0"
@@ -5719,7 +5782,7 @@ __metadata:
is-node-process: "npm:^1.2.0"
outvariant: "npm:^1.4.3"
strict-event-emitter: "npm:^0.5.1"
- checksum: 10c0/86aada6b0fb1ca2d7359cac89e5962db2be5978b9cd3e6fa48d428fad5c4c962eff1ed9edfa5cb4881e929369eeaf6a09c337e8880a9324c9703283cf9b1a137
+ checksum: 10c0/66f593d4e19da0ada76c6fd89c2bd078f10880f7ec83ba22db3ee3a1aca3998c281011d7e5f1dd5a4bf3ca2eae92e45ce646ec9b85863e9d64b2f8c9d5da6500
languageName: node
linkType: hard
@@ -5745,59 +5808,43 @@ __metadata:
languageName: node
linkType: hard
-"@mui/core-downloads-tracker@npm:^5.17.1":
- version: 5.17.1
- resolution: "@mui/core-downloads-tracker@npm:5.17.1"
- checksum: 10c0/c36641e274a27cdef8a75218021a5ebef0ce588cd0aec004802d56e8d59ac9d8603b8b4840df480de40ce2c3af8898d49929a8564ed5a784ff2b3100dce31366
- languageName: node
- linkType: hard
-
-"@mui/core-downloads-tracker@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/core-downloads-tracker@npm:7.2.0"
- checksum: 10c0/f9e3dd760de2120bf26d957f2bc186caf03e9bc75e9888290549ee79686dbb650bfbbff4abf42628bdcbb0b40a9b311701bb665052b8956a55a7599349664ddb
+"@mui/core-downloads-tracker@npm:^5.18.0":
+ version: 5.18.0
+ resolution: "@mui/core-downloads-tracker@npm:5.18.0"
+ checksum: 10c0/d82962a1b69878cf6a6785b6600302a943d474af00bba50169e207ce0bb5d072f1ed65783c7d5ca940cbe4228ab86bc95bb57545cf2cd039d588f2571bbefe0c
languageName: node
linkType: hard
-"@mui/icons-material@npm:^7.0.1":
- version: 7.1.0
- resolution: "@mui/icons-material@npm:7.1.0"
- dependencies:
- "@babel/runtime": "npm:^7.27.1"
- peerDependencies:
- "@mui/material": ^7.1.0
- "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/d83c5a1506526525fa93053b4ecd4ff498236a415f7594e75252fbec7e4584bb8470db3e04198a4924e8bd67af96cbaf93a9dee0f0ef9fa19a999bd6ade01734
+"@mui/core-downloads-tracker@npm:^7.3.1":
+ version: 7.3.1
+ resolution: "@mui/core-downloads-tracker@npm:7.3.1"
+ checksum: 10c0/4d89ce22ebeba860e76a4fa35aa4946515d921c3c2834551639e99ff622afec2ae6c03fed881c4352283b2cad2f3b731fbde7802740b9b321451bf5e694f733c
languageName: node
linkType: hard
-"@mui/icons-material@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/icons-material@npm:7.2.0"
+"@mui/icons-material@npm:^7.0.1, @mui/icons-material@npm:^7.2.0":
+ version: 7.3.1
+ resolution: "@mui/icons-material@npm:7.3.1"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
+ "@babel/runtime": "npm:^7.28.2"
peerDependencies:
- "@mui/material": ^7.2.0
+ "@mui/material": ^7.3.1
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 10c0/40943e3c69be132d9c9888388d0624d7d3ab6832a58e31cccbf1d7f2678cdfddf3d876fce7f059f45beaf15fe5f169dd9d2958e68b8b33c62598ba2741b65128
+ checksum: 10c0/cd35a2417e5c655b3cda5ef9e90cdb9ff7482d36a0d74b05d22ea5fd43b5dd02be004e3ab314e57defcbabc55342e8bbb910660907ab219551fffd7a3bbc85fa
languageName: node
linkType: hard
"@mui/lab@npm:^5.0.0-alpha.141":
- version: 5.0.0-alpha.176
- resolution: "@mui/lab@npm:5.0.0-alpha.176"
+ version: 5.0.0-alpha.177
+ resolution: "@mui/lab@npm:5.0.0-alpha.177"
dependencies:
"@babel/runtime": "npm:^7.23.9"
"@mui/base": "npm:5.0.0-beta.40-1"
- "@mui/system": "npm:^5.17.1"
+ "@mui/system": "npm:^5.18.0"
"@mui/types": "npm:~7.2.15"
"@mui/utils": "npm:^5.17.1"
clsx: "npm:^2.1.0"
@@ -5816,17 +5863,17 @@ __metadata:
optional: true
"@types/react":
optional: true
- checksum: 10c0/2ffe5e538dea5458f3450f1f1622388298826ace0e1adac13e6f7196099c535ba166dd605adb636f18fce4d1618f9b98af7aaf5587a77df2405ce9e653b9196e
+ checksum: 10c0/ccba45f3379e25dcf7c238e724d244962cdf13b9d6a5d5554af73e3da90ba548ffa300be7844229817a70fcf5d3dbf163300a1967e00a6cb5bf7c4ca80232523
languageName: node
linkType: hard
"@mui/material@npm:^5.16.7":
- version: 5.17.1
- resolution: "@mui/material@npm:5.17.1"
+ version: 5.18.0
+ resolution: "@mui/material@npm:5.18.0"
dependencies:
"@babel/runtime": "npm:^7.23.9"
- "@mui/core-downloads-tracker": "npm:^5.17.1"
- "@mui/system": "npm:^5.17.1"
+ "@mui/core-downloads-tracker": "npm:^5.18.0"
+ "@mui/system": "npm:^5.18.0"
"@mui/types": "npm:~7.2.15"
"@mui/utils": "npm:^5.17.1"
"@popperjs/core": "npm:^2.11.8"
@@ -5849,30 +5896,30 @@ __metadata:
optional: true
"@types/react":
optional: true
- checksum: 10c0/55c120879e65833dda16ae1100eb1e2b43d0a7c80a9d1209121c71953c5e7646a1e76d8bd0204382a401af2d8d11b59383e92969525a6cc3f0149a138b25cad7
+ checksum: 10c0/a743c9105d08b636d4d9cf0aa276283b9095113771c188c7f5ac6953606dd77a5eb082dbbd889446a9a8573b8676d7249140c29eec55ae8320592e5f02d0f2cb
languageName: node
linkType: hard
"@mui/material@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/material@npm:7.2.0"
- dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/core-downloads-tracker": "npm:^7.2.0"
- "@mui/system": "npm:^7.2.0"
- "@mui/types": "npm:^7.4.4"
- "@mui/utils": "npm:^7.2.0"
+ version: 7.3.1
+ resolution: "@mui/material@npm:7.3.1"
+ dependencies:
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/core-downloads-tracker": "npm:^7.3.1"
+ "@mui/system": "npm:^7.3.1"
+ "@mui/types": "npm:^7.4.5"
+ "@mui/utils": "npm:^7.3.1"
"@popperjs/core": "npm:^2.11.8"
"@types/react-transition-group": "npm:^4.4.12"
clsx: "npm:^2.1.1"
csstype: "npm:^3.1.3"
prop-types: "npm:^15.8.1"
- react-is: "npm:^19.1.0"
+ react-is: "npm:^19.1.1"
react-transition-group: "npm:^4.4.5"
peerDependencies:
"@emotion/react": ^11.5.0
"@emotion/styled": ^11.3.0
- "@mui/material-pigment-css": ^7.2.0
+ "@mui/material-pigment-css": ^7.3.1
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -5885,7 +5932,7 @@ __metadata:
optional: true
"@types/react":
optional: true
- checksum: 10c0/56e1d76356b1a6a25ef2ba80448e117548612ddc796d5eb7704ae6308c1888df6378f4e61a63b7bbc15bf399dac0b85cc545619d0a4907a2a2fcff00361bd166
+ checksum: 10c0/078fc8ff9aae3ecbc07112a04dc1722afdae2564c51b5201340452f3bbef8deed4565734ca8b3222145431e3171cfeeff093b95920b7afb4f4bea3ea75346368
languageName: node
linkType: hard
@@ -5906,12 +5953,12 @@ __metadata:
languageName: node
linkType: hard
-"@mui/private-theming@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/private-theming@npm:7.2.0"
+"@mui/private-theming@npm:^7.3.1":
+ version: 7.3.1
+ resolution: "@mui/private-theming@npm:7.3.1"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/utils": "npm:^7.2.0"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/utils": "npm:^7.3.1"
prop-types: "npm:^15.8.1"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -5919,7 +5966,7 @@ __metadata:
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 10c0/902b34889487c622cf6e67bf102c4b8dbd888c941cbf829150cf81b4145adb50a3bb261a26539b89d5134c24fc5e1e344cfe1782c58085b77b7533889c589c9d
+ checksum: 10c0/f92ffdcdbaed42a6dbf4cc721921a6f64ae546e40e59f5da7ca6d7bb432870ae03d9ff84df26aede970e14f5eebb3743f76a212ac2ae46ff2bd06907ddd08005
languageName: node
linkType: hard
@@ -5938,12 +5985,13 @@ __metadata:
languageName: node
linkType: hard
-"@mui/styled-engine@npm:^5.16.14":
- version: 5.16.14
- resolution: "@mui/styled-engine@npm:5.16.14"
+"@mui/styled-engine@npm:^5.18.0":
+ version: 5.18.0
+ resolution: "@mui/styled-engine@npm:5.18.0"
dependencies:
"@babel/runtime": "npm:^7.23.9"
"@emotion/cache": "npm:^11.13.5"
+ "@emotion/serialize": "npm:^1.3.3"
csstype: "npm:^3.1.3"
prop-types: "npm:^15.8.1"
peerDependencies:
@@ -5955,15 +6003,15 @@ __metadata:
optional: true
"@emotion/styled":
optional: true
- checksum: 10c0/cd512faea4ad3ff5a9b315e136a518223ea3e4e34462fe70c56d1f166c46bee0a885ed982773d75c1d56ead62b95989cc5907601e8d65bfa75494b3f3288c2ad
+ checksum: 10c0/68dad75142eea160fc51abf14915d07afd0e7e7791823f6ea6845b2037fde9de6c17b84247a1f283a1437d130857cb97c1a8474c25c161a934671bc48f205418
languageName: node
linkType: hard
-"@mui/styled-engine@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/styled-engine@npm:7.2.0"
+"@mui/styled-engine@npm:^7.3.1":
+ version: 7.3.1
+ resolution: "@mui/styled-engine@npm:7.3.1"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
+ "@babel/runtime": "npm:^7.28.2"
"@emotion/cache": "npm:^11.14.0"
"@emotion/serialize": "npm:^1.3.3"
"@emotion/sheet": "npm:^1.4.0"
@@ -5978,17 +6026,17 @@ __metadata:
optional: true
"@emotion/styled":
optional: true
- checksum: 10c0/d9b6d688f0505a8b877a16cfd43b6f554d77ed1ec481243a8fe154c042c37ce8edc42449cd5e6509329273450f809a88f8a4b248267e377b87db51fd0c496330
+ checksum: 10c0/1b532153e3b7c357d3988e1a9fe569cb8e37aeece70ac17da8e1d1f3fb7dfc7134f6ec997b8cb3dcb70f8a0fea6574dc05bf198e14d971e0133e64c58d0a7755
languageName: node
linkType: hard
-"@mui/system@npm:^5.15.14, @mui/system@npm:^5.17.1":
- version: 5.17.1
- resolution: "@mui/system@npm:5.17.1"
+"@mui/system@npm:^5.15.14, @mui/system@npm:^5.18.0":
+ version: 5.18.0
+ resolution: "@mui/system@npm:5.18.0"
dependencies:
"@babel/runtime": "npm:^7.23.9"
"@mui/private-theming": "npm:^5.17.1"
- "@mui/styled-engine": "npm:^5.16.14"
+ "@mui/styled-engine": "npm:^5.18.0"
"@mui/types": "npm:~7.2.15"
"@mui/utils": "npm:^5.17.1"
clsx: "npm:^2.1.0"
@@ -6006,19 +6054,19 @@ __metadata:
optional: true
"@types/react":
optional: true
- checksum: 10c0/ab74424e536164b720126ddd31ff0ceea4fb51d72f8d18f9be5621b33f8bbdf7fa8c96f8d1d2c4544ddacbaa84df1a197667f10cbe8915e00df103930e40f56e
+ checksum: 10c0/9f5ad15f08c71560e9723b1f136214a0871079a976285f8b813041081850e1f9e2e9fb00766c15814217852694a521a9a91cde3bed95b8062defa8052f69eabf
languageName: node
linkType: hard
-"@mui/system@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/system@npm:7.2.0"
+"@mui/system@npm:^7.2.0, @mui/system@npm:^7.3.1":
+ version: 7.3.1
+ resolution: "@mui/system@npm:7.3.1"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/private-theming": "npm:^7.2.0"
- "@mui/styled-engine": "npm:^7.2.0"
- "@mui/types": "npm:^7.4.4"
- "@mui/utils": "npm:^7.2.0"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/private-theming": "npm:^7.3.1"
+ "@mui/styled-engine": "npm:^7.3.1"
+ "@mui/types": "npm:^7.4.5"
+ "@mui/utils": "npm:^7.3.1"
clsx: "npm:^2.1.1"
csstype: "npm:^3.1.3"
prop-types: "npm:^15.8.1"
@@ -6034,49 +6082,21 @@ __metadata:
optional: true
"@types/react":
optional: true
- checksum: 10c0/5ae7da82dad8a72fe20994d21e949c3d74b9de4158511580a2fde4db4ea4ebc7b12f61a73c0df862b7154714a095b84e51defbb898688e08a46e1702706d5b6d
- languageName: node
- linkType: hard
-
-"@mui/types@npm:^7.4.2":
- version: 7.4.2
- resolution: "@mui/types@npm:7.4.2"
- dependencies:
- "@babel/runtime": "npm:^7.27.1"
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/9401abf306c5c993e7b21136684f80d4aefe28e00d435fccb963611bf009af71dfcf65e509c1db720a0c7d5bf9a364706aa38bd8c0a3b47718aca60f7063aac7
- languageName: node
- linkType: hard
-
-"@mui/types@npm:^7.4.3":
- version: 7.4.3
- resolution: "@mui/types@npm:7.4.3"
- dependencies:
- "@babel/runtime": "npm:^7.27.1"
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/8078ed0c63211377af4cf244e0b8a94d15748253139a330f6c7b983b755a57fa89bdba5d8b9ca4c30944b1567115eab3cbb9b9869c14489b0ad3249e858c9fa1
+ checksum: 10c0/032759c8f3b7c6575771f3865535ce89f74ee0340c7e90769ebe0f44f7e1cd23a14dc1c98b8d7e61bb20f685d7d9b0a283823084f25deb1b73179224cb86357e
languageName: node
linkType: hard
-"@mui/types@npm:^7.4.4":
- version: 7.4.4
- resolution: "@mui/types@npm:7.4.4"
+"@mui/types@npm:^7.4.5":
+ version: 7.4.5
+ resolution: "@mui/types@npm:7.4.5"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
+ "@babel/runtime": "npm:^7.28.2"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 10c0/50987623c477a55eaccc11bb0fe651df99e14b4a8bc29a53c493bce7d8b41529c7e7c8c8d3f55d2539db5531e7b4eff9feb93c73134947f465fc41efc43556c2
+ checksum: 10c0/65015aacdc388a48e62c7bf11d167709f6d7e19e32fa8d4b36d34d391e10edc315bc2d64bf7f542d54fd973e812533800e715c5b0f149c29c3852e2c3dc11587
languageName: node
linkType: hard
@@ -6092,23 +6112,23 @@ __metadata:
languageName: node
linkType: hard
-"@mui/utils@npm:^5.16.6 || ^6.0.0 || ^7.0.0":
- version: 7.1.0
- resolution: "@mui/utils@npm:7.1.0"
+"@mui/utils@npm:^5.16.6 || ^6.0.0 || ^7.0.0, @mui/utils@npm:^7.3.1":
+ version: 7.3.1
+ resolution: "@mui/utils@npm:7.3.1"
dependencies:
- "@babel/runtime": "npm:^7.27.1"
- "@mui/types": "npm:^7.4.2"
- "@types/prop-types": "npm:^15.7.14"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/types": "npm:^7.4.5"
+ "@types/prop-types": "npm:^15.7.15"
clsx: "npm:^2.1.1"
prop-types: "npm:^15.8.1"
- react-is: "npm:^19.1.0"
+ react-is: "npm:^19.1.1"
peerDependencies:
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
"@types/react":
optional: true
- checksum: 10c0/1fa21c44c54161b2239207c1900f3960a1cea5c7a3fda5f830308c8a08b05a46c7bc2dbb467baf5c2d3742677b2b19be1508d17a1dff388c9226d3663460ad08
+ checksum: 10c0/5b36ba0d21f2394df9f9230d8c059d277f006adb31697b4a82da0cc5f720f8959fb24e281b59e5e1e6de6fc03dbc3e32fbd5ed4390570d465530c48a5ecbb2f8
languageName: node
linkType: hard
@@ -6132,53 +6152,14 @@ __metadata:
languageName: node
linkType: hard
-"@mui/utils@npm:^7.1.1":
- version: 7.1.1
- resolution: "@mui/utils@npm:7.1.1"
- dependencies:
- "@babel/runtime": "npm:^7.27.1"
- "@mui/types": "npm:^7.4.3"
- "@types/prop-types": "npm:^15.7.14"
- clsx: "npm:^2.1.1"
- prop-types: "npm:^15.8.1"
- react-is: "npm:^19.1.0"
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/d2563c4be785a94d55d32df7e51be530bb56a21ffbf4d1ca084c51a8b598ad7ee6d8bb30dd4171691c3b669eea6d8da07280aedd8d96fc539cfd0e0e5b9a48a1
- languageName: node
- linkType: hard
-
-"@mui/utils@npm:^7.2.0":
- version: 7.2.0
- resolution: "@mui/utils@npm:7.2.0"
- dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/types": "npm:^7.4.4"
- "@types/prop-types": "npm:^15.7.15"
- clsx: "npm:^2.1.1"
- prop-types: "npm:^15.8.1"
- react-is: "npm:^19.1.0"
- peerDependencies:
- "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/e1b49f3c9e822d51ba12c7ba16b4efdf5bcbc59ea5f980da331864330425dace49922206f2ff354c925332fe5cc7bfd8d1bcb9d546a68edc21d7f1e95124ace6
- languageName: node
- linkType: hard
-
"@mui/x-data-grid@npm:^8.7.0":
- version: 8.7.0
- resolution: "@mui/x-data-grid@npm:8.7.0"
+ version: 8.10.2
+ resolution: "@mui/x-data-grid@npm:8.10.2"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/utils": "npm:^7.1.1"
- "@mui/x-internals": "npm:8.7.0"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/utils": "npm:^7.3.1"
+ "@mui/x-internals": "npm:8.10.2"
+ "@mui/x-virtualizer": "npm:0.1.3"
clsx: "npm:^2.1.1"
prop-types: "npm:^15.8.1"
use-sync-external-store: "npm:^1.5.0"
@@ -6194,13 +6175,13 @@ __metadata:
optional: true
"@emotion/styled":
optional: true
- checksum: 10c0/cb77a88b336a4809dcec2e1f0252700eb8467913eb19adea32b6c65c0a0f3ac68311d82f4f83f8ef6269d2e90ddd83518c378cfcb8f1a45dfc7d59fd2a749fe9
+ checksum: 10c0/4883f597b993739402bc4dbdd241ab482c546bef3736fbfac377fe3634af77ff912f7101ef959d843459aa5bfe42761c4b4f2f18e0d8971a5238487215a1fbe0
languageName: node
linkType: hard
"@mui/x-date-pickers@npm:^7.23.6":
- version: 7.29.2
- resolution: "@mui/x-date-pickers@npm:7.29.2"
+ version: 7.29.4
+ resolution: "@mui/x-date-pickers@npm:7.29.4"
dependencies:
"@babel/runtime": "npm:^7.25.7"
"@mui/utils": "npm:^5.16.6 || ^6.0.0 || ^7.0.0"
@@ -6242,17 +6223,17 @@ __metadata:
optional: true
moment-jalaali:
optional: true
- checksum: 10c0/d5bde109d101a3d7cf5a2a1041fabca2efc35d159bb4ffdb34e0bd30d316716336ebaedee1189dd385e3a3a9d149836d09b27fb4a2035ac53733edf704b1cedc
+ checksum: 10c0/d56a0749da577979ad88e0f18dbb624a483458f5d8efe75d9d6b1b460edfd50579f7f6d6cde5cc0a7ec662cfa98fbe1865109cbf6cbc49d02606d0e1cc324ed7
languageName: node
linkType: hard
"@mui/x-date-pickers@npm:^8.7.0":
- version: 8.7.0
- resolution: "@mui/x-date-pickers@npm:8.7.0"
+ version: 8.10.2
+ resolution: "@mui/x-date-pickers@npm:8.10.2"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/utils": "npm:^7.1.1"
- "@mui/x-internals": "npm:8.7.0"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/utils": "npm:^7.3.1"
+ "@mui/x-internals": "npm:8.10.2"
"@types/react-transition-group": "npm:^4.4.12"
clsx: "npm:^2.1.1"
prop-types: "npm:^15.8.1"
@@ -6290,7 +6271,7 @@ __metadata:
optional: true
moment-jalaali:
optional: true
- checksum: 10c0/964b2ab033b50925536319e67512055ae496631595de3cf488b37cc1d44c7f962645eae7942589c4817d8e82fa35fd819cae62108b4902cb916e8315774ce966
+ checksum: 10c0/5ba6b3ff59b9203f24b91480bfd5c8830d7ef561083ec048fae75af806946635397b605f2cb37f3f0dc835bd8354d57db76861a79984914086da68e16e9e12b6
languageName: node
linkType: hard
@@ -6306,21 +6287,35 @@ __metadata:
languageName: node
linkType: hard
-"@mui/x-internals@npm:8.7.0":
- version: 8.7.0
- resolution: "@mui/x-internals@npm:8.7.0"
+"@mui/x-internals@npm:8.10.2":
+ version: 8.10.2
+ resolution: "@mui/x-internals@npm:8.10.2"
dependencies:
- "@babel/runtime": "npm:^7.27.6"
- "@mui/utils": "npm:^7.1.1"
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/utils": "npm:^7.3.1"
reselect: "npm:^5.1.1"
+ use-sync-external-store: "npm:^1.5.0"
+ peerDependencies:
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ checksum: 10c0/644bd1be5fa19b9376c0853eaac0670fef6611f3cac0657acdee1931193a749fb49920deb41ad41ebf9abc2242ca807c0c9e8b6f088e8f7cf9c85a8f802f3022
+ languageName: node
+ linkType: hard
+
+"@mui/x-virtualizer@npm:0.1.3":
+ version: 0.1.3
+ resolution: "@mui/x-virtualizer@npm:0.1.3"
+ dependencies:
+ "@babel/runtime": "npm:^7.28.2"
+ "@mui/utils": "npm:^7.3.1"
+ "@mui/x-internals": "npm:8.10.2"
peerDependencies:
- "@mui/system": ^5.15.14 || ^6.0.0 || ^7.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/c3fab5603a046db85f739195576de4581cf9afed7c6b299322b6745ad9336534afb1e62e8fa9fc5a37e1e9eee942b51c7bccf2ccecf591efa27650a513071eed
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
+ checksum: 10c0/984be68845df44eb3cf157fd28cd7ed8b20c5bc694205aa3b03088d09b212d91afef70ec62fc613fcfe81c001d0d0f88c5cb0e395aa5f9eedf71188697601c00
languageName: node
linkType: hard
-"@multiformats/dns@npm:^1.0.3":
+"@multiformats/dns@npm:^1.0.3, @multiformats/dns@npm:^1.0.6":
version: 1.0.6
resolution: "@multiformats/dns@npm:1.0.6"
dependencies:
@@ -6336,47 +6331,37 @@ __metadata:
linkType: hard
"@multiformats/multiaddr-to-uri@npm:^11.0.0":
- version: 11.0.0
- resolution: "@multiformats/multiaddr-to-uri@npm:11.0.0"
+ version: 11.0.2
+ resolution: "@multiformats/multiaddr-to-uri@npm:11.0.2"
dependencies:
"@multiformats/multiaddr": "npm:^12.3.0"
- checksum: 10c0/d5e5f7efc41e82327a22ce9101cb6f479a78779d6e8b54015b90defd2562a939c7582361c7c3e6fbaf8cc857bca1da2a2bdbd4a8243ce98f1029e62758984827
+ checksum: 10c0/1c10f9fccba205d018d1c12561bf8dc95b88fde3ce55f94088a245a7a8083b9b2e49252dd69a088536ac354bcaf04de6b458eb4d8541f35a4bfbfe508c277089
languageName: node
linkType: hard
-"@multiformats/multiaddr@npm:^12.2.1, @multiformats/multiaddr@npm:^12.3.0, @multiformats/multiaddr@npm:^12.3.3":
- version: 12.4.0
- resolution: "@multiformats/multiaddr@npm:12.4.0"
+"@multiformats/multiaddr@npm:^12.2.1, @multiformats/multiaddr@npm:^12.3.0, @multiformats/multiaddr@npm:^12.4.4":
+ version: 12.5.1
+ resolution: "@multiformats/multiaddr@npm:12.5.1"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.1"
"@chainsafe/netmask": "npm:^2.0.0"
"@multiformats/dns": "npm:^1.0.3"
+ abort-error: "npm:^1.0.1"
multiformats: "npm:^13.0.0"
uint8-varint: "npm:^2.0.1"
uint8arrays: "npm:^5.0.0"
- checksum: 10c0/ed623041070328b0c5f09094e647b70ce14b70476560850c63b5ddfe31bba5818f5ee992806154542dafab9b576d69610349db63773f3756769e64523e6415ad
+ checksum: 10c0/61df1d9d50f3b228c5a8c8c33170a23eff4cb2ea4686e9dc89f640edc2d865907736a18043ec4a05d368911c3f5eaa65643b367b10e529e543629225a7bb9dae
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^0.2.11":
- version: 0.2.11
- resolution: "@napi-rs/wasm-runtime@npm:0.2.11"
+ version: 0.2.12
+ resolution: "@napi-rs/wasm-runtime@npm:0.2.12"
dependencies:
"@emnapi/core": "npm:^1.4.3"
"@emnapi/runtime": "npm:^1.4.3"
- "@tybys/wasm-util": "npm:^0.9.0"
- checksum: 10c0/049bd14c58b99fbe0967b95e9921c5503df196b59be22948d2155f17652eb305cff6728efd8685338b855da7e476dd2551fbe3a313fc2d810938f0717478441e
- languageName: node
- linkType: hard
-
-"@napi-rs/wasm-runtime@npm:^0.2.9":
- version: 0.2.9
- resolution: "@napi-rs/wasm-runtime@npm:0.2.9"
- dependencies:
- "@emnapi/core": "npm:^1.4.0"
- "@emnapi/runtime": "npm:^1.4.0"
- "@tybys/wasm-util": "npm:^0.9.0"
- checksum: 10c0/1cc40b854b255f84e12ade634456ba489f6bf90659ef8164a16823c515c294024c96ee2bb81ab51f35493ba9496f62842b960f915dbdcdc1791f221f989e9e59
+ "@tybys/wasm-util": "npm:^0.10.0"
+ checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d
languageName: node
linkType: hard
@@ -6441,8 +6426,8 @@ __metadata:
linkType: hard
"@nestjs/common@npm:^10.2.7":
- version: 10.4.17
- resolution: "@nestjs/common@npm:10.4.17"
+ version: 10.4.20
+ resolution: "@nestjs/common@npm:10.4.20"
dependencies:
file-type: "npm:20.4.1"
iterare: "npm:1.2.1"
@@ -6458,7 +6443,7 @@ __metadata:
optional: true
class-validator:
optional: true
- checksum: 10c0/dc96bb6d5e68e856d2a18853c5c8b8cebfd32f9193d72089bb71191efde5a5272e87d7005fc1a9587d08755286331e233690bcb7937435e3fc9c2069b64b06c9
+ checksum: 10c0/d1a1b3d67798a8a07e5dfe7c55c6d499ac4750531cad0ef5fd5ceef0e2cfc01ae0adcba501d27987e7f4044af0f41fec05d4391d047baa6069419c49daff7e8c
languageName: node
linkType: hard
@@ -6477,8 +6462,8 @@ __metadata:
linkType: hard
"@nestjs/core@npm:^10.2.8, @nestjs/core@npm:^10.3.10":
- version: 10.4.17
- resolution: "@nestjs/core@npm:10.4.17"
+ version: 10.4.20
+ resolution: "@nestjs/core@npm:10.4.20"
dependencies:
"@nuxtjs/opencollective": "npm:0.3.2"
fast-safe-stringify: "npm:2.1.1"
@@ -6500,7 +6485,7 @@ __metadata:
optional: true
"@nestjs/websockets":
optional: true
- checksum: 10c0/fdc9e5418a3421b1be05d7552e69cc2d226ae4065426c9b0c0769eed1720e35edeb925f92b72ce151ba1ff0ad7be127054dc13fc9d1ded138f3ddeb462dfdadc
+ checksum: 10c0/cb9f68a35d0e45684989c2ac1402617d2159d45abd49bf986b7a76931d5452d15fdf99ae8ac0fbca3c0f329a07a7802223e9dcaa3f834dfa9e96f2e7514c9aee
languageName: node
linkType: hard
@@ -6561,18 +6546,18 @@ __metadata:
linkType: hard
"@nestjs/platform-express@npm:^10.3.10":
- version: 10.4.17
- resolution: "@nestjs/platform-express@npm:10.4.17"
+ version: 10.4.20
+ resolution: "@nestjs/platform-express@npm:10.4.20"
dependencies:
body-parser: "npm:1.20.3"
cors: "npm:2.8.5"
express: "npm:4.21.2"
- multer: "npm:1.4.4-lts.1"
+ multer: "npm:2.0.2"
tslib: "npm:2.8.1"
peerDependencies:
"@nestjs/common": ^10.0.0
"@nestjs/core": ^10.0.0
- checksum: 10c0/cfd5c1e6ca0e3b86a7c2fbc12c5dfa274696ad4fd26952492ff8e68cb5708572bb9a82db9c0ab2c79cfa3ef6f39f04e27f5038065044cb65ec1b250d566ac807
+ checksum: 10c0/c6f4b528b8a9419f85d21317d019e4cdc408372ba0d86968d36a13994ee6744a450c81cea16e44b847944320f074696a8d94bc52eab2f31f3a28a629fb2da3c2
languageName: node
linkType: hard
@@ -6605,17 +6590,17 @@ __metadata:
linkType: hard
"@nestjs/schematics@npm:^11.0.2":
- version: 11.0.5
- resolution: "@nestjs/schematics@npm:11.0.5"
+ version: 11.0.7
+ resolution: "@nestjs/schematics@npm:11.0.7"
dependencies:
- "@angular-devkit/core": "npm:19.2.6"
- "@angular-devkit/schematics": "npm:19.2.6"
+ "@angular-devkit/core": "npm:19.2.15"
+ "@angular-devkit/schematics": "npm:19.2.15"
comment-json: "npm:4.2.5"
jsonc-parser: "npm:3.3.1"
pluralize: "npm:8.0.0"
peerDependencies:
typescript: ">=4.8.2"
- checksum: 10c0/53973edb5ea508aae25e7f6c2444f42ce285599f3eadc6734e6140680986e244c4aa750bebd02c5881fa3d9d6d93d772bcd2602590a79b55aa2ac81068b8952d
+ checksum: 10c0/fb40b4cb7c39a82a1dcc2936b1d05ed30897184e77de89a05e25448e5d718d212f96f4a56c09550f13d404ce54e760b83aad6b8b049fa791de937bbbf3b979f9
languageName: node
linkType: hard
@@ -6703,8 +6688,8 @@ __metadata:
linkType: hard
"@nestjs/testing@npm:^10.4.6":
- version: 10.4.17
- resolution: "@nestjs/testing@npm:10.4.17"
+ version: 10.4.20
+ resolution: "@nestjs/testing@npm:10.4.20"
dependencies:
tslib: "npm:2.8.1"
peerDependencies:
@@ -6717,7 +6702,7 @@ __metadata:
optional: true
"@nestjs/platform-express":
optional: true
- checksum: 10c0/6ddf155db8937fcfd003fa1d24f0675c2dd89daad7c702d841cbdbd8fc1fe59f18e2a4e4f875c059c5569c19e94e43ae276a7d160355798a762ccbf0e93c18ce
+ checksum: 10c0/128e8608fc54f26fc07db5ff6c8230da50269d4d55a64a4ab3a5018c268b97b8c3d79233cbd36d70e9d872920680375be2650a0dcc6338a190c26e024fe5e2f2
languageName: node
linkType: hard
@@ -6763,7 +6748,7 @@ __metadata:
languageName: node
linkType: hard
-"@noble/ciphers@npm:1.3.0, @noble/ciphers@npm:^1.0.0, @noble/ciphers@npm:^1.3.0":
+"@noble/ciphers@npm:1.3.0, @noble/ciphers@npm:^1.3.0":
version: 1.3.0
resolution: "@noble/ciphers@npm:1.3.0"
checksum: 10c0/3ba6da645ce45e2f35e3b2e5c87ceba86b21dfa62b9466ede9edfb397f8116dae284f06652c0cd81d99445a2262b606632e868103d54ecc99fd946ae1af8cd37
@@ -6806,15 +6791,6 @@ __metadata:
languageName: node
linkType: hard
-"@noble/curves@npm:1.8.2, @noble/curves@npm:~1.8.1":
- version: 1.8.2
- resolution: "@noble/curves@npm:1.8.2"
- dependencies:
- "@noble/hashes": "npm:1.7.2"
- checksum: 10c0/e7ef119b114681d6b7530b29a21f9bbea6fa6973bc369167da2158d05054cc6e6dbfb636ba89fad7707abacc150de30188b33192f94513911b24bdb87af50bbd
- languageName: node
- linkType: hard
-
"@noble/curves@npm:1.9.1":
version: 1.9.1
resolution: "@noble/curves@npm:1.9.1"
@@ -6824,7 +6800,7 @@ __metadata:
languageName: node
linkType: hard
-"@noble/curves@npm:1.9.2, @noble/curves@npm:^1.9.1":
+"@noble/curves@npm:1.9.2":
version: 1.9.2
resolution: "@noble/curves@npm:1.9.2"
dependencies:
@@ -6833,21 +6809,30 @@ __metadata:
languageName: node
linkType: hard
-"@noble/curves@npm:^1.6.0, @noble/curves@npm:^1.7.0, @noble/curves@npm:~1.9.0":
- version: 1.9.0
- resolution: "@noble/curves@npm:1.9.0"
+"@noble/curves@npm:1.9.6":
+ version: 1.9.6
+ resolution: "@noble/curves@npm:1.9.6"
dependencies:
"@noble/hashes": "npm:1.8.0"
- checksum: 10c0/a76d57444b4d136f43363eb19229d990df15a00fb0e2efbf08a7a4cbaee655f73e46eb29b6ad07b8749be5f7b890c0a7a06a19f4324a4b149b06b3da1def8593
+ checksum: 10c0/e462875ad752d2cdffc3c7b27b6de3adcff5fae0731e94138bd9e452c5f9b7aaf4c01ea6c62d3c0544b4e7419662535bb2ef1103311de48d51885c053206e118
languageName: node
linkType: hard
-"@noble/curves@npm:~1.9.2":
- version: 1.9.4
- resolution: "@noble/curves@npm:1.9.4"
+"@noble/curves@npm:^1.6.0, @noble/curves@npm:^1.9.1, @noble/curves@npm:~1.9.0":
+ version: 1.9.7
+ resolution: "@noble/curves@npm:1.9.7"
dependencies:
"@noble/hashes": "npm:1.8.0"
- checksum: 10c0/c5ac42bf0c4ac822ee7c107f7b5647140a4209bce6929cdf21a38bc575be8aa91c130c4d4bea5a8a3100c53728fc0c6757382f005779cd14b10ea9a00f1a4592
+ checksum: 10c0/150014751ebe8ca06a8654ca2525108452ea9ee0be23430332769f06808cddabfe84f248b6dbf836916bc869c27c2092957eec62c7506d68a1ed0a624017c2a3
+ languageName: node
+ linkType: hard
+
+"@noble/curves@npm:~1.8.1":
+ version: 1.8.2
+ resolution: "@noble/curves@npm:1.8.2"
+ dependencies:
+ "@noble/hashes": "npm:1.7.2"
+ checksum: 10c0/e7ef119b114681d6b7530b29a21f9bbea6fa6973bc369167da2158d05054cc6e6dbfb636ba89fad7707abacc150de30188b33192f94513911b24bdb87af50bbd
languageName: node
linkType: hard
@@ -6893,20 +6878,13 @@ __metadata:
languageName: node
linkType: hard
-"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.4.0, @noble/hashes@npm:^1.5.0, @noble/hashes@npm:^1.6.1, @noble/hashes@npm:^1.8.0, @noble/hashes@npm:~1.8.0":
+"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.4.0, @noble/hashes@npm:^1.5.0, @noble/hashes@npm:^1.8.0, @noble/hashes@npm:~1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77
languageName: node
linkType: hard
-"@noble/hashes@npm:2.0.0-beta.1":
- version: 2.0.0-beta.1
- resolution: "@noble/hashes@npm:2.0.0-beta.1"
- checksum: 10c0/dde464e841efb008e40ec2bc8431fec4de11c4778b0491c03247aa05c4e900a8b5212c9c90043b836f47d3d9ff48c22419513ed8219fed380cdaa17e1fc4fddc
- languageName: node
- linkType: hard
-
"@noble/secp256k1@npm:1.7.1":
version: 1.7.1
resolution: "@noble/secp256k1@npm:1.7.1"
@@ -7020,36 +6998,23 @@ __metadata:
linkType: hard
"@nomicfoundation/hardhat-chai-matchers@npm:^2.0.7":
- version: 2.0.8
- resolution: "@nomicfoundation/hardhat-chai-matchers@npm:2.0.8"
+ version: 2.1.0
+ resolution: "@nomicfoundation/hardhat-chai-matchers@npm:2.1.0"
dependencies:
"@types/chai-as-promised": "npm:^7.1.3"
chai-as-promised: "npm:^7.1.1"
deep-eql: "npm:^4.0.1"
ordinal: "npm:^1.0.3"
peerDependencies:
- "@nomicfoundation/hardhat-ethers": ^3.0.0
+ "@nomicfoundation/hardhat-ethers": ^3.1.0
chai: ^4.2.0
- ethers: ^6.1.0
- hardhat: ^2.9.4
- checksum: 10c0/51e3ee9ff17319180a5f45108514b33437c004b724c591dc6d7d2e9842e24e2d793aaf94ce5316117475021e67c88228283d20c9f45fb0693dd8f6b61674b4ff
- languageName: node
- linkType: hard
-
-"@nomicfoundation/hardhat-ethers@npm:^3.0.0":
- version: 3.0.8
- resolution: "@nomicfoundation/hardhat-ethers@npm:3.0.8"
- dependencies:
- debug: "npm:^4.1.1"
- lodash.isequal: "npm:^4.5.0"
- peerDependencies:
- ethers: ^6.1.0
- hardhat: ^2.0.0
- checksum: 10c0/478b5d9607e7fc50377bec45ecebbf74240719c76aa08c81052d2a2174eee6f422db8cfd3f13fd17a080d8ff1046fac50dfffa3a2e57c9e3ed466932239e4af2
+ ethers: ^6.14.0
+ hardhat: ^2.26.0
+ checksum: 10c0/e12ca86a2b7e1381f3ddd3b7122f66daec84e72ccb3650e530988072b9b3d672d883e99e7cfaf4844b79e7ef7a7a13906d01f6fd02320aaea88419580da45d0f
languageName: node
linkType: hard
-"@nomicfoundation/hardhat-ethers@npm:^3.1.0":
+"@nomicfoundation/hardhat-ethers@npm:^3.0.0, @nomicfoundation/hardhat-ethers@npm:^3.1.0":
version: 3.1.0
resolution: "@nomicfoundation/hardhat-ethers@npm:3.1.0"
dependencies:
@@ -7063,31 +7028,31 @@ __metadata:
linkType: hard
"@nomicfoundation/hardhat-ignition@npm:^0.15.5":
- version: 0.15.11
- resolution: "@nomicfoundation/hardhat-ignition@npm:0.15.11"
+ version: 0.15.13
+ resolution: "@nomicfoundation/hardhat-ignition@npm:0.15.13"
dependencies:
- "@nomicfoundation/ignition-core": "npm:^0.15.11"
- "@nomicfoundation/ignition-ui": "npm:^0.15.11"
+ "@nomicfoundation/ignition-core": "npm:^0.15.13"
+ "@nomicfoundation/ignition-ui": "npm:^0.15.12"
chalk: "npm:^4.0.0"
debug: "npm:^4.3.2"
fs-extra: "npm:^10.0.0"
json5: "npm:^2.2.3"
prompts: "npm:^2.4.2"
peerDependencies:
- "@nomicfoundation/hardhat-verify": ^2.0.1
- hardhat: ^2.18.0
- checksum: 10c0/05248edfb96471990290dd4bf894602d003c09a44a1bab4861beac6ff06ced24ecd1656de287698329ca6999feb01ca3c769b4cc344f981b14ca09f3c0b659c8
+ "@nomicfoundation/hardhat-verify": ^2.1.0
+ hardhat: ^2.26.0
+ checksum: 10c0/44167189774a6f8b7c0ff9b59d2bb7ac879aeaf606094c669440f5876f252284b96d1ba86ca9d094a44c18d1fc0f5f3abf4d613506b5b4f038a8a8c6141071c2
languageName: node
linkType: hard
"@nomicfoundation/hardhat-network-helpers@npm:^1.0.12":
- version: 1.0.12
- resolution: "@nomicfoundation/hardhat-network-helpers@npm:1.0.12"
+ version: 1.1.0
+ resolution: "@nomicfoundation/hardhat-network-helpers@npm:1.1.0"
dependencies:
ethereumjs-util: "npm:^7.1.4"
peerDependencies:
- hardhat: ^2.9.5
- checksum: 10c0/93df80bb824fb9146c354f71637d6deee4b7ba19527eee94b4f79064ccbb8e4e45e14d8e558f6e5c2be17d64429faaef07ac8fe12ef11395c549f7b5fc540722
+ hardhat: ^2.26.0
+ checksum: 10c0/f90657993cfa09afabde69fcc1dca9256a83ea0651fe52d623f93511f0b9c3570c4f65ce183663b0a2e863df021aa1698cfecbee8b3c58cba8fa531a0abdc3f8
languageName: node
linkType: hard
@@ -7117,8 +7082,8 @@ __metadata:
linkType: hard
"@nomicfoundation/hardhat-verify@npm:^2.0.11, @nomicfoundation/hardhat-verify@npm:^2.0.8":
- version: 2.0.13
- resolution: "@nomicfoundation/hardhat-verify@npm:2.0.13"
+ version: 2.1.1
+ resolution: "@nomicfoundation/hardhat-verify@npm:2.1.1"
dependencies:
"@ethersproject/abi": "npm:^5.1.2"
"@ethersproject/address": "npm:^5.0.2"
@@ -7130,32 +7095,32 @@ __metadata:
table: "npm:^6.8.0"
undici: "npm:^5.14.0"
peerDependencies:
- hardhat: ^2.0.4
- checksum: 10c0/391b35211646ed9efd91b88229c09c8baaa688caaf4388e077b73230b36cd7f86b04639625b0e8ebdc070166f49494c3bd32834c31ca4800db0936ca6db96ee2
+ hardhat: ^2.26.0
+ checksum: 10c0/d21ca6db816509972deb6603e087381644ca17c5fb07a02a3fbe2148b483ac26f41b34fce64222b90a52e93de1d2920e9d879a333b96ad33cc8e3f6d16ac4558
languageName: node
linkType: hard
-"@nomicfoundation/ignition-core@npm:^0.15.11":
- version: 0.15.11
- resolution: "@nomicfoundation/ignition-core@npm:0.15.11"
+"@nomicfoundation/ignition-core@npm:^0.15.13":
+ version: 0.15.13
+ resolution: "@nomicfoundation/ignition-core@npm:0.15.13"
dependencies:
"@ethersproject/address": "npm:5.6.1"
"@nomicfoundation/solidity-analyzer": "npm:^0.1.1"
cbor: "npm:^9.0.0"
debug: "npm:^4.3.2"
- ethers: "npm:^6.7.0"
+ ethers: "npm:^6.14.0"
fs-extra: "npm:^10.0.0"
immer: "npm:10.0.2"
lodash: "npm:4.17.21"
ndjson: "npm:2.0.0"
- checksum: 10c0/39a28a39fa7de37aebde771a2dd9ca9c56474238fdb0c2fd1e7b636e22e66c4f94c8f2d2471921b2ddd2fabcb6c880962b0bb6bedc74f378a0ae8c8ced7ad2da
+ checksum: 10c0/31807f990f916d34becfcfe6b2400da614a092d482e7fa1587355a8abcf57a8f6c802df899737f5c27f29156fd7ef68bc2c4d85e32b3a94417284989f7191255
languageName: node
linkType: hard
-"@nomicfoundation/ignition-ui@npm:^0.15.11":
- version: 0.15.11
- resolution: "@nomicfoundation/ignition-ui@npm:0.15.11"
- checksum: 10c0/d9eed66965268dd92048aa24ea881513ec9af78d5aea95b670685d6b0ffac0bbb0c6d36e8bc751ca4cf60d7c4d18d94b2a6f5c59ed1253065f59270476d8bf79
+"@nomicfoundation/ignition-ui@npm:^0.15.12":
+ version: 0.15.12
+ resolution: "@nomicfoundation/ignition-ui@npm:0.15.12"
+ checksum: 10c0/b25607ebc191f8976b0f83c5394307d28434ac2034e8419a72355d7b52af95b3d3fde9d48b18363d140b452fe43b269f623bc0a72ad07f6d13d0ee803df4151d
languageName: node
linkType: hard
@@ -7311,7 +7276,7 @@ __metadata:
languageName: node
linkType: hard
-"@oclif/core@npm:4.3.0, @oclif/core@npm:^4":
+"@oclif/core@npm:4.3.0":
version: 4.3.0
resolution: "@oclif/core@npm:4.3.0"
dependencies:
@@ -7337,41 +7302,67 @@ __metadata:
languageName: node
linkType: hard
+"@oclif/core@npm:^4, @oclif/core@npm:^4.5.2":
+ version: 4.5.2
+ resolution: "@oclif/core@npm:4.5.2"
+ dependencies:
+ ansi-escapes: "npm:^4.3.2"
+ ansis: "npm:^3.17.0"
+ clean-stack: "npm:^3.0.1"
+ cli-spinners: "npm:^2.9.2"
+ debug: "npm:^4.4.0"
+ ejs: "npm:^3.1.10"
+ get-package-type: "npm:^0.1.0"
+ indent-string: "npm:^4.0.0"
+ is-wsl: "npm:^2.2.0"
+ lilconfig: "npm:^3.1.3"
+ minimatch: "npm:^9.0.5"
+ semver: "npm:^7.6.3"
+ string-width: "npm:^4.2.3"
+ supports-color: "npm:^8"
+ tinyglobby: "npm:^0.2.14"
+ widest-line: "npm:^3.1.0"
+ wordwrap: "npm:^1.0.0"
+ wrap-ansi: "npm:^7.0.0"
+ checksum: 10c0/a40a6b392192c5ba7183dc3f215f1f6dba3aa584bb4837866a01f9ad9ad8fb99d1c1418ed661d051dfd5752ca229e6766cf108411fc2e6c908cbd29d86b89d22
+ languageName: node
+ linkType: hard
+
"@oclif/plugin-autocomplete@npm:^3.2.11":
- version: 3.2.28
- resolution: "@oclif/plugin-autocomplete@npm:3.2.28"
+ version: 3.2.34
+ resolution: "@oclif/plugin-autocomplete@npm:3.2.34"
dependencies:
"@oclif/core": "npm:^4"
ansis: "npm:^3.16.0"
- debug: "npm:^4.4.0"
+ debug: "npm:^4.4.1"
ejs: "npm:^3.1.10"
- checksum: 10c0/39f7c6395ec4772c9b545e76fb7641c1df0a9066c61ec5e758b34339c6b8ace379d2aaf1fbd41ef44482a712c3f65677ceefefe5bcf3f4791a7cc6e19f349c08
+ checksum: 10c0/6b440d1b6bfc380963e40ce49553a662d809659aaa2e360896a89dc4e9adaef0a42723550fd13e143767f998a4d25d53b25a342501d67e2d212231e1a093aeda
languageName: node
linkType: hard
"@oclif/plugin-not-found@npm:^3.2.29":
- version: 3.2.51
- resolution: "@oclif/plugin-not-found@npm:3.2.51"
+ version: 3.2.66
+ resolution: "@oclif/plugin-not-found@npm:3.2.66"
dependencies:
- "@inquirer/prompts": "npm:^7.5.0"
- "@oclif/core": "npm:^4"
+ "@inquirer/prompts": "npm:^7.8.3"
+ "@oclif/core": "npm:^4.5.2"
ansis: "npm:^3.17.0"
fast-levenshtein: "npm:^3.0.0"
- checksum: 10c0/8fde46709398e2e475120c36ffb58f1c9a814ec5537b3b4f3c2e2e2005a39bfdbf427eb617a8cbc07d16ebee01b241069f295e03e98db8ed66f8fb728bd6c43a
+ checksum: 10c0/5ab78d2c1c543bf37eb528db82403e1eecb64253d41d9453e7ea6ac63c8231aa203498246aefc0770ce705012a70280c975a1dcbd2b9ddcc799b4ad737b5255d
languageName: node
linkType: hard
"@oclif/plugin-warn-if-update-available@npm:^3.1.24":
- version: 3.1.39
- resolution: "@oclif/plugin-warn-if-update-available@npm:3.1.39"
+ version: 3.1.46
+ resolution: "@oclif/plugin-warn-if-update-available@npm:3.1.46"
dependencies:
"@oclif/core": "npm:^4"
ansis: "npm:^3.17.0"
- debug: "npm:^4.4.0"
+ debug: "npm:^4.4.1"
http-call: "npm:^5.2.2"
lodash: "npm:^4.17.21"
registry-auth-token: "npm:^5.1.0"
- checksum: 10c0/a428b196ec32df0d785826905ee4c3c979c28dc6241d2e4e0d157d6b495c490c57f960b4d09765e976aa9b89c97c5f777be8ad347631b467abd1989185f0d57c
+ checksum: 10c0/85d20e6f1e94a75de4a65767a33fe1f5ee495a0117ef799d8f6f0f65e1e0ba75ce93739aeb2e9df8a4cca680ea37f032f784dfd70351d5ca415b459b1979e712
languageName: node
linkType: hard
@@ -7413,42 +7404,42 @@ __metadata:
languageName: node
linkType: hard
-"@openzeppelin/defender-sdk-base-client@npm:^2.1.0, @openzeppelin/defender-sdk-base-client@npm:^2.5.0":
- version: 2.5.0
- resolution: "@openzeppelin/defender-sdk-base-client@npm:2.5.0"
+"@openzeppelin/defender-sdk-base-client@npm:^2.1.0, @openzeppelin/defender-sdk-base-client@npm:^2.7.0":
+ version: 2.7.0
+ resolution: "@openzeppelin/defender-sdk-base-client@npm:2.7.0"
dependencies:
"@aws-sdk/client-lambda": "npm:^3.563.0"
amazon-cognito-identity-js: "npm:^6.3.6"
async-retry: "npm:^1.3.3"
- checksum: 10c0/3f1335a005275b825dc87fd4a9f1de0803b039288a287a4cd049064db3c17d1f636a0b1d16a392e9a58e039b01aeeb401e524b250536233f641ded11a31ca6f9
+ checksum: 10c0/4186ef9852997d88993554788ae19be4fe456a100fd1465604d26fec116171ee39dda9bf3b0580902bbd972468296a257f795c572736d5a193bc02fdfdd55c44
languageName: node
linkType: hard
"@openzeppelin/defender-sdk-deploy-client@npm:^2.1.0":
- version: 2.5.0
- resolution: "@openzeppelin/defender-sdk-deploy-client@npm:2.5.0"
+ version: 2.7.0
+ resolution: "@openzeppelin/defender-sdk-deploy-client@npm:2.7.0"
dependencies:
- "@openzeppelin/defender-sdk-base-client": "npm:^2.5.0"
+ "@openzeppelin/defender-sdk-base-client": "npm:^2.7.0"
axios: "npm:^1.7.4"
lodash: "npm:^4.17.21"
- checksum: 10c0/b5294447c10bcb85bbce2e2460d9c833814d16914acf4a641aa9aa96760140bdc972cfa2c3d8c07421a680dc08aa788413a2c60353b801af6a3ad7a35fdc7e45
+ checksum: 10c0/5bb3121d50859b8add196ecda08616b36ac1043e712b2b1f6c24e26e7977f85f59587ee49de76a8fa35111b80cc8f0d5122e157dcee9bad6c369fd143d421bf1
languageName: node
linkType: hard
"@openzeppelin/defender-sdk-network-client@npm:^2.1.0":
- version: 2.5.0
- resolution: "@openzeppelin/defender-sdk-network-client@npm:2.5.0"
+ version: 2.7.0
+ resolution: "@openzeppelin/defender-sdk-network-client@npm:2.7.0"
dependencies:
- "@openzeppelin/defender-sdk-base-client": "npm:^2.5.0"
+ "@openzeppelin/defender-sdk-base-client": "npm:^2.7.0"
axios: "npm:^1.7.4"
lodash: "npm:^4.17.21"
- checksum: 10c0/1fc6052411ad10e278567163ec890e65cbe4ad82a8a5d0926aa4c115654ebef91135c68aa74e2c299d0d662e8b4b00e288d3084f60bb5e4c31eff08e0a2ba11f
+ checksum: 10c0/07cea4f8ce48ef1d5b24647744d3279744f258cefbe1e79c8e4857e1da2724db9fbbab579ae22d778a6b42587349226031c8c837e67dbffcf58e5ccf02c22deb
languageName: node
linkType: hard
"@openzeppelin/hardhat-upgrades@npm:^3.3.0":
- version: 3.9.0
- resolution: "@openzeppelin/hardhat-upgrades@npm:3.9.0"
+ version: 3.9.1
+ resolution: "@openzeppelin/hardhat-upgrades@npm:3.9.1"
dependencies:
"@openzeppelin/defender-sdk-base-client": "npm:^2.1.0"
"@openzeppelin/defender-sdk-deploy-client": "npm:^2.1.0"
@@ -7460,22 +7451,22 @@ __metadata:
proper-lockfile: "npm:^4.1.1"
undici: "npm:^6.11.1"
peerDependencies:
- "@nomicfoundation/hardhat-ethers": ^3.0.0
- "@nomicfoundation/hardhat-verify": ^2.0.0
+ "@nomicfoundation/hardhat-ethers": ^3.0.6
+ "@nomicfoundation/hardhat-verify": ^2.0.14
ethers: ^6.6.0
- hardhat: ^2.0.2
+ hardhat: ^2.24.1
peerDependenciesMeta:
"@nomicfoundation/hardhat-verify":
optional: true
bin:
migrate-oz-cli-project: dist/scripts/migrate-oz-cli-project.js
- checksum: 10c0/14b09af024ee42f6f43b775952b88d8c113b750df3c3c5dea17732e7dc2a4ca7cb3b69dd450403a8d6ca39d5e3ea7b25a4569469f9f2cc94a4bb2273ff2b9f70
+ checksum: 10c0/6b453bd1af116bc785f040661fe4e51403a9ab82d76e894346336b66f85dbd0d46751639bf325cef6ce030d41442551e92b8925429fff86fce900cd3d655028d
languageName: node
linkType: hard
"@openzeppelin/upgrades-core@npm:^1.32.2, @openzeppelin/upgrades-core@npm:^1.41.0":
- version: 1.44.0
- resolution: "@openzeppelin/upgrades-core@npm:1.44.0"
+ version: 1.44.1
+ resolution: "@openzeppelin/upgrades-core@npm:1.44.1"
dependencies:
"@nomicfoundation/slang": "npm:^0.18.3"
bignumber.js: "npm:^9.1.2"
@@ -7490,7 +7481,7 @@ __metadata:
solidity-ast: "npm:^0.4.60"
bin:
openzeppelin-upgrades-core: dist/cli/cli.js
- checksum: 10c0/587734f6cfe12f352c2d79b52579314c7d4cc7854668801467414a12200203d2481e078ffe5213fe676fc99677ff0ba31a4e3027332f27d1598ddbfed58fe50b
+ checksum: 10c0/4ff49400aa3e87106b9e653976d1ec4b261e242b974fe022bf290f9f783f0dbcb8c2b306e73028c0f364b83428b3dc1d66d0c668d4a05cce0446a40d418187a4
languageName: node
linkType: hard
@@ -7646,13 +7637,13 @@ __metadata:
linkType: hard
"@peculiar/asn1-schema@npm:^2.3.13, @peculiar/asn1-schema@npm:^2.3.8":
- version: 2.3.15
- resolution: "@peculiar/asn1-schema@npm:2.3.15"
+ version: 2.4.0
+ resolution: "@peculiar/asn1-schema@npm:2.4.0"
dependencies:
- asn1js: "npm:^3.0.5"
+ asn1js: "npm:^3.0.6"
pvtsutils: "npm:^1.3.6"
tslib: "npm:^2.8.1"
- checksum: 10c0/0e73e292a17d00a8770825a9504ceaf0994481a39126317ca0ca5d3dc742087f2b71a4d086bb5613bf19ac57f001d42f594683797d43137702db3ee2b42736a0
+ checksum: 10c0/07a825348bd6be668793fc7bfec54628883d8dcf7c447facdba9bc9c2518f1cc9de37b9f907977ed927895505490868adcb2c1a5b0a19c5a1bc01e3cc5dc2e65
languageName: node
linkType: hard
@@ -7678,6 +7669,15 @@ __metadata:
languageName: node
linkType: hard
+"@phosphor-icons/webcomponents@npm:2.1.5":
+ version: 2.1.5
+ resolution: "@phosphor-icons/webcomponents@npm:2.1.5"
+ dependencies:
+ lit: "npm:^3"
+ checksum: 10c0/547c0e3e18b0203e8b432fdbc5aa075219a4e19cffa8582e6da35f0d67ac85441f67a1bb005cadeb3601e5ecda760339fca3fbb729be66ae6ec0c9d3e4d36d38
+ languageName: node
+ linkType: hard
+
"@pinax/graph-networks-registry@npm:^0.6.5":
version: 0.6.7
resolution: "@pinax/graph-networks-registry@npm:0.6.7"
@@ -7692,17 +7692,10 @@ __metadata:
languageName: node
linkType: hard
-"@pkgr/core@npm:^0.2.3":
- version: 0.2.4
- resolution: "@pkgr/core@npm:0.2.4"
- checksum: 10c0/2528a443bbbef5d4686614e1d73f834f19ccbc975f62b2a64974a6b97bcdf677b9c5e8948e04808ac4f0d853e2f422adfaae2a06e9e9f4f5cf8af76f1adf8dc1
- languageName: node
- linkType: hard
-
-"@pkgr/core@npm:^0.2.4":
- version: 0.2.7
- resolution: "@pkgr/core@npm:0.2.7"
- checksum: 10c0/951f5ebf2feb6e9dbc202d937f1a364d60f2bf0e3e53594251bcc1d9d2ed0df0a919c49ba162a9499fce73cf46ebe4d7959a8dfbac03511dbe79b69f5fedb804
+"@pkgr/core@npm:^0.2.9":
+ version: 0.2.9
+ resolution: "@pkgr/core@npm:0.2.9"
+ checksum: 10c0/ac8e4e8138b1a7a4ac6282873aef7389c352f1f8b577b4850778f5182e4a39a5241facbe48361fec817f56d02b51691b383010843fb08b34a8e8ea3614688fd5
languageName: node
linkType: hard
@@ -7822,14 +7815,14 @@ __metadata:
languageName: node
linkType: hard
-"@redis/client@npm:1.6.0, @redis/client@npm:^1.6.0":
- version: 1.6.0
- resolution: "@redis/client@npm:1.6.0"
+"@redis/client@npm:1.6.1, @redis/client@npm:^1.6.0":
+ version: 1.6.1
+ resolution: "@redis/client@npm:1.6.1"
dependencies:
cluster-key-slot: "npm:1.1.2"
generic-pool: "npm:3.9.0"
yallist: "npm:4.0.0"
- checksum: 10c0/c80a01b4f72d32284515dac6d1aefe0e9c881d08b8db33281f87b51650c1c116b18074a29ca81599d15dccb37b29eef9b26a75a5755150ae27d163e680c34bf6
+ checksum: 10c0/216c61f5aa2fef212386c2ef5b5f6d10f44244f6928682f370e190402d23338e11260377c08e87dd6d678408fa7c0a6b7bb5571ecadb830abfa3d7355b9eff1e
languageName: node
linkType: hard
@@ -7870,8 +7863,8 @@ __metadata:
linkType: hard
"@reduxjs/toolkit@npm:^2.5.0":
- version: 2.8.0
- resolution: "@reduxjs/toolkit@npm:2.8.0"
+ version: 2.8.2
+ resolution: "@reduxjs/toolkit@npm:2.8.2"
dependencies:
"@standard-schema/spec": "npm:^1.0.0"
"@standard-schema/utils": "npm:^0.3.0"
@@ -7887,7 +7880,7 @@ __metadata:
optional: true
react-redux:
optional: true
- checksum: 10c0/dd19b115234861911b91ae258ed047247a0a09a8750eb0ec9f3ca83b37590f2bfc2c56f56dd541fa24f55d8e9dfbad2360d3737c3168c9adcb9895c621a6a827
+ checksum: 10c0/6a7a33bad5f1100340757151ff86ca0c4c248f030ae56ce0e6f1d98b39fa87c8f193e9faa2ebd6d5a4c0416921e9f9f7a2bbdd81156c39f08f6bf5ce70c2b927
languageName: node
linkType: hard
@@ -7899,49 +7892,27 @@ __metadata:
linkType: hard
"@reown/appkit-adapter-wagmi@npm:^1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-adapter-wagmi@npm:1.7.11"
- dependencies:
- "@reown/appkit": "npm:1.7.11"
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-polyfills": "npm:1.7.11"
- "@reown/appkit-scaffold-ui": "npm:1.7.11"
- "@reown/appkit-utils": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
+ version: 1.8.1
+ resolution: "@reown/appkit-adapter-wagmi@npm:1.8.1"
+ dependencies:
+ "@reown/appkit": "npm:1.8.1"
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-polyfills": "npm:1.8.1"
+ "@reown/appkit-scaffold-ui": "npm:1.8.1"
+ "@reown/appkit-utils": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
"@wagmi/connectors": "npm:>=5.7.11"
- "@walletconnect/universal-provider": "npm:2.21.3"
- valtio: "npm:1.13.2"
+ "@walletconnect/universal-provider": "npm:2.21.7"
+ valtio: "npm:2.1.5"
peerDependencies:
"@wagmi/core": ">=2.16.7"
- viem: ">=2.31.3"
- wagmi: ">=2.15.6"
+ viem: ">=2.33.3"
+ wagmi: ">=2.16.3"
dependenciesMeta:
"@wagmi/connectors":
optional: true
- checksum: 10c0/4baa19b037ec0290a50a6b8e914e39748a01bb20ae9e3b77bf4a5454a35e71efdeac8cba60f8dabf27adbc0ac93519afab7a8adbe8e185708b725296b87a8378
- languageName: node
- linkType: hard
-
-"@reown/appkit-common@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-common@npm:1.7.11"
- dependencies:
- big.js: "npm:6.2.2"
- dayjs: "npm:1.11.13"
- viem: "npm:>=2.31.3"
- checksum: 10c0/12151fa608f5f15fbb6fd8b6856e1851fa3a1f74e9b73cb47f253d3481bae1a3cc519a17bca47c2eb069bb53f5942ed133a01847359d0d16f22af794fb986a89
- languageName: node
- linkType: hard
-
-"@reown/appkit-common@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-common@npm:1.7.3"
- dependencies:
- big.js: "npm:6.2.2"
- dayjs: "npm:1.11.13"
- viem: "npm:>=2.23.11"
- checksum: 10c0/c938dffc42494daa0e970a22c7b5282da378c08e585d0d2e5c774faa59143f881e24deb0dcc0eb933b3d7b057edf39ef804c5c08439147ff952b1508735bc638
+ checksum: 10c0/e61f2998ae5de2c12b36d72ec56bf39f73ce9f1ffb3f819855e282d881499407e22777bdc382d397c14d6097639b23c530f9aa7ddbdf776f3fa0ad80318435ee
languageName: node
linkType: hard
@@ -7956,29 +7927,14 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-controllers@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-controllers@npm:1.7.11"
- dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
- "@walletconnect/universal-provider": "npm:2.21.3"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.31.3"
- checksum: 10c0/1b889b3709fbfeed27ec3d46108634f5eff146b5e295393421ef06c4eb2f00c0701ca5d1cd0ac5e11b017c8ba829acd6a3be287c7bc6d98588a3388dc7601e7b
- languageName: node
- linkType: hard
-
-"@reown/appkit-controllers@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-controllers@npm:1.7.3"
+"@reown/appkit-common@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-common@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-wallet": "npm:1.7.3"
- "@walletconnect/universal-provider": "npm:2.19.2"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.23.11"
- checksum: 10c0/775c25f7697a0ff59720cfd17c7317ac87284416d2b5e187bd05fba42f6f1294d6cab45c0509fb6faec9477ee60ce3b7cd72b78ae6c393df14fabd1874858650
+ big.js: "npm:6.2.2"
+ dayjs: "npm:1.11.13"
+ viem: "npm:>=2.33.3"
+ checksum: 10c0/2d76f7bc370b0ba5e38857488362faef9d7ea9505c8e31df71203db6b7154f959d28edd7bd837b5e0b0956fa9891fcc5f36f154ffa92223fe8bd156215c02c86
languageName: node
linkType: hard
@@ -7995,17 +7951,16 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-pay@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-pay@npm:1.7.11"
+"@reown/appkit-controllers@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-controllers@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-ui": "npm:1.7.11"
- "@reown/appkit-utils": "npm:1.7.11"
- lit: "npm:3.3.0"
- valtio: "npm:1.13.2"
- checksum: 10c0/2bdb48f809200c521eb5556fb38fadbfde0fb1bb576e1be86ea1f537e1231256e0323b1465e5496893fad43a424c41c7453fc28b502270ab000deb5062fa280b
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
+ "@walletconnect/universal-provider": "npm:2.21.7"
+ valtio: "npm:2.1.5"
+ viem: "npm:>=2.33.3"
+ checksum: 10c0/d57033941a2eabd1d54fbf304c988bd523fd65fc58b08bd5859b162d1bacd27523e2b955fca9e1dcfabc81397bfcc1c0d634b63573f575c92714da11583c8104
languageName: node
linkType: hard
@@ -8023,21 +7978,17 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-polyfills@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-polyfills@npm:1.7.11"
- dependencies:
- buffer: "npm:6.0.3"
- checksum: 10c0/faaeaa162805dd9f675121365a27a9728d8d9c6adae31a77e0a748be655de5581f5e3365635e279255499874fc364481d32df08646a52118e9f96ee7daec2c45
- languageName: node
- linkType: hard
-
-"@reown/appkit-polyfills@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-polyfills@npm:1.7.3"
+"@reown/appkit-pay@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-pay@npm:1.8.1"
dependencies:
- buffer: "npm:6.0.3"
- checksum: 10c0/c2f347ba0dbfc435ca05e53abcc38ec0114478fe6aaaf198a58bf0a938eb44fd18ba4ed5c955f76fa79df7d4e1a15276afc7864573dd2b9d251f58bc33567e6d
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-ui": "npm:1.8.1"
+ "@reown/appkit-utils": "npm:1.8.1"
+ lit: "npm:3.3.0"
+ valtio: "npm:2.1.5"
+ checksum: 10c0/fe6fc474c6f7a63e5514415da3c7a7235ca7b297e1caefd9f35f8b942ac3a7385a41c8d7525111a0d9fab37e691004efcc6fc29c990d41d553fd5106e68cbf2f
languageName: node
linkType: hard
@@ -8050,31 +8001,12 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-scaffold-ui@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-scaffold-ui@npm:1.7.11"
- dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-ui": "npm:1.7.11"
- "@reown/appkit-utils": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
- lit: "npm:3.3.0"
- checksum: 10c0/93b25f09861e963830304ba688c0b3821d40b911ef71dda0b1d66b29b2433d42f7adda5b476260e7b65720acff881563433d4c75c6af8b77732f42f5c8ee04a9
- languageName: node
- linkType: hard
-
-"@reown/appkit-scaffold-ui@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-scaffold-ui@npm:1.7.3"
+"@reown/appkit-polyfills@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-polyfills@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-controllers": "npm:1.7.3"
- "@reown/appkit-ui": "npm:1.7.3"
- "@reown/appkit-utils": "npm:1.7.3"
- "@reown/appkit-wallet": "npm:1.7.3"
- lit: "npm:3.1.0"
- checksum: 10c0/e1511b06ef44da380cd5ff2f11dec65d920f32569de72a862d0ae36cce00e591dd73287df20e16af93734723086340057fbcb156429707cf9cf29a989964a9e0
+ buffer: "npm:6.0.3"
+ checksum: 10c0/dcabae6a2512e70c16666b9f734702129f17c9428fb229b7a51cc41899f3cb4d1e1f4ac1ce19326684b9cb70efaf5248c28f5c8e6949c48b738f332732cb2e28
languageName: node
linkType: hard
@@ -8092,29 +8024,17 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-ui@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-ui@npm:1.7.11"
+"@reown/appkit-scaffold-ui@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-scaffold-ui@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-ui": "npm:1.8.1"
+ "@reown/appkit-utils": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
lit: "npm:3.3.0"
- qrcode: "npm:1.5.3"
- checksum: 10c0/be94df62feb02387c7dc984a4f48f7af5b350adbe04ea88a392e0a14a272f3c24d76afea2070a15e568e286847f85d0be8e216cca22784614bc7e6df77855069
- languageName: node
- linkType: hard
-
-"@reown/appkit-ui@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-ui@npm:1.7.3"
- dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-controllers": "npm:1.7.3"
- "@reown/appkit-wallet": "npm:1.7.3"
- lit: "npm:3.1.0"
- qrcode: "npm:1.5.3"
- checksum: 10c0/d70c1ad9a143cb831c1d005ce1c72a0b8ce1c6cd8aa4a3bc1f515902386873544905ca86b431419bc8b68e4ef608b405538619a55ff4db490020766bf84edbf3
+ checksum: 10c0/3ffdce4b6541c822a36f108a8b36daf4f5aa8b0ba5a0082caa1bf032858ad198703457ce36c469f8a9b99d4c43b2596bcf200a60d4a38f0a7ae7a536b129d112
languageName: node
linkType: hard
@@ -8131,40 +8051,17 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-utils@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-utils@npm:1.7.11"
- dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-polyfills": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
- "@wallet-standard/wallet": "npm:1.1.0"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/universal-provider": "npm:2.21.3"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.31.3"
- peerDependencies:
- valtio: 1.13.2
- checksum: 10c0/a6a9921ea36cbb9b193319af4dba273c26ef4598be1f681c7349b94067b6ba497fff018933fa42d699a14adef68f5b7c6e1ace7253aa93147bcbbc3c26195d55
- languageName: node
- linkType: hard
-
-"@reown/appkit-utils@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-utils@npm:1.7.3"
+"@reown/appkit-ui@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-ui@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-controllers": "npm:1.7.3"
- "@reown/appkit-polyfills": "npm:1.7.3"
- "@reown/appkit-wallet": "npm:1.7.3"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/universal-provider": "npm:2.19.2"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.23.11"
- peerDependencies:
- valtio: 1.13.2
- checksum: 10c0/dbcf4e2b8dc2edf653ba4e9725addd4aed8f36fed7c24d875afcf26300100cc88fa0b3a8048fcdd3ed21d3371d5a63fb43276aa5fefd779f30186b69fe2ad6c1
+ "@phosphor-icons/webcomponents": "npm:2.1.5"
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
+ lit: "npm:3.3.0"
+ qrcode: "npm:1.5.3"
+ checksum: 10c0/b19498ee5a7bc642ad1549bb107dbee8157232c7cbfb7938eeaa8fa110a1e4efb7ac704bf7d2e39ad33cd284671d3182c6572ed2308e6badf5d72ce81572d1ad
languageName: node
linkType: hard
@@ -8186,27 +8083,22 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit-wallet@npm:1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit-wallet@npm:1.7.11"
- dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-polyfills": "npm:1.7.11"
- "@walletconnect/logger": "npm:2.1.2"
- zod: "npm:3.22.4"
- checksum: 10c0/c820b6354d6e565effc7ff0115b754d3bd44dfe07f5d46ae9ece364763821213523dfcf829944bd49e76b15b548b9954a553a167af7c0a4cefa3bea68a3ba9e6
- languageName: node
- linkType: hard
-
-"@reown/appkit-wallet@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit-wallet@npm:1.7.3"
+"@reown/appkit-utils@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-utils@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-polyfills": "npm:1.7.3"
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-polyfills": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
+ "@wallet-standard/wallet": "npm:1.1.0"
"@walletconnect/logger": "npm:2.1.2"
- zod: "npm:3.22.4"
- checksum: 10c0/8468fa16a0fb64d7c45e4e7ed400f49aacf58e7aa74033b68c54b3fdbd74f934f6156c5c95839189b5a9adb746f2611dc2d57ba2ab87efbed4017e286edff50f
+ "@walletconnect/universal-provider": "npm:2.21.7"
+ valtio: "npm:2.1.5"
+ viem: "npm:>=2.33.3"
+ peerDependencies:
+ valtio: 2.1.5
+ checksum: 10c0/beb7a0f0d7608b01e1a30d0260d1477088f56672e7923db8fd39ac55f2fe1954c78d39a973a522e6fc78e603bb90ceb5b1ecae107e23572932fae23a1cb776f9
languageName: node
linkType: hard
@@ -8222,45 +8114,15 @@ __metadata:
languageName: node
linkType: hard
-"@reown/appkit@npm:1.7.11, @reown/appkit@npm:^1.7.11":
- version: 1.7.11
- resolution: "@reown/appkit@npm:1.7.11"
+"@reown/appkit-wallet@npm:1.8.1":
+ version: 1.8.1
+ resolution: "@reown/appkit-wallet@npm:1.8.1"
dependencies:
- "@reown/appkit-common": "npm:1.7.11"
- "@reown/appkit-controllers": "npm:1.7.11"
- "@reown/appkit-pay": "npm:1.7.11"
- "@reown/appkit-polyfills": "npm:1.7.11"
- "@reown/appkit-scaffold-ui": "npm:1.7.11"
- "@reown/appkit-ui": "npm:1.7.11"
- "@reown/appkit-utils": "npm:1.7.11"
- "@reown/appkit-wallet": "npm:1.7.11"
- "@walletconnect/types": "npm:2.21.3"
- "@walletconnect/universal-provider": "npm:2.21.3"
- bs58: "npm:6.0.0"
- semver: "npm:7.7.2"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.31.3"
- checksum: 10c0/0b8436da1f0c95e84b2157067294656816a44559e9a5102697850bdfedc973cd1a9aa77c63d45d06408a70209b4590d1efde57dbc2f373e27172d18a10d2e40e
- languageName: node
- linkType: hard
-
-"@reown/appkit@npm:1.7.3":
- version: 1.7.3
- resolution: "@reown/appkit@npm:1.7.3"
- dependencies:
- "@reown/appkit-common": "npm:1.7.3"
- "@reown/appkit-controllers": "npm:1.7.3"
- "@reown/appkit-polyfills": "npm:1.7.3"
- "@reown/appkit-scaffold-ui": "npm:1.7.3"
- "@reown/appkit-ui": "npm:1.7.3"
- "@reown/appkit-utils": "npm:1.7.3"
- "@reown/appkit-wallet": "npm:1.7.3"
- "@walletconnect/types": "npm:2.19.2"
- "@walletconnect/universal-provider": "npm:2.19.2"
- bs58: "npm:6.0.0"
- valtio: "npm:1.13.2"
- viem: "npm:>=2.23.11"
- checksum: 10c0/0dd83161b3468ffda5c76503540f69eb8f9c9c77ce9e4efb2d5f0bf94127815f44d2b32d0bfb9d30db6e29877905b64379e1d035c6d0a40f5445ac94827714a4
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-polyfills": "npm:1.8.1"
+ "@walletconnect/logger": "npm:2.1.2"
+ zod: "npm:3.22.4"
+ checksum: 10c0/cce73cfa2d01723631775aefd383b814eb21b0ff5bd38a9d42a39dc11ec1440882abda8e597e3883de186bf0dbfbc4150e849414d74eba43aad0c6bd114451f4
languageName: node
linkType: hard
@@ -8285,6 +8147,31 @@ __metadata:
languageName: node
linkType: hard
+"@reown/appkit@npm:1.8.1, @reown/appkit@npm:^1.7.11":
+ version: 1.8.1
+ resolution: "@reown/appkit@npm:1.8.1"
+ dependencies:
+ "@lit/react": "npm:1.0.8"
+ "@reown/appkit-common": "npm:1.8.1"
+ "@reown/appkit-controllers": "npm:1.8.1"
+ "@reown/appkit-pay": "npm:1.8.1"
+ "@reown/appkit-polyfills": "npm:1.8.1"
+ "@reown/appkit-scaffold-ui": "npm:1.8.1"
+ "@reown/appkit-ui": "npm:1.8.1"
+ "@reown/appkit-utils": "npm:1.8.1"
+ "@reown/appkit-wallet": "npm:1.8.1"
+ "@walletconnect/universal-provider": "npm:2.21.7"
+ bs58: "npm:6.0.0"
+ semver: "npm:7.7.2"
+ valtio: "npm:2.1.5"
+ viem: "npm:>=2.33.3"
+ dependenciesMeta:
+ "@lit/react":
+ optional: true
+ checksum: 10c0/2ea0aed511be650328cc82d3af211211a14dfc21a6ed245ca98fb970124c0b03841fd7582428b240f12c0d031f10702ea09f8ba5099712f0c2f02c251d47025f
+ languageName: node
+ linkType: hard
+
"@repeaterjs/repeater@npm:3.0.4":
version: 3.0.4
resolution: "@repeaterjs/repeater@npm:3.0.4"
@@ -8306,6 +8193,13 @@ __metadata:
languageName: node
linkType: hard
+"@rolldown/pluginutils@npm:1.0.0-beta.27":
+ version: 1.0.0-beta.27
+ resolution: "@rolldown/pluginutils@npm:1.0.0-beta.27"
+ checksum: 10c0/9658f235b345201d4f6bfb1f32da9754ca164f892d1cb68154fe5f53c1df42bd675ecd409836dff46884a7847d6c00bdc38af870f7c81e05bba5c2645eb4ab9c
+ languageName: node
+ linkType: hard
+
"@rollup/plugin-inject@npm:^5.0.5":
version: 5.0.5
resolution: "@rollup/plugin-inject@npm:5.0.5"
@@ -8322,9 +8216,9 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.1.3":
- version: 5.1.4
- resolution: "@rollup/pluginutils@npm:5.1.4"
+"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.2.0":
+ version: 5.2.0
+ resolution: "@rollup/pluginutils@npm:5.2.0"
dependencies:
"@types/estree": "npm:^1.0.0"
estree-walker: "npm:^2.0.2"
@@ -8334,146 +8228,146 @@ __metadata:
peerDependenciesMeta:
rollup:
optional: true
- checksum: 10c0/6d58fbc6f1024eb4b087bc9bf59a1d655a8056a60c0b4021d3beaeec3f0743503f52467fd89d2cf0e7eccf2831feb40a05ad541a17637ea21ba10b21c2004deb
+ checksum: 10c0/794890d512751451bcc06aa112366ef47ea8f9125dac49b1abf72ff8b079518b09359de9c60a013b33266541634e765ae61839c749fae0edb59a463418665c55
languageName: node
linkType: hard
-"@rollup/rollup-android-arm-eabi@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.2"
+"@rollup/rollup-android-arm-eabi@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.49.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@rollup/rollup-android-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-android-arm64@npm:4.40.2"
+"@rollup/rollup-android-arm64@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-android-arm64@npm:4.49.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-darwin-arm64@npm:4.40.2"
+"@rollup/rollup-darwin-arm64@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.49.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-x64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-darwin-x64@npm:4.40.2"
+"@rollup/rollup-darwin-x64@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-darwin-x64@npm:4.49.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.40.2"
+"@rollup/rollup-freebsd-arm64@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.49.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-x64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-freebsd-x64@npm:4.40.2"
+"@rollup/rollup-freebsd-x64@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.49.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2"
+"@rollup/rollup-linux-arm-gnueabihf@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.49.0"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-musleabihf@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.40.2"
+"@rollup/rollup-linux-arm-musleabihf@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.49.0"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.40.2"
+"@rollup/rollup-linux-arm64-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.49.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.40.2"
+"@rollup/rollup-linux-arm64-musl@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.49.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2"
+"@rollup/rollup-linux-loongarch64-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.49.0"
conditions: os=linux & cpu=loong64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2"
+"@rollup/rollup-linux-ppc64-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.49.0"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.40.2"
+"@rollup/rollup-linux-riscv64-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.49.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.40.2"
+"@rollup/rollup-linux-riscv64-musl@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.49.0"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-s390x-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.40.2"
+"@rollup/rollup-linux-s390x-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.49.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.40.2"
+"@rollup/rollup-linux-x64-gnu@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.49.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.40.2"
+"@rollup/rollup-linux-x64-musl@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.49.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-win32-arm64-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.40.2"
+"@rollup/rollup-win32-arm64-msvc@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.49.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-win32-ia32-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.40.2"
+"@rollup/rollup-win32-ia32-msvc@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.49.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@rollup/rollup-win32-x64-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.40.2"
+"@rollup/rollup-win32-x64-msvc@npm:4.49.0":
+ version: 4.49.0
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.49.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -8486,9 +8380,9 @@ __metadata:
linkType: hard
"@rushstack/eslint-patch@npm:^1.1.0, @rushstack/eslint-patch@npm:^1.7.2":
- version: 1.11.0
- resolution: "@rushstack/eslint-patch@npm:1.11.0"
- checksum: 10c0/abea8d8cf2f4f50343f74abd6a8173c521ddd09b102021f5aa379ef373c40af5948b23db0e87eca1682e559e09d97d3f0c48ea71edad682c6bf72b840c8675b3
+ version: 1.12.0
+ resolution: "@rushstack/eslint-patch@npm:1.12.0"
+ checksum: 10c0/1e567656d92632c085a446f40767bc451caffe1131e8d6a7a3e8f3e3f4167f5f29744a84c709f2440f299442d4bc68ff773784462166800b8c09c0e08042415b
languageName: node
linkType: hard
@@ -8519,20 +8413,13 @@ __metadata:
languageName: node
linkType: hard
-"@scure/base@npm:1.2.6":
+"@scure/base@npm:1.2.6, @scure/base@npm:^1.1.3, @scure/base@npm:~1.2.2, @scure/base@npm:~1.2.4, @scure/base@npm:~1.2.5":
version: 1.2.6
resolution: "@scure/base@npm:1.2.6"
checksum: 10c0/49bd5293371c4e062cb6ba689c8fe3ea3981b7bb9c000400dc4eafa29f56814cdcdd27c04311c2fec34de26bc373c593a1d6ca6d754398a488d587943b7c128a
languageName: node
linkType: hard
-"@scure/base@npm:^1.1.3, @scure/base@npm:~1.2.2, @scure/base@npm:~1.2.4, @scure/base@npm:~1.2.5":
- version: 1.2.5
- resolution: "@scure/base@npm:1.2.5"
- checksum: 10c0/078928dbcdd21a037b273b81b8b0bd93af8a325e2ffd535b7ccaadd48ee3c15bab600ec2920a209fca0910abc792cca9b01d3336b472405c407440e6c0aa8bd6
- languageName: node
- linkType: hard
-
"@scure/base@npm:~1.1.0, @scure/base@npm:~1.1.6":
version: 1.1.9
resolution: "@scure/base@npm:1.1.9"
@@ -8735,41 +8622,41 @@ __metadata:
languageName: node
linkType: hard
-"@shikijs/engine-oniguruma@npm:^3.7.0":
- version: 3.7.0
- resolution: "@shikijs/engine-oniguruma@npm:3.7.0"
+"@shikijs/engine-oniguruma@npm:^3.12.0":
+ version: 3.12.0
+ resolution: "@shikijs/engine-oniguruma@npm:3.12.0"
dependencies:
- "@shikijs/types": "npm:3.7.0"
+ "@shikijs/types": "npm:3.12.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
- checksum: 10c0/e1ec52ec2255e3330812084d62bde8853d20162b1cd285dbb63440d63d0b16c03b6ce6983982e41ac2fc2eceb3e2f6b2bc1c627d093482c4c3836c4fbb9567b0
+ checksum: 10c0/01bc3f6a8429d10928ad96d6e4f1645954b179d02aa687214409405a19a488421b8375c50636607aadd52865690ca3fcf3b7c46d0e0af15918b6226332eab995
languageName: node
linkType: hard
-"@shikijs/langs@npm:^3.7.0":
- version: 3.7.0
- resolution: "@shikijs/langs@npm:3.7.0"
+"@shikijs/langs@npm:^3.12.0":
+ version: 3.12.0
+ resolution: "@shikijs/langs@npm:3.12.0"
dependencies:
- "@shikijs/types": "npm:3.7.0"
- checksum: 10c0/326e8b014e74d25ce84a63bf7fdd47d5582f85c8404d4c48d6bdacf2f32ab92ddb39b41710ee7eff3daaecbbea7ee96a6c49d427344ee8375551597c74010a81
+ "@shikijs/types": "npm:3.12.0"
+ checksum: 10c0/eb221370ea5c11488c7709ca2f69994d5b981e30ddf7da70deb111ab5ddda9de3dfea063cc647ff137015dc271e612268da59ed07b2b4e1f2661f82828556fe7
languageName: node
linkType: hard
-"@shikijs/themes@npm:^3.7.0":
- version: 3.7.0
- resolution: "@shikijs/themes@npm:3.7.0"
+"@shikijs/themes@npm:^3.12.0":
+ version: 3.12.0
+ resolution: "@shikijs/themes@npm:3.12.0"
dependencies:
- "@shikijs/types": "npm:3.7.0"
- checksum: 10c0/6887eb99b55439988edab21a1af00302eaed6ba0dd7e2bea6c844ff4dfb8879a0c6c2178ba3fcfe2dbf3fd9f3ab6105572c57ae871e147aaceaf53bcc345d0cd
+ "@shikijs/types": "npm:3.12.0"
+ checksum: 10c0/0e24e9effede6ea25be0c1d5c74ce4e24953a46884a2718bb5326716b0919191a3e39c37c8456309a3d50a8e8611cf1caf9d48649a311e48ee5298afb00b4663
languageName: node
linkType: hard
-"@shikijs/types@npm:3.7.0, @shikijs/types@npm:^3.7.0":
- version: 3.7.0
- resolution: "@shikijs/types@npm:3.7.0"
+"@shikijs/types@npm:3.12.0, @shikijs/types@npm:^3.12.0":
+ version: 3.12.0
+ resolution: "@shikijs/types@npm:3.12.0"
dependencies:
"@shikijs/vscode-textmate": "npm:^10.0.2"
"@types/hast": "npm:^3.0.4"
- checksum: 10c0/d7c4fcca358c0585602090e2b4ed0a3f6742b55bea340030c115cb7aa643eac79836baa095517a538d695415458bb48c08b7be7f3c8d1cf1c1c7749a58913a3f
+ checksum: 10c0/b946ce2995cca3e714170a5fb4386de18f9d8aa9a3bc5de47daaa9d63116f5075930cfb137d69c03fd5d62147ab9ecbf44d0c06a1b8bf5c214da0273ad920b16
languageName: node
linkType: hard
@@ -8829,8 +8716,8 @@ __metadata:
linkType: hard
"@slack/bolt@npm:^4.2.1":
- version: 4.3.0
- resolution: "@slack/bolt@npm:4.3.0"
+ version: 4.4.0
+ resolution: "@slack/bolt@npm:4.4.0"
dependencies:
"@slack/logger": "npm:^4.0.0"
"@slack/oauth": "npm:^3.0.3"
@@ -8844,7 +8731,7 @@ __metadata:
tsscmp: "npm:^1.0.6"
peerDependencies:
"@types/express": ^5.0.0
- checksum: 10c0/88946db033cdb87f0fb19fa94a6bab2454d7efa09117b0425692da90e11f73da59889ec862062e62843ef2f7c9ba81727eace19d2f05d38acd3d83d8ee38f5d8
+ checksum: 10c0/5a77185fd8a52d66fea509547ac306543c43c2c194cec6fb4dbec1b340a00b886ac00ba7a7ac8c05f83593d357f1c1138e4aeadd523ebe1e4ccf3020f9915691
languageName: node
linkType: hard
@@ -8858,210 +8745,212 @@ __metadata:
linkType: hard
"@slack/oauth@npm:^3.0.3":
- version: 3.0.3
- resolution: "@slack/oauth@npm:3.0.3"
+ version: 3.0.4
+ resolution: "@slack/oauth@npm:3.0.4"
dependencies:
"@slack/logger": "npm:^4"
- "@slack/web-api": "npm:^7.9.1"
+ "@slack/web-api": "npm:^7.10.0"
"@types/jsonwebtoken": "npm:^9"
"@types/node": "npm:>=18"
jsonwebtoken: "npm:^9"
- lodash.isstring: "npm:^4"
- checksum: 10c0/ade3a8c20eb1ab8b85903acb516a599858812f54e2249f65d35ee0100f9c8733093cb57f8eae28531325e0b5243898e0b49d3862aef85f755615b0d3173ef0bd
+ checksum: 10c0/943ab9673027c3f40a298942b46982db8c00b90078bdefdc160fb4aa6569d2b53457fb61dfe3a34d70ac4fb2707628cf1600696f8e91bfb75044e7821ee7f478
languageName: node
linkType: hard
"@slack/socket-mode@npm:^2.0.4":
- version: 2.0.4
- resolution: "@slack/socket-mode@npm:2.0.4"
+ version: 2.0.5
+ resolution: "@slack/socket-mode@npm:2.0.5"
dependencies:
"@slack/logger": "npm:^4"
- "@slack/web-api": "npm:^7.9.1"
+ "@slack/web-api": "npm:^7.10.0"
"@types/node": "npm:>=18"
"@types/ws": "npm:^8"
eventemitter3: "npm:^5"
ws: "npm:^8"
- checksum: 10c0/881557dbc93980655e04bad56002bb690a8243c916ec42d6fd1005ebcac72b1f67feea82a6d5cec5e2a35be80730e8d04d2b5ae1ef9c8c6857b2ff486cc781d6
+ checksum: 10c0/aed2df0e7c2bf74c2c7d1e72ee84749be7b3f5c3424763a38b3f8b8638eb894aa981f679d9e3201fe34d4290f0dfd07165987086ab8305662675d0233dd627e0
languageName: node
linkType: hard
"@slack/types@npm:^2.14.0, @slack/types@npm:^2.9.0":
- version: 2.14.0
- resolution: "@slack/types@npm:2.14.0"
- checksum: 10c0/2d45b36ee128e202b8b864fa35f5752c9f811a433d598461de83c47bf5fc5c1f45678825b4185007d8151ebb8b0ce00e6541780f4f3af5698855aebfc6550fb8
+ version: 2.16.0
+ resolution: "@slack/types@npm:2.16.0"
+ checksum: 10c0/bd2137e30307c66ea2644c8b6456998480a085e2523afdeb14e3627c28fbdffbd753635ad0057fdfd4fe0acdc50aea3571c308c4e1e3531cf329ca6b9e17b9cd
languageName: node
linkType: hard
-"@slack/web-api@npm:^7.9.1":
- version: 7.9.1
- resolution: "@slack/web-api@npm:7.9.1"
+"@slack/web-api@npm:^7.10.0, @slack/web-api@npm:^7.9.1":
+ version: 7.10.0
+ resolution: "@slack/web-api@npm:7.10.0"
dependencies:
"@slack/logger": "npm:^4.0.0"
"@slack/types": "npm:^2.9.0"
"@types/node": "npm:>=18.0.0"
"@types/retry": "npm:0.12.0"
- axios: "npm:^1.8.3"
+ axios: "npm:^1.11.0"
eventemitter3: "npm:^5.0.1"
- form-data: "npm:^4.0.0"
+ form-data: "npm:^4.0.4"
is-electron: "npm:2.2.2"
is-stream: "npm:^2"
p-queue: "npm:^6"
p-retry: "npm:^4"
retry: "npm:^0.13.1"
- checksum: 10c0/76d5d935518f3c2ab9eea720c0736f5722ac6c3244f4b1ba29aa3f3525803ecc00662209c8a1cce2c2a94ec71d607c05f5f6a24456dd3e60fa65b3fe0c7b9820
+ checksum: 10c0/663273891187eea9041c6cc64bbd736a4925674b4c3c6fc5905368c24a590a47daa84037c802e00fcadb2b92bf12929095736db5c4b14f02993ec7dc724ab22e
languageName: node
linkType: hard
"@slack/webhook@npm:^7.0.5":
- version: 7.0.5
- resolution: "@slack/webhook@npm:7.0.5"
+ version: 7.0.6
+ resolution: "@slack/webhook@npm:7.0.6"
dependencies:
"@slack/types": "npm:^2.9.0"
"@types/node": "npm:>=18.0.0"
- axios: "npm:^1.8.3"
- checksum: 10c0/051342bdbcd6ecf4e01e279e6b98616fa1008a8d4713308c319441458a383886cc6e1479dc55d03aa6cdddea56be42dbe2940b00da1ce75d8c0c2d395bb1441c
+ axios: "npm:^1.11.0"
+ checksum: 10c0/aea2e538403ca29f69157d7377811770b86c9e8e7b9474ab01b7f1738acddd68500e6ae128dd4a0ff3ff7c245b2b87a34e230eb0cfa699630423a2ecc192b432
languageName: node
linkType: hard
-"@smithy/abort-controller@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/abort-controller@npm:4.0.2"
+"@smithy/abort-controller@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/abort-controller@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/d5647478fa61d5d1cf3ac8fe5b91955c679ecf48e0d71638c0ce908fbcc87f166e42722d181f33ae3c37761de89e48c5eecf620f6fd0e99cd86edbb8365dd38d
+ checksum: 10c0/0a16d5571f5aa3d6d43465ce1060263a92c6eba011cf448adaeafb940121981ecb26fabb0185745520cace9dfd9aebe6879930ff3b55c8f1b42ac6a337070f20
languageName: node
linkType: hard
-"@smithy/config-resolver@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/config-resolver@npm:4.1.0"
+"@smithy/config-resolver@npm:^4.1.5":
+ version: 4.1.5
+ resolution: "@smithy/config-resolver@npm:4.1.5"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-config-provider": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.2"
+ "@smithy/util-middleware": "npm:^4.0.5"
tslib: "npm:^2.6.2"
- checksum: 10c0/db67064f27981452788ef8cffa3146a1896b50911379febda7315e0657e4fe3bba6c52414670b9778eb986fe06f7e50d10e7373fa644975a0491d27333e909de
+ checksum: 10c0/f76f2365403411810a205763a6744eb84d4edfc6bedb87ba0d41b4b310b9c693f3cb17610f963f706b06e90c12864fe54617c9ff1f435fe3b94d825f2def2bfb
languageName: node
linkType: hard
-"@smithy/core@npm:^3.3.1":
- version: 3.3.1
- resolution: "@smithy/core@npm:3.3.1"
+"@smithy/core@npm:^3.8.0, @smithy/core@npm:^3.9.0":
+ version: 3.9.0
+ resolution: "@smithy/core@npm:3.9.0"
dependencies:
- "@smithy/middleware-serde": "npm:^4.0.3"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/middleware-serde": "npm:^4.0.9"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.2"
- "@smithy/util-stream": "npm:^4.2.0"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-stream": "npm:^4.2.4"
"@smithy/util-utf8": "npm:^4.0.0"
+ "@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
- checksum: 10c0/c11f914ac9b798a6c7da2e1e8d164264118f4547b1a4eedc9c0e8ad329050f25ffa68af7658bcbbe3a852cd9c0055b891856a659bc380c87eca755efff0a548f
+ uuid: "npm:^9.0.1"
+ checksum: 10c0/9d33610e3cb27aebe294a9f75e8a4904b8d3c39aa47dcf6ad31b866ec2f81d23848ae88e60b65b438c9d7486ab69b954d9f4c6a84a6af24e810e341dd9123789
languageName: node
linkType: hard
-"@smithy/credential-provider-imds@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/credential-provider-imds@npm:4.0.2"
+"@smithy/credential-provider-imds@npm:^4.0.7":
+ version: 4.0.7
+ resolution: "@smithy/credential-provider-imds@npm:4.0.7"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/url-parser": "npm:^4.0.2"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
tslib: "npm:^2.6.2"
- checksum: 10c0/516482c103bd42d93de584ec75fa75d1184541816a7b430db109f8ec18abcaf8eb7bd072660fbf417f37a3df5c7438a1ba92aabd5a185ed736be1a6e885f0999
+ checksum: 10c0/862ac40520e2756918e8ecdf2259ec82f1b1556595b3b8d19d7c68390119c416fdd9c716c78773a2ccec21c32cb81f465e0474073a8a90808e171fbdcdcfbd81
languageName: node
linkType: hard
-"@smithy/eventstream-codec@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/eventstream-codec@npm:4.0.2"
+"@smithy/eventstream-codec@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/eventstream-codec@npm:4.0.5"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-hex-encoding": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/865a44e74c81e3177608f8931e22c92c851f586c1344962db3810b2e23d39d4da2d5f7a933d24481c0b6df219404e34db463e76294d3f71445f7d4e5721aa4ea
+ checksum: 10c0/d94928e22468cb6e6d09bdc8a6ee04f05947c141c0b040aa90e95b6edc123ba03a562ff3994b5827c57295981183325ed8e8f6c60448a4eec392227735e86d62
languageName: node
linkType: hard
-"@smithy/eventstream-serde-browser@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/eventstream-serde-browser@npm:4.0.2"
+"@smithy/eventstream-serde-browser@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/eventstream-serde-browser@npm:4.0.5"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/eventstream-serde-universal": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/6974a13448b733b4d98eb368a202a5c2d86389efe10e1d147be1392fb016e010d490368773d915d719973a4d29c419fab7b0eff2dd0abf1f65d1cd3bf26f4fc2
+ checksum: 10c0/352c6b73482d844f8184d6e6ffd28b1f69b376b59a3246a0ab967c990c15b11507323ff6362b27478062865e131739b27bafa7c6dedfa4c52ac8d795ce0cf8f5
languageName: node
linkType: hard
-"@smithy/eventstream-serde-config-resolver@npm:^4.1.0":
- version: 4.1.0
- resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.0"
+"@smithy/eventstream-serde-config-resolver@npm:^4.1.3":
+ version: 4.1.3
+ resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.3"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/41ae76c9ad429e09908658db36f79f0c172496d9ba2727b3566692915bd8ef6df56d692ec1b30d9fa69cfa287d138bccd70422db404d4eef0792fc358d338787
+ checksum: 10c0/bfe98977649bcbfbe93cdbfb118c363759da6910ca8fa462870427dbc6f1f2f835103831147eee7eef27ace1bc58b65a40969c4630cf76be1eedfcd36996fd28
languageName: node
linkType: hard
-"@smithy/eventstream-serde-node@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/eventstream-serde-node@npm:4.0.2"
+"@smithy/eventstream-serde-node@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/eventstream-serde-node@npm:4.0.5"
dependencies:
- "@smithy/eventstream-serde-universal": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/eventstream-serde-universal": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/6f22010305ac1514d19d78dbb14866bd9b9739a72ef557355514ceb264be6aeb40532758c2e3f70e811a762e7efacd8a6eb64c4d859bdcb79253bf92ee8f60ad
+ checksum: 10c0/21c389202d2db2bcff23166b220ff3ba6c178f2b9eff1918317cca24c49cb6e0a53ab7f43fb8039f776f63ffd3a2bf69c909dafa5199d5d4278797cb121d3daa
languageName: node
linkType: hard
-"@smithy/eventstream-serde-universal@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/eventstream-serde-universal@npm:4.0.2"
+"@smithy/eventstream-serde-universal@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/eventstream-serde-universal@npm:4.0.5"
dependencies:
- "@smithy/eventstream-codec": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/eventstream-codec": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/1e486919a7d454c4f5a7f8756d74061943dcf5a72b1ba6f735c0e4e34afabe357713e42daed99ea2c4f52995fb37185bd2b02e6778c2aaf02206068e2ebc306c
+ checksum: 10c0/183c6d4895395bbea34d12d3a87e9c69cc598c19e0cf51ba0036277ab520230fdc4b27026d1e438304b3ac4624a4408df15fc037f5c6a96bec0c71c400711170
languageName: node
linkType: hard
-"@smithy/fetch-http-handler@npm:^5.0.2":
- version: 5.0.2
- resolution: "@smithy/fetch-http-handler@npm:5.0.2"
+"@smithy/fetch-http-handler@npm:^5.1.1":
+ version: 5.1.1
+ resolution: "@smithy/fetch-http-handler@npm:5.1.1"
dependencies:
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/querystring-builder": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/querystring-builder": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-base64": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/3bf84a1fe93c07558a5ba520ab0aca62518c13659d5794094764aaef95acfbcf58ba938c51b9269c485304fdbe7353eb3cd37d7e4c57863d7c50478a9e3ff4fc
+ checksum: 10c0/c07f5cad58d5da7cd0de95e2d600e8dee8cda54bba65e7327c5beb25d2aa3eb815d228944bf20860de8927068d3d80baa28f71ecee0a1a3e131307774f53813b
languageName: node
linkType: hard
-"@smithy/hash-node@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/hash-node@npm:4.0.2"
+"@smithy/hash-node@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/hash-node@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-buffer-from": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/aaec3fb2146d4347e97067de4dd91759de9d0254d03e234dcced1cbd52cf8b3a77067d571bd5767cb6295da7aa7261b87a789bd597cbc45a380cd90bb47f3490
+ checksum: 10c0/6c5aeba12b651d74fa05e03b7019d48193b0fac4995ad84fe313961c4e51d16cdbe46f529a3fe435a061fbe7eebee0620def92f9821add28e466152fd3270560
languageName: node
linkType: hard
-"@smithy/invalid-dependency@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/invalid-dependency@npm:4.0.2"
+"@smithy/invalid-dependency@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/invalid-dependency@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/f0b884ba25c371d3d3f507aebc24e598e23edeadf0a74dfd7092fc49c496cd427ab517454ebde454b2a05916719e01aa98f34603a5396455cc2dc009ad8799e8
+ checksum: 10c0/8cc2a14dc47ac5513641747297e6e7e79dceb687e962e1520949db94597a5ce057f9f92657530b6660df100ef1fcff04cd5d9638847c8ada7f7b431a73f34fd2
languageName: node
linkType: hard
@@ -9083,203 +8972,205 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/middleware-content-length@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/middleware-content-length@npm:4.0.2"
+"@smithy/middleware-content-length@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/middleware-content-length@npm:4.0.5"
dependencies:
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/4ab343b68a15cf461f3b5996460a0730463975d9da739cf40cfb5993794023269a8bd857366f855844290fabb2b340abb6ff473cec4bfd3d6653a64f17e00c4a
+ checksum: 10c0/2bbe3afc2d29bf4153afb52adb2cadc063e745c2e1f3c630ff10bb97ce4fa8ae7e6872082ec1407b638d0c7cb896ebcc27ca190f9aa78635a8e41a2440fe680a
languageName: node
linkType: hard
-"@smithy/middleware-endpoint@npm:^4.1.2":
- version: 4.1.2
- resolution: "@smithy/middleware-endpoint@npm:4.1.2"
- dependencies:
- "@smithy/core": "npm:^3.3.1"
- "@smithy/middleware-serde": "npm:^4.0.3"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/url-parser": "npm:^4.0.2"
- "@smithy/util-middleware": "npm:^4.0.2"
+"@smithy/middleware-endpoint@npm:^4.1.18, @smithy/middleware-endpoint@npm:^4.1.19":
+ version: 4.1.19
+ resolution: "@smithy/middleware-endpoint@npm:4.1.19"
+ dependencies:
+ "@smithy/core": "npm:^3.9.0"
+ "@smithy/middleware-serde": "npm:^4.0.9"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/url-parser": "npm:^4.0.5"
+ "@smithy/util-middleware": "npm:^4.0.5"
tslib: "npm:^2.6.2"
- checksum: 10c0/d37ccbe77a319e7456f0adc3af0b07ddb73b73e84349cb6f25a89fb1104caf045b44e6f4327a3e9187175431c3336785d83967c9591bc75bee1af6d7fceb04b9
+ checksum: 10c0/56dd8c51db30ed07513ea455c8bd0306cbe5225f41558cb1a808c06bd06ab553ec11af18db8a098b0bbeee1346cce05e6d53c28f4721d6e23d516c1a6d9a253a
languageName: node
linkType: hard
-"@smithy/middleware-retry@npm:^4.1.3":
- version: 4.1.3
- resolution: "@smithy/middleware-retry@npm:4.1.3"
- dependencies:
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/service-error-classification": "npm:^4.0.3"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/util-middleware": "npm:^4.0.2"
- "@smithy/util-retry": "npm:^4.0.3"
+"@smithy/middleware-retry@npm:^4.1.19":
+ version: 4.1.20
+ resolution: "@smithy/middleware-retry@npm:4.1.20"
+ dependencies:
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/service-error-classification": "npm:^4.0.7"
+ "@smithy/smithy-client": "npm:^4.5.0"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/util-middleware": "npm:^4.0.5"
+ "@smithy/util-retry": "npm:^4.0.7"
+ "@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
- checksum: 10c0/fc6680454ea5b2bb5bb9e866a59f8c316ba36eb19d2ab400170f798d68c4af002463a175e2d3437d3bba820d2ba9f00ea504fd7f9b529e45cfdbd4cf06f5476d
+ checksum: 10c0/659b18b48cce26a098f0c13b5dc2764132c622b2630f3a7a1da447c0c5d5623685c3b178fd9753ca8f546792621e1bca943ca05215de5f6c58320f1bfd6fa0d4
languageName: node
linkType: hard
-"@smithy/middleware-serde@npm:^4.0.3":
- version: 4.0.3
- resolution: "@smithy/middleware-serde@npm:4.0.3"
+"@smithy/middleware-serde@npm:^4.0.9":
+ version: 4.0.9
+ resolution: "@smithy/middleware-serde@npm:4.0.9"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/0a3b037c8f1cade46abf9c782fe11da3f1a92d59f3c61d5806fe26a0f3c8b20d5e7e9ab919549ba33762e63fb02c60b5e436b9459647af39300b37d975acde2e
+ checksum: 10c0/71dc9d920d36a3f65cc883718e8c74687a7c8074a148ab1a035e395e43c6566a3514f10b4c15a13b98194ecd1d81816932c9df8dfa5955cd347c6049893defc4
languageName: node
linkType: hard
-"@smithy/middleware-stack@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/middleware-stack@npm:4.0.2"
+"@smithy/middleware-stack@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/middleware-stack@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/ef94882966431729f7a7bddf8206b6495d67736b1f26fd88d6d6c283a96f9fffd12632ed7352e5f060f17d3ee1845a9a9da1247c26e4c46ff7011aac20b4aacc
+ checksum: 10c0/2ebe346b8b868d11bf9e5028a225ad1312f7862231ae01c289059291b984127a7c18e17f1fa4d803de09f77441d839bc5e25f8ec9bed10a9a320d0393bc55930
languageName: node
linkType: hard
-"@smithy/node-config-provider@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/node-config-provider@npm:4.0.2"
+"@smithy/node-config-provider@npm:^4.1.4":
+ version: 4.1.4
+ resolution: "@smithy/node-config-provider@npm:4.1.4"
dependencies:
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/shared-ini-file-loader": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/shared-ini-file-loader": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/1a3b26835577e6c698a2ce59cd1dd9a3653c75e24847d35a45cd80124d72e0118b84daff47ee1ae0cdb89c134efdf7c7754d0ccf1e1c4b57467865b269b5cd0b
+ checksum: 10c0/950f9e234b8ffb680d2f5b35bc7ff21f73623caf0612d59daba1991da79126ec33e1afd2f6408534b7910474665ab150bd9d341aa46950bf5903665e71c7da6f
languageName: node
linkType: hard
-"@smithy/node-http-handler@npm:^4.0.4":
- version: 4.0.4
- resolution: "@smithy/node-http-handler@npm:4.0.4"
+"@smithy/node-http-handler@npm:^4.1.1":
+ version: 4.1.1
+ resolution: "@smithy/node-http-handler@npm:4.1.1"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.2"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/querystring-builder": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/abort-controller": "npm:^4.0.5"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/querystring-builder": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/fb621c6ebcf012a99fc442d82965ca18d752f66be6f937a400e3b4e3feef1c259c028c27df9e78fc9ac7c40679b25276cbaa8d7ab82fd111bda64003ef831358
+ checksum: 10c0/a61a841bc6e69c62a983031e8b3faf1ab82abaf0ccd1eb5d3e02e3d99a8be020fa8dff0b2b1f81468db43e0e7be2407785b89e9c6c04035b8b4afde08bed3a98
languageName: node
linkType: hard
-"@smithy/property-provider@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/property-provider@npm:4.0.2"
+"@smithy/property-provider@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/property-provider@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/6effc5ef7895eb4802c6b4c704d5616f50cd0c376da1644176d3aef71396cb65f9df20f4dd85c8301a9fa24f8ac53601e0634463f4364f0d867928efa5eb5e3d
+ checksum: 10c0/67b828f4ddfb90a90e8a919328bb3c842612115d84d949087988fd8558cd143ec8f7dc437936ef41f9427a7ea2a6ec6a726c5f92a9c12e8c7bef831c4b4f16f0
languageName: node
linkType: hard
-"@smithy/protocol-http@npm:^5.1.0":
- version: 5.1.0
- resolution: "@smithy/protocol-http@npm:5.1.0"
+"@smithy/protocol-http@npm:^5.1.3":
+ version: 5.1.3
+ resolution: "@smithy/protocol-http@npm:5.1.3"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/bb2f600853c0282630f5f32286a07a37294a57dbbec25ea0c6fbb6be32341b1be83e37933c2e3540e513c90dcb08f492bcb05980cde0b92b083e67ade6d56eb0
+ checksum: 10c0/5adc1e69b9e2d7c90acfe1a9b731c4f233173e035eb9e8e3dd5fabf63d9a765aff54912a0e94f4f4bff494f4caa9ec40bd53cdc1a94028f561ab5c9649f2790f
languageName: node
linkType: hard
-"@smithy/querystring-builder@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/querystring-builder@npm:4.0.2"
+"@smithy/querystring-builder@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/querystring-builder@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-uri-escape": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/2ae27840e21982926182df809872e07d6b10b2fd93b58e02fa3f9588de23d333ddf02f0f3517de8a02a949489733bdcecb8c847980f8fb12ce1f8c3b6d127e86
+ checksum: 10c0/649a046a14f25d5febba341dedd577c9fce80aa86970dc2af0b0289a2b6326731c19ddefcae172a0162a4a73306ad823533528751a0067c910efce3cabe06675
languageName: node
linkType: hard
-"@smithy/querystring-parser@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/querystring-parser@npm:4.0.2"
+"@smithy/querystring-parser@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/querystring-parser@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/e6115fce0a07b1509f407cd3eca371cce1d9c09c7e3bd9156e35506b8ab1100f9864fb8779d4dbe0169501af23f062ebc2176afc012e9132e917781cd11a2f82
+ checksum: 10c0/e12a2e19137bc95487c51652dd20f6cd0199854986019e5461f14f797fda3cda3ec4786ff45af853aa64ab75a2a91d18f3f8320276f7e407016f80e33604564d
languageName: node
linkType: hard
-"@smithy/service-error-classification@npm:^4.0.3":
- version: 4.0.3
- resolution: "@smithy/service-error-classification@npm:4.0.3"
+"@smithy/service-error-classification@npm:^4.0.7":
+ version: 4.0.7
+ resolution: "@smithy/service-error-classification@npm:4.0.7"
dependencies:
- "@smithy/types": "npm:^4.2.0"
- checksum: 10c0/bc8a1239f2176fc0e980624e189871b309b0d61c5652022df236f34cd96e97f15719fd44c9d74cf2e1b632f5620a0fcccc6db77dbf9452bcec4e427456d96563
+ "@smithy/types": "npm:^4.3.2"
+ checksum: 10c0/fe44ce36c8759c74a63adc52c47b638ee0a34ea32752d9c5923c370f0497a412ced51d8b83e444303d8d9d544d30d3d16fecb39c9f5cda8622b293704ce999a2
languageName: node
linkType: hard
-"@smithy/shared-ini-file-loader@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/shared-ini-file-loader@npm:4.0.2"
+"@smithy/shared-ini-file-loader@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/shared-ini-file-loader@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/1e3d4921b6efbd1aa448a775dcb9a490d0221dd0a4fee434c5d83376de478013b3ad06d58a3d52db781124d4a53bd289fffcdb52eabffe9de152b0010332cee2
+ checksum: 10c0/9fafb7d4cf10398cf07a2ad7b619b05f136a2a774b1d104eb43b1862f1297d1f88f7e6d72198df43bef35cdf5938b8b5bcf0e896a8bb406474920d0f653a0a4b
languageName: node
linkType: hard
-"@smithy/signature-v4@npm:^5.1.0":
- version: 5.1.0
- resolution: "@smithy/signature-v4@npm:5.1.0"
+"@smithy/signature-v4@npm:^5.1.3":
+ version: 5.1.3
+ resolution: "@smithy/signature-v4@npm:5.1.3"
dependencies:
"@smithy/is-array-buffer": "npm:^4.0.0"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-hex-encoding": "npm:^4.0.0"
- "@smithy/util-middleware": "npm:^4.0.2"
+ "@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-uri-escape": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/7f3aed4999b47f04485846a90a08d0863c8bf4201a38616faf4bcb3166892a5b2946e7d0f1d5dc068b667913713873e21ab8374d60c1ff02828972d8c9201282
+ checksum: 10c0/122a918ee070215e5cea8040605d905143a724b5bb0e5c904085f7a7a4b3d87701e5674b39cc8c9e13639b077994739edcdf33c3884172f363bcf68071c2abc7
languageName: node
linkType: hard
-"@smithy/smithy-client@npm:^4.2.2":
- version: 4.2.2
- resolution: "@smithy/smithy-client@npm:4.2.2"
- dependencies:
- "@smithy/core": "npm:^3.3.1"
- "@smithy/middleware-endpoint": "npm:^4.1.2"
- "@smithy/middleware-stack": "npm:^4.0.2"
- "@smithy/protocol-http": "npm:^5.1.0"
- "@smithy/types": "npm:^4.2.0"
- "@smithy/util-stream": "npm:^4.2.0"
+"@smithy/smithy-client@npm:^4.4.10, @smithy/smithy-client@npm:^4.5.0":
+ version: 4.5.0
+ resolution: "@smithy/smithy-client@npm:4.5.0"
+ dependencies:
+ "@smithy/core": "npm:^3.9.0"
+ "@smithy/middleware-endpoint": "npm:^4.1.19"
+ "@smithy/middleware-stack": "npm:^4.0.5"
+ "@smithy/protocol-http": "npm:^5.1.3"
+ "@smithy/types": "npm:^4.3.2"
+ "@smithy/util-stream": "npm:^4.2.4"
tslib: "npm:^2.6.2"
- checksum: 10c0/78c3f90f042b8dfe82318dba554a1032ac01f289842d614ad4e462cb033fb85c2360fe26398aaa6c5b1f093717753a7039c745942f5f5333dbbc2400b8c76a42
+ checksum: 10c0/45e547d0a59b6e17907dadc463cbda59fe1e2ded08c9b35cf44b5cfede0d05cae1eefcaca8f25015caadef9eb48e834e180938350801e226e306fbe6eb0dc2be
languageName: node
linkType: hard
-"@smithy/types@npm:^4.2.0":
- version: 4.2.0
- resolution: "@smithy/types@npm:4.2.0"
+"@smithy/types@npm:^4.3.2":
+ version: 4.3.2
+ resolution: "@smithy/types@npm:4.3.2"
dependencies:
tslib: "npm:^2.6.2"
- checksum: 10c0/a8bd92c7e548bcbe7be211152de041ec164cfcc857d7574a87b1667c38827e5616563c13bd38a1d44b88bbfa3ee8f591dc597d4e2d50f3bc74e320ea82d7c49e
+ checksum: 10c0/120c5d38f6362c86e6493cce3b9ca9902cd986dab773b39664ff6a95b787c45481f1b1d230f45a6f5ad0c045fb690dc96b51b9ca7b5e9487714a652ed98231f6
languageName: node
linkType: hard
-"@smithy/url-parser@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/url-parser@npm:4.0.2"
+"@smithy/url-parser@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/url-parser@npm:4.0.5"
dependencies:
- "@smithy/querystring-parser": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/querystring-parser": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/3da40fc18871c145bcbbb036a3d767ae113b954e94c745770f268dc877378cbafa6fc06759ea5a5e5c159a88e7331739b35b69f4d110ba0bd04b2d0923443f32
+ checksum: 10c0/19cb3c8a80a7a42936d47011e5991cee6d548f233cde2bf36ccb6c547d075bbc30e3be67e92f60aaf17c4f3875766be319a3da8399af40767a77b04aea3d9ee5
languageName: node
linkType: hard
@@ -9341,42 +9232,42 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-browser@npm:^4.0.10":
- version: 4.0.10
- resolution: "@smithy/util-defaults-mode-browser@npm:4.0.10"
+"@smithy/util-defaults-mode-browser@npm:^4.0.26":
+ version: 4.0.27
+ resolution: "@smithy/util-defaults-mode-browser@npm:4.0.27"
dependencies:
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/smithy-client": "npm:^4.5.0"
+ "@smithy/types": "npm:^4.3.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/134d7a22cfeabf715217054c22f4f36ed42a7e2935d9e9767088fc684a1b9bce3c1ca511ba0f683761c106b4beb6e2da9cc35687974316116b31e959ca46ee12
+ checksum: 10c0/76008f7e82560ff30314c254014d634d559f3ed2c96c01f079f76c795a8fd7b33e66ee8fb0387af4b03e60d14f35695ddacc7cacb76098c22ab32742a4b84d04
languageName: node
linkType: hard
-"@smithy/util-defaults-mode-node@npm:^4.0.10":
- version: 4.0.10
- resolution: "@smithy/util-defaults-mode-node@npm:4.0.10"
+"@smithy/util-defaults-mode-node@npm:^4.0.26":
+ version: 4.0.27
+ resolution: "@smithy/util-defaults-mode-node@npm:4.0.27"
dependencies:
- "@smithy/config-resolver": "npm:^4.1.0"
- "@smithy/credential-provider-imds": "npm:^4.0.2"
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/property-provider": "npm:^4.0.2"
- "@smithy/smithy-client": "npm:^4.2.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/config-resolver": "npm:^4.1.5"
+ "@smithy/credential-provider-imds": "npm:^4.0.7"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/property-provider": "npm:^4.0.5"
+ "@smithy/smithy-client": "npm:^4.5.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/9e099ed858696cdba80e44014359b94e4190f8d4e05939180094c26cdcdbe593eca998a161966a66e30c7873c449a33ba9be9dbe2a2282659da28bc490e3668c
+ checksum: 10c0/7668536e35508cddc5d712b6547ba724aa389cf01d664b351261b09f9e59cd7e1f57dbe48ae17a890fa7315cbc32b4685640f5b0771b2f6770da1751894a4bfe
languageName: node
linkType: hard
-"@smithy/util-endpoints@npm:^3.0.2":
- version: 3.0.2
- resolution: "@smithy/util-endpoints@npm:3.0.2"
+"@smithy/util-endpoints@npm:^3.0.7":
+ version: 3.0.7
+ resolution: "@smithy/util-endpoints@npm:3.0.7"
dependencies:
- "@smithy/node-config-provider": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/node-config-provider": "npm:^4.1.4"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/5d2fe3956dc528842c071329bc69bd6567462858c1fbb1cc7ca19622227a803b54d95f44f3ac703852bce6349f455bfec599aea51df56d02e3c8b12e6481c27a
+ checksum: 10c0/7024005a8a4f77ebae52d1dce538d76db3567c6fb22b06ba601dba4d4d8668cb4dbadd229015d02bb6bdb1a5aaa6b2d1c826cfcf412257ceb9dfe52c7ab95fca
languageName: node
linkType: hard
@@ -9389,40 +9280,40 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-middleware@npm:^4.0.2":
- version: 4.0.2
- resolution: "@smithy/util-middleware@npm:4.0.2"
+"@smithy/util-middleware@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@smithy/util-middleware@npm:4.0.5"
dependencies:
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/18c3882c94f1b1bbb3825c30d1e41ae77a8da3dcd93ebbf1c486f34d5db9e06431789aef54d1b1fbb0424b115fc1e1ae17d27efe4af4277173d901a76147fef8
+ checksum: 10c0/74d9bdbcea4c4aa5304197417c370346b230b7a89893ba0dee0d9771b6ead2628a53fb8a64a3822bf1a30a176ebba2c16ece7003c21880a7ff54be0955356606
languageName: node
linkType: hard
-"@smithy/util-retry@npm:^4.0.3":
- version: 4.0.3
- resolution: "@smithy/util-retry@npm:4.0.3"
+"@smithy/util-retry@npm:^4.0.7":
+ version: 4.0.7
+ resolution: "@smithy/util-retry@npm:4.0.7"
dependencies:
- "@smithy/service-error-classification": "npm:^4.0.3"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/service-error-classification": "npm:^4.0.7"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/a00c47182efed65f3a86afc28fef69ae1e083965cc69f18bc82fb86e23179c3d083639c4819c97a625924b207dc1efaf7b68cf52e1c030f7c9a9625bbea215e0
+ checksum: 10c0/09c633f59ac51203d917548ceb4caf7678e24c87eea024e97e8d62a918be4a76a1c517622b7e9841cf0e9f50778d6787f62efe6c25ae514ed7068e2323303c72
languageName: node
linkType: hard
-"@smithy/util-stream@npm:^4.2.0":
- version: 4.2.0
- resolution: "@smithy/util-stream@npm:4.2.0"
+"@smithy/util-stream@npm:^4.2.4":
+ version: 4.2.4
+ resolution: "@smithy/util-stream@npm:4.2.4"
dependencies:
- "@smithy/fetch-http-handler": "npm:^5.0.2"
- "@smithy/node-http-handler": "npm:^4.0.4"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/fetch-http-handler": "npm:^5.1.1"
+ "@smithy/node-http-handler": "npm:^4.1.1"
+ "@smithy/types": "npm:^4.3.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-buffer-from": "npm:^4.0.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
- checksum: 10c0/52449a6ec68a483fdeef816128c923c744e278f6cf4d5b6fbe50e29fa8b6e5813df26221389f22bce143deb91f047ac56f87db85306908c5d0b87460e162bf63
+ checksum: 10c0/45d2945656a68822272eb5e37e447bd161861722d841712d087cc0aaf93ad0da8162eef2164d1a35f55a7124cb8815b357b766c21442b23ea972b1d5345f0526
languageName: node
linkType: hard
@@ -9455,14 +9346,14 @@ __metadata:
languageName: node
linkType: hard
-"@smithy/util-waiter@npm:^4.0.3":
- version: 4.0.3
- resolution: "@smithy/util-waiter@npm:4.0.3"
+"@smithy/util-waiter@npm:^4.0.7":
+ version: 4.0.7
+ resolution: "@smithy/util-waiter@npm:4.0.7"
dependencies:
- "@smithy/abort-controller": "npm:^4.0.2"
- "@smithy/types": "npm:^4.2.0"
+ "@smithy/abort-controller": "npm:^4.0.5"
+ "@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
- checksum: 10c0/0ca992cd85719b367655943df08e8f7f0dd0f4ffe335809de7ed4c133ee2db5b58a2661cfc43040cf91512ef21783c8302fc2352f95910ecf3f0a50b0e32c2ff
+ checksum: 10c0/14caffd913b9b18ff4f33d6bb1f05eef2e354104a6db2b69654d7db4582c4be46b202d46af87a66177a8a3a99082fa8b0948195de8aeb63998c6ed5b04f2bd3d
languageName: node
linkType: hard
@@ -9473,17 +9364,10 @@ __metadata:
languageName: node
linkType: hard
-"@solidity-parser/parser@npm:^0.19.0":
- version: 0.19.0
- resolution: "@solidity-parser/parser@npm:0.19.0"
- checksum: 10c0/2f4c885bb32ca95ea41120f0d972437b4191d26aa63ea62b7904d075e1b90f4290996407ef84a46a20f66e4268f41fb07fc0edc7142afc443511e8c74b37c6e9
- languageName: node
- linkType: hard
-
"@solidity-parser/parser@npm:^0.20.1":
- version: 0.20.1
- resolution: "@solidity-parser/parser@npm:0.20.1"
- checksum: 10c0/fa08c719bace194cb82be80f0efd9c57863aea831ff587a9268752a84a35f00daa8c28c9f5587c64d5cbb969a98f8df714088acdd581702376e45d48d57ee8af
+ version: 0.20.2
+ resolution: "@solidity-parser/parser@npm:0.20.2"
+ checksum: 10c0/23b0b7ed343a4fa55cb8621cf4fc81b0bdd791a4ee7e96ced7778db07de66d4e418db2c2dc1525b1f82fc0310ac829c78382327292b37e35cb30a19961fcb429
languageName: node
linkType: hard
@@ -9509,15 +9393,15 @@ __metadata:
linkType: hard
"@stripe/react-stripe-js@npm:^3.0.0":
- version: 3.7.0
- resolution: "@stripe/react-stripe-js@npm:3.7.0"
+ version: 3.9.2
+ resolution: "@stripe/react-stripe-js@npm:3.9.2"
dependencies:
prop-types: "npm:^15.7.2"
peerDependencies:
"@stripe/stripe-js": ">=1.44.1 <8.0.0"
react: ">=16.8.0 <20.0.0"
react-dom: ">=16.8.0 <20.0.0"
- checksum: 10c0/663e9176b0a710632abe64bb7efca63a22d8cf690942a4507d57ba1d4fb6328cd08e3cf9040ea95348540c47ed8dbc5250982b150b38eb9564861dc0ecd83d72
+ checksum: 10c0/a082fd6c7347f3debd7cc5e4bf01e655061d4d21a2bf9e5c47ab721bf7bcd05075f75cfa0b7eee953b8622611cffa7b34ccd80283cd57f08a22b6fa348f32253
languageName: node
linkType: hard
@@ -9663,13 +9547,13 @@ __metadata:
linkType: hard
"@tanstack/eslint-plugin-query@npm:^5.60.1":
- version: 5.74.7
- resolution: "@tanstack/eslint-plugin-query@npm:5.74.7"
+ version: 5.83.1
+ resolution: "@tanstack/eslint-plugin-query@npm:5.83.1"
dependencies:
- "@typescript-eslint/utils": "npm:^8.18.1"
+ "@typescript-eslint/utils": "npm:^8.37.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- checksum: 10c0/7f026af15918e0f77e1032c0e53d70fd952d32735b0987a84d0df2b1c6b47ac01773da3812d579c999c398dd677d45400e133a1b3c2979e3f125028743451850
+ checksum: 10c0/b4a041c4341a9a41ff9cdad9201bff464d4102394aa321dbbdcf8524a1a6789517223729c7fc4b7c219a25db8822ba769e70441d9f6816a8d56396acf40b335c
languageName: node
linkType: hard
@@ -9682,87 +9566,71 @@ __metadata:
languageName: node
linkType: hard
-"@tanstack/query-core@npm:5.75.5":
- version: 5.75.5
- resolution: "@tanstack/query-core@npm:5.75.5"
- checksum: 10c0/3627f9580df5b4a032ff830c1b1f6fa55ae754962a6aaab4ee79607917c9fbd98ce8f7302cc4c88e5b19fd6378689163eb42f32a83c05fe2dc81e7899c94d0df
+"@tanstack/query-core@npm:5.85.5":
+ version: 5.85.5
+ resolution: "@tanstack/query-core@npm:5.85.5"
+ checksum: 10c0/344670ac117bc4775a9e812fc91e27befc9ef4f681e341d8f76af3cd075eecdcc5aa058a9544a6b56cccb8e07f22ef5c9e0c852331d428bcce5e1223deef14bd
languageName: node
linkType: hard
-"@tanstack/query-core@npm:5.80.7":
- version: 5.80.7
- resolution: "@tanstack/query-core@npm:5.80.7"
- checksum: 10c0/bd96393e1a94aebc4d10da05e03de89ddce09d7266d0fcff2785480c544425d732f9fb03ecb93c96520980f57655f143452b9701f9bcb620cd07a04077018583
+"@tanstack/query-devtools@npm:5.84.0":
+ version: 5.84.0
+ resolution: "@tanstack/query-devtools@npm:5.84.0"
+ checksum: 10c0/8257bebbf648e850f0186175a6e17aa6ac50e2dbb9413953927a698a2f73db8009693980f4c6b0f928a703be353a0b1bd1316031029818be7672db98c1b42cde
languageName: node
linkType: hard
-"@tanstack/query-devtools@npm:5.74.7":
- version: 5.74.7
- resolution: "@tanstack/query-devtools@npm:5.74.7"
- checksum: 10c0/2c1f113d81b9645f5c90e0cfdf47bce1d3244c57e930207589403258b434680ceddb996e6d9bfcdfb02d0582be54558f5196e2e4c395767d3a85620c45fc6271
- languageName: node
- linkType: hard
-
-"@tanstack/query-persist-client-core@npm:5.75.5":
- version: 5.75.5
- resolution: "@tanstack/query-persist-client-core@npm:5.75.5"
- dependencies:
- "@tanstack/query-core": "npm:5.75.5"
- checksum: 10c0/0ba0b820d93dbcb92fafdbcb91febd4ff6e73b52e79db2b1623cbe66775d3199fca7a3a9e2893b819f5cd0eaa827891ff6aa3b599b4654855e17b2d197428cc1
- languageName: node
- linkType: hard
-
-"@tanstack/query-persist-client-core@npm:5.80.7":
- version: 5.80.7
- resolution: "@tanstack/query-persist-client-core@npm:5.80.7"
+"@tanstack/query-persist-client-core@npm:5.85.5":
+ version: 5.85.5
+ resolution: "@tanstack/query-persist-client-core@npm:5.85.5"
dependencies:
- "@tanstack/query-core": "npm:5.80.7"
- checksum: 10c0/fb2d51a0d5d85d05b38b73504aa5de1320698b2e88819d579cba247e356faef1b6b1279fddce9ef5baf35ffd4bf6b3fec6e167a38709fed9e3a22aa96eacf6a2
+ "@tanstack/query-core": "npm:5.85.5"
+ checksum: 10c0/31f034d6a783cedd962f96652074f2c4267456eeba795262eb80b777aee36de745ff19354e8c9bd931904a234ad9679dadac14d79e066feb151ea06f8572a1ec
languageName: node
linkType: hard
"@tanstack/query-sync-storage-persister@npm:^5.68.0":
- version: 5.75.5
- resolution: "@tanstack/query-sync-storage-persister@npm:5.75.5"
+ version: 5.85.5
+ resolution: "@tanstack/query-sync-storage-persister@npm:5.85.5"
dependencies:
- "@tanstack/query-core": "npm:5.75.5"
- "@tanstack/query-persist-client-core": "npm:5.75.5"
- checksum: 10c0/6763226b236c5d0ddbf9e3fe29e692af260179775ff88385aa76f2bf359a43604d83797bd23eff65f0bf04b1015ff7090cde7c6a41827767a6c42f0ca6a14fd2
+ "@tanstack/query-core": "npm:5.85.5"
+ "@tanstack/query-persist-client-core": "npm:5.85.5"
+ checksum: 10c0/b2cdde0b1e4dfa2cdf404eb02eee3b29f047b4cd61985b9892c31e7f0ebc945b4c1fa3fd65268a22c3decdf6001aadb2c5df378eb57fff2f227c78aa30b4bb18
languageName: node
linkType: hard
"@tanstack/react-query-devtools@npm:^5.59.16":
- version: 5.75.5
- resolution: "@tanstack/react-query-devtools@npm:5.75.5"
+ version: 5.85.5
+ resolution: "@tanstack/react-query-devtools@npm:5.85.5"
dependencies:
- "@tanstack/query-devtools": "npm:5.74.7"
+ "@tanstack/query-devtools": "npm:5.84.0"
peerDependencies:
- "@tanstack/react-query": ^5.75.5
+ "@tanstack/react-query": ^5.85.5
react: ^18 || ^19
- checksum: 10c0/8d98bdae2231132787efa2a846c34eaf49cda608213a759cb2989b2dd1e17549e3dffa2235b4abca0408e19ed121c4346626f7c2dd56b16e49f0cbbc1a95109c
+ checksum: 10c0/c4d567f9220e2848a6db8be04ec2258bd487e8f9a413037ea9d5a8a3dc6b8f7a972f67cc3bd014bbbf8377568ebe4960b2caf0b9d8c70fdb2ea2ea69297dd198
languageName: node
linkType: hard
"@tanstack/react-query-persist-client@npm:^5.80.7":
- version: 5.80.7
- resolution: "@tanstack/react-query-persist-client@npm:5.80.7"
+ version: 5.85.5
+ resolution: "@tanstack/react-query-persist-client@npm:5.85.5"
dependencies:
- "@tanstack/query-persist-client-core": "npm:5.80.7"
+ "@tanstack/query-persist-client-core": "npm:5.85.5"
peerDependencies:
- "@tanstack/react-query": ^5.80.7
+ "@tanstack/react-query": ^5.85.5
react: ^18 || ^19
- checksum: 10c0/5159256a9afb2aae46e336d5a38f2d1f89c5e5f384f731853575a5d8216165d60731348bac5857bd75233779a0efbfdafb80bca15dd5c6eecd92dce4c2d6e9f9
+ checksum: 10c0/e4abdcb70c2a9317106c06828d5d3506e255428a00cd3a978b545ebaa83e2221cdcf40f09310c3c0a4fc2e5db4eb7652ff55c704f9e50c7c62249fd85fecbd06
languageName: node
linkType: hard
"@tanstack/react-query@npm:^5.67.2, @tanstack/react-query@npm:^5.75.5":
- version: 5.75.5
- resolution: "@tanstack/react-query@npm:5.75.5"
+ version: 5.85.5
+ resolution: "@tanstack/react-query@npm:5.85.5"
dependencies:
- "@tanstack/query-core": "npm:5.75.5"
+ "@tanstack/query-core": "npm:5.85.5"
peerDependencies:
react: ^18 || ^19
- checksum: 10c0/658e6b36577c531659e19da19ce46005ae36e17517409f4105c4e9181b7ec2ac21bd6d1e2415b8e16004fdd4f7c51b724af1327834b16f1d037edabeaf9b1cbc
+ checksum: 10c0/7518cd624f9fe7c258b460192a73021a1e7fe0e0ea4173de69ca0a69cf60cc812bdb59b13c7f9acdbf45f4f0e82e8efb1e739528cf26e334e4a80606d7c7050d
languageName: node
linkType: hard
@@ -9918,12 +9786,12 @@ __metadata:
languageName: node
linkType: hard
-"@tybys/wasm-util@npm:^0.9.0":
- version: 0.9.0
- resolution: "@tybys/wasm-util@npm:0.9.0"
+"@tybys/wasm-util@npm:^0.10.0":
+ version: 0.10.0
+ resolution: "@tybys/wasm-util@npm:0.10.0"
dependencies:
tslib: "npm:^2.4.0"
- checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d
+ checksum: 10c0/044feba55c1e2af703aa4946139969badb183ce1a659a75ed60bc195a90e73a3f3fc53bcd643497c9954597763ddb051fec62f80962b2ca6fc716ba897dc696e
languageName: node
linkType: hard
@@ -9988,11 +9856,11 @@ __metadata:
linkType: hard
"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6":
- version: 7.20.7
- resolution: "@types/babel__traverse@npm:7.20.7"
+ version: 7.28.0
+ resolution: "@types/babel__traverse@npm:7.28.0"
dependencies:
- "@babel/types": "npm:^7.20.7"
- checksum: 10c0/5386f0af44f8746b063b87418f06129a814e16bb2686965a575e9d7376b360b088b89177778d8c426012abc43dd1a2d8ec3218bfc382280c898682746ce2ffbd
+ "@babel/types": "npm:^7.28.2"
+ checksum: 10c0/b52d7d4e8fc6a9018fe7361c4062c1c190f5778cf2466817cb9ed19d69fbbb54f9a85ffedeb748ed8062d2cf7d4cc088ee739848f47c57740de1c48cbf0d0994
languageName: node
linkType: hard
@@ -10006,21 +9874,21 @@ __metadata:
linkType: hard
"@types/bn.js@npm:^5.1.0":
- version: 5.1.6
- resolution: "@types/bn.js@npm:5.1.6"
+ version: 5.2.0
+ resolution: "@types/bn.js@npm:5.2.0"
dependencies:
"@types/node": "npm:*"
- checksum: 10c0/073d383d87afea513a8183ce34af7bc0a7a798d057c7ae651982b7f30dd7d93f33247323bca3ba39f1f6af146b564aff547b15467bdf9fc922796c17e8426bf6
+ checksum: 10c0/7a36114b8e61faba5c28b433c3e5aabded261745dabb8f3fe41b2d84e8c4c2b8282e52a88a842bd31a565ff5dbf685145ccd91171f1a8d657fb249025c17aa85
languageName: node
linkType: hard
"@types/body-parser@npm:*, @types/body-parser@npm:^1":
- version: 1.19.5
- resolution: "@types/body-parser@npm:1.19.5"
+ version: 1.19.6
+ resolution: "@types/body-parser@npm:1.19.6"
dependencies:
"@types/connect": "npm:*"
"@types/node": "npm:*"
- checksum: 10c0/aebeb200f25e8818d8cf39cd0209026750d77c9b85381cdd8deeb50913e4d18a1ebe4b74ca9b0b4d21952511eeaba5e9fbbf739b52731a2061e206ec60d568df
+ checksum: 10c0/542da05c924dce58ee23f50a8b981fee36921850c82222e384931fda3e106f750f7880c47be665217d72dbe445129049db6eb1f44e7a06b09d62af8f3cca8ea7
languageName: node
linkType: hard
@@ -10040,7 +9908,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/chai@npm:*":
+"@types/chai@npm:*, @types/chai@npm:^5.2.2":
version: 5.2.2
resolution: "@types/chai@npm:5.2.2"
dependencies:
@@ -10204,10 +10072,10 @@ __metadata:
languageName: node
linkType: hard
-"@types/estree@npm:*, @types/estree@npm:1.0.7, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6":
- version: 1.0.7
- resolution: "@types/estree@npm:1.0.7"
- checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c
+"@types/estree@npm:*, @types/estree@npm:1.0.8, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6":
+ version: 1.0.8
+ resolution: "@types/estree@npm:1.0.8"
+ checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5
languageName: node
linkType: hard
@@ -10224,37 +10092,37 @@ __metadata:
linkType: hard
"@types/express-serve-static-core@npm:^5.0.0":
- version: 5.0.6
- resolution: "@types/express-serve-static-core@npm:5.0.6"
+ version: 5.0.7
+ resolution: "@types/express-serve-static-core@npm:5.0.7"
dependencies:
"@types/node": "npm:*"
"@types/qs": "npm:*"
"@types/range-parser": "npm:*"
"@types/send": "npm:*"
- checksum: 10c0/aced8cc88c1718adbbd1fc488756b0f22d763368d9eff2ae21b350698fab4a77d8d13c3699056dc662a887e43a8b67a3e8f6289ff76102ecc6bad4a7710d31a6
+ checksum: 10c0/28666f6a0743b8678be920a6eed075bc8afc96fc7d8ef59c3c049bd6b51533da3b24daf3b437d061e053fba1475e4f3175cb4972f5e8db41608e817997526430
languageName: node
linkType: hard
"@types/express@npm:*":
- version: 5.0.1
- resolution: "@types/express@npm:5.0.1"
+ version: 5.0.3
+ resolution: "@types/express@npm:5.0.3"
dependencies:
"@types/body-parser": "npm:*"
"@types/express-serve-static-core": "npm:^5.0.0"
"@types/serve-static": "npm:*"
- checksum: 10c0/e1385028c7251360ce916aab0e304187b613ca18cb9aa3fa90794a337e5b2e0c76330d467f41d3b3e936ce5336c4f3e63e323dc01192cf20f9686905daa6d00a
+ checksum: 10c0/f0fbc8daa7f40070b103cf4d020ff1dd08503477d866d1134b87c0390bba71d5d7949cb8b4e719a81ccba89294d8e1573414e6dcbb5bb1d097a7b820928ebdef
languageName: node
linkType: hard
"@types/express@npm:^4.17.13, @types/express@npm:^4.17.14":
- version: 4.17.21
- resolution: "@types/express@npm:4.17.21"
+ version: 4.17.23
+ resolution: "@types/express@npm:4.17.23"
dependencies:
"@types/body-parser": "npm:*"
"@types/express-serve-static-core": "npm:^4.17.33"
"@types/qs": "npm:*"
"@types/serve-static": "npm:*"
- checksum: 10c0/12e562c4571da50c7d239e117e688dc434db1bac8be55613294762f84fd77fbd0658ccd553c7d3ab02408f385bc93980992369dd30e2ecd2c68c358e6af8fabf
+ checksum: 10c0/60490cd4f73085007247e7d4fafad0a7abdafa34fa3caba2757512564ca5e094ece7459f0f324030a63d513f967bb86579a8682af76ae2fd718e889b0a2a4fe8
languageName: node
linkType: hard
@@ -10301,19 +10169,20 @@ __metadata:
linkType: hard
"@types/hoist-non-react-statics@npm:^3.3.1, @types/hoist-non-react-statics@npm:^3.3.6":
- version: 3.3.6
- resolution: "@types/hoist-non-react-statics@npm:3.3.6"
+ version: 3.3.7
+ resolution: "@types/hoist-non-react-statics@npm:3.3.7"
dependencies:
- "@types/react": "npm:*"
hoist-non-react-statics: "npm:^3.3.0"
- checksum: 10c0/149a4c217d81f21f8a1e152160a59d5b99b6a9aa6d354385d5f5bc02760cbf1e170a8442ba92eb653befff44b0c5bc2234bb77ce33e0d11a65f779e8bab5c321
+ peerDependencies:
+ "@types/react": "*"
+ checksum: 10c0/ed8f4e88338f7d021d0f956adf6089d2a12b2e254a03c05292324f2e986d2376eb9efdb8a4f04596823e8fca88c9d06361d20dab4a2a00dc935fb36ac911de55
languageName: node
linkType: hard
"@types/http-errors@npm:*":
- version: 2.0.4
- resolution: "@types/http-errors@npm:2.0.4"
- checksum: 10c0/494670a57ad4062fee6c575047ad5782506dd35a6b9ed3894cea65830a94367bd84ba302eb3dde331871f6d70ca287bfedb1b2cf658e6132cd2cbd427ab56836
+ version: 2.0.5
+ resolution: "@types/http-errors@npm:2.0.5"
+ checksum: 10c0/00f8140fbc504f47356512bd88e1910c2f07e04233d99c88c854b3600ce0523c8cd0ba7d1897667243282eb44c59abb9245959e2428b9de004f93937f52f7c15
languageName: node
linkType: hard
@@ -10377,12 +10246,12 @@ __metadata:
linkType: hard
"@types/jsonwebtoken@npm:*, @types/jsonwebtoken@npm:^9, @types/jsonwebtoken@npm:^9.0.7":
- version: 9.0.9
- resolution: "@types/jsonwebtoken@npm:9.0.9"
+ version: 9.0.10
+ resolution: "@types/jsonwebtoken@npm:9.0.10"
dependencies:
"@types/ms": "npm:*"
"@types/node": "npm:*"
- checksum: 10c0/d754a7b65fc021b298fc94e8d7a7d71f35dedf24296ac89286f80290abc5dbb0c7830a21440ee9ecbb340efc1b0a21f5609ea298a35b874cae5ad29a65440741
+ checksum: 10c0/0688ac8fb75f809201cb7e18a12b9d80ce539cb9dd27e1b01e11807cb1a337059e899b8ee3abc3f2c9417f02e363a3069d9eab9ef9724b1da1f0e10713514f94
languageName: node
linkType: hard
@@ -10395,10 +10264,10 @@ __metadata:
languageName: node
linkType: hard
-"@types/lodash@npm:^4.17.12, @types/lodash@npm:^4.17.14":
- version: 4.17.16
- resolution: "@types/lodash@npm:4.17.16"
- checksum: 10c0/cf017901b8ab1d7aabc86d5189d9288f4f99f19a75caf020c0e2c77b8d4cead4db0d0b842d009b029339f92399f49f34377dd7c2721053388f251778b4c23534
+"@types/lodash@npm:^4.17.12, @types/lodash@npm:^4.17.14, @types/lodash@npm:^4.17.20":
+ version: 4.17.20
+ resolution: "@types/lodash@npm:4.17.20"
+ checksum: 10c0/98cdd0faae22cbb8079a01a3bb65aa8f8c41143367486c1cbf5adc83f16c9272a2a5d2c1f541f61d0d73da543c16ee1d21cf2ef86cb93cd0cc0ac3bced6dd88f
languageName: node
linkType: hard
@@ -10453,12 +10322,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:*, @types/node@npm:>=13.7.0, @types/node@npm:>=18, @types/node@npm:>=18.0.0, @types/node@npm:>=8.1.0, @types/node@npm:^22.10.5":
- version: 22.15.15
- resolution: "@types/node@npm:22.15.15"
+"@types/node@npm:*, @types/node@npm:>=13.7.0, @types/node@npm:>=18, @types/node@npm:>=18.0.0, @types/node@npm:>=8.1.0":
+ version: 24.3.0
+ resolution: "@types/node@npm:24.3.0"
dependencies:
- undici-types: "npm:~6.21.0"
- checksum: 10c0/3b0c12531c9057ddcbe1cdd869ca6c2f3ea753f1cb3de0a482ca70c3d86f0dbb1d28339aecd8a0c133febda4f4355c012ed9be6ab866297fc23db360fa218dde
+ undici-types: "npm:~7.10.0"
+ checksum: 10c0/96bdeca01f690338957c2dcc92cb9f76c262c10398f8d91860865464412b0f9d309c24d9b03d0bdd26dd47fa7ee3f8227893d5c89bc2009d919a525a22512030
languageName: node
linkType: hard
@@ -10487,12 +10356,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:^22.15.16":
- version: 22.15.16
- resolution: "@types/node@npm:22.15.16"
+"@types/node@npm:^22.10.5, @types/node@npm:^22.15.16":
+ version: 22.18.0
+ resolution: "@types/node@npm:22.18.0"
dependencies:
undici-types: "npm:~6.21.0"
- checksum: 10c0/2bdcca01306fcf991d9255e329425747bdd3b62c7ba9e7d4021969d46f3c9984a4ad2c27ababb4f3b05d49a9e05fc0a8bfce8b452c9b43995e10aca6f66b33bc
+ checksum: 10c0/02cce4493eee8408e66e76fcad164f33c0600ed0854ad08e5519a76a06402da5b589b278cf71bc975c9e014f2668bdf758bc3be7fed63bdbfd0900495372797c
languageName: node
linkType: hard
@@ -10575,14 +10444,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/prop-types@npm:*, @types/prop-types@npm:^15, @types/prop-types@npm:^15.7.12, @types/prop-types@npm:^15.7.14":
- version: 15.7.14
- resolution: "@types/prop-types@npm:15.7.14"
- checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1
- languageName: node
- linkType: hard
-
-"@types/prop-types@npm:^15.7.15":
+"@types/prop-types@npm:*, @types/prop-types@npm:^15, @types/prop-types@npm:^15.7.12, @types/prop-types@npm:^15.7.15":
version: 15.7.15
resolution: "@types/prop-types@npm:15.7.15"
checksum: 10c0/b59aad1ad19bf1733cf524fd4e618196c6c7690f48ee70a327eb450a42aab8e8a063fbe59ca0a5701aebe2d92d582292c0fb845ea57474f6a15f6994b0e260b2
@@ -10590,9 +10452,9 @@ __metadata:
linkType: hard
"@types/qs@npm:*, @types/qs@npm:^6.9.7":
- version: 6.9.18
- resolution: "@types/qs@npm:6.9.18"
- checksum: 10c0/790b9091348e06dde2c8e4118b5771ab386a8c22a952139a2eb0675360a2070d0b155663bf6f75b23f258fd0a1f7ffc0ba0f059d99a719332c03c40d9e9cd63b
+ version: 6.14.0
+ resolution: "@types/qs@npm:6.14.0"
+ checksum: 10c0/5b3036df6e507483869cdb3858201b2e0b64b4793dc4974f188caa5b5732f2333ab9db45c08157975054d3b070788b35088b4bc60257ae263885016ee2131310
languageName: node
linkType: hard
@@ -10643,21 +10505,21 @@ __metadata:
linkType: hard
"@types/react@npm:*":
- version: 19.1.3
- resolution: "@types/react@npm:19.1.3"
+ version: 19.1.12
+ resolution: "@types/react@npm:19.1.12"
dependencies:
csstype: "npm:^3.0.2"
- checksum: 10c0/f158f88871b8df1eeed637942d3e6142abcf505b617e4921ef3763b6d4f22241b9a883d864878dd2b6a2bdc8f4e7f871f24ef88f633d144a63257f4764b9478d
+ checksum: 10c0/e35912b43da0caaab5252444bab87a31ca22950cde2822b3b3dc32e39c2d42dad1a4cf7b5dde9783aa2d007f0b2cba6ab9563fc6d2dbcaaa833b35178118767c
languageName: node
linkType: hard
"@types/react@npm:^18.2.66, @types/react@npm:^18.3.12":
- version: 18.3.21
- resolution: "@types/react@npm:18.3.21"
+ version: 18.3.24
+ resolution: "@types/react@npm:18.3.24"
dependencies:
"@types/prop-types": "npm:*"
csstype: "npm:^3.0.2"
- checksum: 10c0/b33424c62f01ab2404c60abef995e05aa1a696a636bdd77a34ef6c942d171c673b1e451d9dba7f9a169a83c9eef0ddfaf1ba08f6cef542df9404290199a73967
+ checksum: 10c0/9e188fa8e50f172cf647fc48fea2e04d88602afff47190b697de281a8ac88df9ee059864757a2a438ff599eaf9276d9a9e0e60585e88f7d57f01a2e4877d37ec
languageName: node
linkType: hard
@@ -10672,14 +10534,14 @@ __metadata:
linkType: hard
"@types/request@npm:^2.48.8":
- version: 2.48.12
- resolution: "@types/request@npm:2.48.12"
+ version: 2.48.13
+ resolution: "@types/request@npm:2.48.13"
dependencies:
"@types/caseless": "npm:*"
"@types/node": "npm:*"
"@types/tough-cookie": "npm:*"
- form-data: "npm:^2.5.0"
- checksum: 10c0/dd3d03d68af95b1e1961dc51efc63023543a91a74afd481dafb441521a31baa58c42f80d3bdd0d5d4633aa777e31b17f7ff7bed5606ad3f5eb175a65148adbce
+ form-data: "npm:^2.5.5"
+ checksum: 10c0/1c6798d926a6577f213dbc04aa09945590f260ea367537c20824ff337b0a49d56e5199a6a6029e625568d97c3bbb98908bdb8d9158eb421f70a0d03ae230ff72
languageName: node
linkType: hard
@@ -10707,23 +10569,23 @@ __metadata:
linkType: hard
"@types/send@npm:*":
- version: 0.17.4
- resolution: "@types/send@npm:0.17.4"
+ version: 0.17.5
+ resolution: "@types/send@npm:0.17.5"
dependencies:
"@types/mime": "npm:^1"
"@types/node": "npm:*"
- checksum: 10c0/7f17fa696cb83be0a104b04b424fdedc7eaba1c9a34b06027239aba513b398a0e2b7279778af521f516a397ced417c96960e5f50fcfce40c4bc4509fb1a5883c
+ checksum: 10c0/a86c9b89bb0976ff58c1cdd56360ea98528f4dbb18a5c2287bb8af04815513a576a42b4e0e1e7c4d14f7d6ea54733f6ef935ebff8c65e86d9c222881a71e1f15
languageName: node
linkType: hard
"@types/serve-static@npm:*":
- version: 1.15.7
- resolution: "@types/serve-static@npm:1.15.7"
+ version: 1.15.8
+ resolution: "@types/serve-static@npm:1.15.8"
dependencies:
"@types/http-errors": "npm:*"
"@types/node": "npm:*"
"@types/send": "npm:*"
- checksum: 10c0/26ec864d3a626ea627f8b09c122b623499d2221bbf2f470127f4c9ebfe92bd8a6bb5157001372d4c4bd0dd37a1691620217d9dc4df5aa8f779f3fd996b1c60ae
+ checksum: 10c0/8ad86a25b87da5276cb1008c43c74667ff7583904d46d5fcaf0355887869d859d453d7dc4f890788ae04705c23720e9b6b6f3215e2d1d2a4278bbd090a9268dd
languageName: node
linkType: hard
@@ -10776,10 +10638,17 @@ __metadata:
languageName: node
linkType: hard
+"@types/uuid@npm:^9.0.1":
+ version: 9.0.8
+ resolution: "@types/uuid@npm:9.0.8"
+ checksum: 10c0/b411b93054cb1d4361919579ef3508a1f12bf15b5fdd97337d3d351bece6c921b52b6daeef89b62340fd73fd60da407878432a1af777f40648cbe53a01723489
+ languageName: node
+ linkType: hard
+
"@types/validator@npm:^13.11.8":
- version: 13.15.0
- resolution: "@types/validator@npm:13.15.0"
- checksum: 10c0/e05ee9fb59c8b3de0f8910b082e43ffebe1202a2f2bfc0390031d788b2fd68880b365b0cb2b9685d4f8458b2d4e09c7cb6e61d4f24031dc05bafd70e9560738f
+ version: 13.15.2
+ resolution: "@types/validator@npm:13.15.2"
+ checksum: 10c0/2c7ce5b745e2c856d0ecd193469cf0edd5081b17208dfab4f03dd5801b8893dcf4cbcfcb662c2b6a42032940effd33e16a56a7eba9e2776b1804111118e320dc
languageName: node
linkType: hard
@@ -10842,66 +10711,24 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/eslint-plugin@npm:8.33.0"
+"@typescript-eslint/eslint-plugin@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.41.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.33.0"
- "@typescript-eslint/type-utils": "npm:8.33.0"
- "@typescript-eslint/utils": "npm:8.33.0"
- "@typescript-eslint/visitor-keys": "npm:8.33.0"
+ "@typescript-eslint/scope-manager": "npm:8.41.0"
+ "@typescript-eslint/type-utils": "npm:8.41.0"
+ "@typescript-eslint/utils": "npm:8.41.0"
+ "@typescript-eslint/visitor-keys": "npm:8.41.0"
graphemer: "npm:^1.4.0"
ignore: "npm:^7.0.0"
natural-compare: "npm:^1.4.0"
ts-api-utils: "npm:^2.1.0"
peerDependencies:
- "@typescript-eslint/parser": ^8.33.0
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/fdfbba2134bb8aa8effb3686a9ffe0a5d9916b41ccdf4339976e0205734f802fca2631939f892ccedd20eee104d8cd0e691720728baeeee17c0f40d7bfe4205d
- languageName: node
- linkType: hard
-
-"@typescript-eslint/eslint-plugin@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/eslint-plugin@npm:8.35.1"
- dependencies:
- "@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.35.1"
- "@typescript-eslint/type-utils": "npm:8.35.1"
- "@typescript-eslint/utils": "npm:8.35.1"
- "@typescript-eslint/visitor-keys": "npm:8.35.1"
- graphemer: "npm:^1.4.0"
- ignore: "npm:^7.0.0"
- natural-compare: "npm:^1.4.0"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- "@typescript-eslint/parser": ^8.35.1
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/0f369be24644ebea30642512ddae0e602e4ca6bc55ae09d9860f16a3baae6aee1a376c182c61b43d12bc137156e3931f6bac3c73919c9c81b32c962bb5bc544e
- languageName: node
- linkType: hard
-
-"@typescript-eslint/eslint-plugin@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/eslint-plugin@npm:8.39.1"
- dependencies:
- "@eslint-community/regexpp": "npm:^4.10.0"
- "@typescript-eslint/scope-manager": "npm:8.39.1"
- "@typescript-eslint/type-utils": "npm:8.39.1"
- "@typescript-eslint/utils": "npm:8.39.1"
- "@typescript-eslint/visitor-keys": "npm:8.39.1"
- graphemer: "npm:^1.4.0"
- ignore: "npm:^7.0.0"
- natural-compare: "npm:^1.4.0"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- "@typescript-eslint/parser": ^8.39.1
+ "@typescript-eslint/parser": ^8.41.0
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/7a55de558ed6ea6f09ee0b0d994b4a70e1df9f72e4afc7b3073de1b41504a36d905779304d59c34db700af60da3bb438c62480d30462a13b8b72d0b50318aeee
+ checksum: 10c0/29812ee5deeae65e67db29faa8d96bc70255c45788f342b11838850ea29a96e4331622cad3e703ffacaa895372845d44fd6b04786117c78f1a027595adff2e62
languageName: node
linkType: hard
@@ -10988,51 +10815,19 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/parser@npm:8.33.0"
- dependencies:
- "@typescript-eslint/scope-manager": "npm:8.33.0"
- "@typescript-eslint/types": "npm:8.33.0"
- "@typescript-eslint/typescript-estree": "npm:8.33.0"
- "@typescript-eslint/visitor-keys": "npm:8.33.0"
- debug: "npm:^4.3.4"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/3f6aa8476d912a749a4f3e6ae6cbf90a881f1892efb7b3c88f6654fa03e770d8da511d0298615b0eda880b3811e157ed60e47e6a21aa309cbf912e2d5d79d73c
- languageName: node
- linkType: hard
-
-"@typescript-eslint/parser@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/parser@npm:8.35.1"
- dependencies:
- "@typescript-eslint/scope-manager": "npm:8.35.1"
- "@typescript-eslint/types": "npm:8.35.1"
- "@typescript-eslint/typescript-estree": "npm:8.35.1"
- "@typescript-eslint/visitor-keys": "npm:8.35.1"
- debug: "npm:^4.3.4"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/949383d74f6db1b91f90923d50f0ecbacaa972fd56e70553c803a8f64131345afdaf096cf1c1fc4a833ddc06ee44b241811edb5d516d769e244560f5b7f0e0af
- languageName: node
- linkType: hard
-
-"@typescript-eslint/parser@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/parser@npm:8.39.1"
+"@typescript-eslint/parser@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/parser@npm:8.41.0"
dependencies:
- "@typescript-eslint/scope-manager": "npm:8.39.1"
- "@typescript-eslint/types": "npm:8.39.1"
- "@typescript-eslint/typescript-estree": "npm:8.39.1"
- "@typescript-eslint/visitor-keys": "npm:8.39.1"
+ "@typescript-eslint/scope-manager": "npm:8.41.0"
+ "@typescript-eslint/types": "npm:8.41.0"
+ "@typescript-eslint/typescript-estree": "npm:8.41.0"
+ "@typescript-eslint/visitor-keys": "npm:8.41.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/da30372c4e8dee48a0c421996bf0bf73a62a57039ee6b817eda64de2d70fdb88dd20b50615c81be7e68fd29cdd7852829b859bb8539b4a4c78030f93acaf5664
+ checksum: 10c0/ca13ff505e9253aee761741f96714cd65a296bbfcac961efbbf7a909ff3d180b2142a23db0a2a5e50b928fa56586528b7e47ba6301089dd850945018dbf2ef50
languageName: node
linkType: hard
@@ -11089,40 +10884,16 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/project-service@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/project-service@npm:8.33.0"
- dependencies:
- "@typescript-eslint/tsconfig-utils": "npm:^8.33.0"
- "@typescript-eslint/types": "npm:^8.33.0"
- debug: "npm:^4.3.4"
- checksum: 10c0/a863d9e3be5ffb53c9d57b25b7a35149dae01afd942dd7fc36bd72a4230676ae12d0f37a789cddaf1baf71e3b35f09436bebbd081336e667b4181b48d0afe8f5
- languageName: node
- linkType: hard
-
-"@typescript-eslint/project-service@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/project-service@npm:8.35.1"
- dependencies:
- "@typescript-eslint/tsconfig-utils": "npm:^8.35.1"
- "@typescript-eslint/types": "npm:^8.35.1"
- debug: "npm:^4.3.4"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/f8e88d773d7e9f193a05b4daeca1e7571fa0059b36ffad291fc6d83c9df94fbe38c935e076ae29e755bcb6008c4ee5c1073ebb2077258c5c0b53c76a23eb3c16
- languageName: node
- linkType: hard
-
-"@typescript-eslint/project-service@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/project-service@npm:8.39.1"
+"@typescript-eslint/project-service@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/project-service@npm:8.41.0"
dependencies:
- "@typescript-eslint/tsconfig-utils": "npm:^8.39.1"
- "@typescript-eslint/types": "npm:^8.39.1"
+ "@typescript-eslint/tsconfig-utils": "npm:^8.41.0"
+ "@typescript-eslint/types": "npm:^8.41.0"
debug: "npm:^4.3.4"
peerDependencies:
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/40207af4f4e2a260ea276766d502c4736f6dc5488e84bbab6444e2786289ece2dbca2686323c48d4e9c265e409a309bf3d97d4aa03767dff8cc7642b436bda35
+ checksum: 10c0/907ba880fcaf0805fc97012b431536b5b06db6ae4a0095708f9d9a4406feddabd964f09ea4ca99d8fa7bd141dbcc9496f1a9eb6683361a6bb01fb714a361126c
languageName: node
linkType: hard
@@ -11156,87 +10927,39 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.32.0":
- version: 8.32.0
- resolution: "@typescript-eslint/scope-manager@npm:8.32.0"
+"@typescript-eslint/scope-manager@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/scope-manager@npm:8.41.0"
dependencies:
- "@typescript-eslint/types": "npm:8.32.0"
- "@typescript-eslint/visitor-keys": "npm:8.32.0"
- checksum: 10c0/9149d4eebfc7f096a3401a4865e0e552231c91cee362fe3a59c31cf2f0b6b325619f534aed41688c3702867cf86b12454e00055d09e7f229c92083e28e97baac
+ "@typescript-eslint/types": "npm:8.41.0"
+ "@typescript-eslint/visitor-keys": "npm:8.41.0"
+ checksum: 10c0/6b339ac1fc37a1e05dc6de421db9f9b138c357497ec87af2471ad30e48c78b4979d3da40943a1c81fc85d1537326a4f938843434db63d29eff414b9364daf8e8
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/scope-manager@npm:8.33.0"
- dependencies:
- "@typescript-eslint/types": "npm:8.33.0"
- "@typescript-eslint/visitor-keys": "npm:8.33.0"
- checksum: 10c0/eb259add242ce40642e7272b414c92ae9407d97cb304981f17f0de0846d5c4ab47d41816ef13da3d3976fe0b7a74df291525be27e4fe4f0ab5d35e86d340faa0
+"@typescript-eslint/tsconfig-utils@npm:8.41.0, @typescript-eslint/tsconfig-utils@npm:^8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/tsconfig-utils@npm:8.41.0"
+ peerDependencies:
+ typescript: ">=4.8.4 <6.0.0"
+ checksum: 10c0/98618a536b9cb071eacba2970ce2ca1b9243de78f4604c2e350823a5275b9d7d15238dbe6acd197c30c0b6cbbf37782c247d14984e1015a109431e4180d76af6
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/scope-manager@npm:8.35.1"
+"@typescript-eslint/type-utils@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/type-utils@npm:5.62.0"
dependencies:
- "@typescript-eslint/types": "npm:8.35.1"
- "@typescript-eslint/visitor-keys": "npm:8.35.1"
- checksum: 10c0/ddfa0b81f47402874efcdd8e0857142600d90fc4e827243ed0fd058731e77e4beb8f5a60425117d1d4146d84437f538cf303f7bfebbd0f02733b202aa30a8393
- languageName: node
- linkType: hard
-
-"@typescript-eslint/scope-manager@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/scope-manager@npm:8.39.1"
- dependencies:
- "@typescript-eslint/types": "npm:8.39.1"
- "@typescript-eslint/visitor-keys": "npm:8.39.1"
- checksum: 10c0/9466db557c1a0eaaf24b0ece5810413d11390d046bf6e47c4074879e8dba0348b835a21106c842ab20ff85f2384312cf9e20bfe7684e31640696e29957003511
- languageName: node
- linkType: hard
-
-"@typescript-eslint/tsconfig-utils@npm:8.33.0, @typescript-eslint/tsconfig-utils@npm:^8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/tsconfig-utils@npm:8.33.0"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/6e9a8e73e65b925f908f31e00be4f1b8d7e89f45d97fa703f468115943c297fc2cc6f9daa0c12b9607f39186f033ac244515f11710df7e1df8302c815ed57389
- languageName: node
- linkType: hard
-
-"@typescript-eslint/tsconfig-utils@npm:8.35.1, @typescript-eslint/tsconfig-utils@npm:^8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/tsconfig-utils@npm:8.35.1"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/a11b53e05fbc59eff3f95619847fb7222d8b2aa613e602524c9b700be3ce0d48bcf5e5932869df4658f514bd2cdc87c857d484472af3f3f3adf88b6e7e1c26f3
- languageName: node
- linkType: hard
-
-"@typescript-eslint/tsconfig-utils@npm:8.39.1, @typescript-eslint/tsconfig-utils@npm:^8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/tsconfig-utils@npm:8.39.1"
- peerDependencies:
- typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/664dff0b4ae908cb98c78f9ca73c36cf57c3a2206965d9d0659649ffc02347eb30e1452499671a425592f14a2a5c5eb82ae389b34f3c415a12119506b4ebb61c
- languageName: node
- linkType: hard
-
-"@typescript-eslint/type-utils@npm:5.62.0":
- version: 5.62.0
- resolution: "@typescript-eslint/type-utils@npm:5.62.0"
- dependencies:
- "@typescript-eslint/typescript-estree": "npm:5.62.0"
- "@typescript-eslint/utils": "npm:5.62.0"
- debug: "npm:^4.3.4"
- tsutils: "npm:^3.21.0"
- peerDependencies:
- eslint: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/93112e34026069a48f0484b98caca1c89d9707842afe14e08e7390af51cdde87378df29d213d3bbd10a7cfe6f91b228031b56218515ce077bdb62ddea9d9f474
+ "@typescript-eslint/typescript-estree": "npm:5.62.0"
+ "@typescript-eslint/utils": "npm:5.62.0"
+ debug: "npm:^4.3.4"
+ tsutils: "npm:^3.21.0"
+ peerDependencies:
+ eslint: "*"
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: 10c0/93112e34026069a48f0484b98caca1c89d9707842afe14e08e7390af51cdde87378df29d213d3bbd10a7cfe6f91b228031b56218515ce077bdb62ddea9d9f474
languageName: node
linkType: hard
@@ -11274,49 +10997,19 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/type-utils@npm:8.33.0"
- dependencies:
- "@typescript-eslint/typescript-estree": "npm:8.33.0"
- "@typescript-eslint/utils": "npm:8.33.0"
- debug: "npm:^4.3.4"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/4a81c654ba17e8a50e48249f781cb91cddb990044affda7315d9b259aabd638232c9a98ff5f4d45ea3b258098060864026b746fce93ad6b4dcde5e492d93c855
- languageName: node
- linkType: hard
-
-"@typescript-eslint/type-utils@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/type-utils@npm:8.35.1"
+"@typescript-eslint/type-utils@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/type-utils@npm:8.41.0"
dependencies:
- "@typescript-eslint/typescript-estree": "npm:8.35.1"
- "@typescript-eslint/utils": "npm:8.35.1"
- debug: "npm:^4.3.4"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/09041dd64684823da169c0668e6187d237c728bf54771003dc6ddaa895cbd11ad401ff14f096451c689e37815a791ef77beaf80d1f8bbf6b92ee3edbf346bc7c
- languageName: node
- linkType: hard
-
-"@typescript-eslint/type-utils@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/type-utils@npm:8.39.1"
- dependencies:
- "@typescript-eslint/types": "npm:8.39.1"
- "@typescript-eslint/typescript-estree": "npm:8.39.1"
- "@typescript-eslint/utils": "npm:8.39.1"
+ "@typescript-eslint/types": "npm:8.41.0"
+ "@typescript-eslint/typescript-estree": "npm:8.41.0"
+ "@typescript-eslint/utils": "npm:8.41.0"
debug: "npm:^4.3.4"
ts-api-utils: "npm:^2.1.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/430dfefe040eae5f0c8dfbce37b5ce071095a28f335e74793923d113682e26313586e90f7bbe2c2f9bffb0da52ffdf5055ea36b96d9f218cef35aa14853122d5
+ checksum: 10c0/d4f9ae07a30f1cf331c3e3a67f8749b38f199ba5000f7a600492c27f6bec774f15c3553f293c520fb999fb88108665f2785d5261daec1445b17af14a7bb0bfac
languageName: node
linkType: hard
@@ -11341,31 +11034,10 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:8.32.0":
- version: 8.32.0
- resolution: "@typescript-eslint/types@npm:8.32.0"
- checksum: 10c0/86cc1e365bc12b8baf539e8e2d280b068a7d4a4220f5834fe4de182827a971200408a1ad20f9679af4c4bcdafea03dd66319fe7f1d060ce4b5abbf2962ea3062
- languageName: node
- linkType: hard
-
-"@typescript-eslint/types@npm:8.33.0, @typescript-eslint/types@npm:^8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/types@npm:8.33.0"
- checksum: 10c0/348b64eb408719d7711a433fc9716e0c2aab8b3f3676f5a1cc2e00269044132282cf655deb6d0dd9817544116909513de3b709005352d186949d1014fad1a3cb
- languageName: node
- linkType: hard
-
-"@typescript-eslint/types@npm:8.35.1, @typescript-eslint/types@npm:^8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/types@npm:8.35.1"
- checksum: 10c0/136dd1c7a39685baa398406423a97a4b6a66e6aed7cbd6ae698a89b0fde92c76f1415294bec612791d67d7917fda280caa65b9d761e2744e8143506d1f417fb2
- languageName: node
- linkType: hard
-
-"@typescript-eslint/types@npm:8.39.1, @typescript-eslint/types@npm:^8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/types@npm:8.39.1"
- checksum: 10c0/0e188d2d52509a24c500a87adf561387ffcac56b62cb9fd0ca1f929bb3d4eedb6b8f9d516c1890855d39930c9dd8d502d5b4600b8c9cc832d3ebb595d81c7533
+"@typescript-eslint/types@npm:8.41.0, @typescript-eslint/types@npm:^8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/types@npm:8.41.0"
+ checksum: 10c0/4945a7ed7789e0527833ee378b962416d6d0d61eb6c891fe49cb6c8dc8a9adbfc58676080ca767a1f034f74f9a981caf5f4d4706cba5025c0520a801fb45d7e1
languageName: node
linkType: hard
@@ -11425,72 +11097,14 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:8.32.0":
- version: 8.32.0
- resolution: "@typescript-eslint/typescript-estree@npm:8.32.0"
- dependencies:
- "@typescript-eslint/types": "npm:8.32.0"
- "@typescript-eslint/visitor-keys": "npm:8.32.0"
- debug: "npm:^4.3.4"
- fast-glob: "npm:^3.3.2"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:^9.0.4"
- semver: "npm:^7.6.0"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/c366a457b544c52cb26ffe3e07ed9d3c6eea9fa8a181c2fdba9a0d2076e5d3198dedfb8510038b0791bd338773d8c8d2af048b7c69999d3fd8540ef790dbc720
- languageName: node
- linkType: hard
-
-"@typescript-eslint/typescript-estree@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/typescript-estree@npm:8.33.0"
- dependencies:
- "@typescript-eslint/project-service": "npm:8.33.0"
- "@typescript-eslint/tsconfig-utils": "npm:8.33.0"
- "@typescript-eslint/types": "npm:8.33.0"
- "@typescript-eslint/visitor-keys": "npm:8.33.0"
- debug: "npm:^4.3.4"
- fast-glob: "npm:^3.3.2"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:^9.0.4"
- semver: "npm:^7.6.0"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/677b12b2e5780ffaef508bddbf8712fe2c3413f3d14fd8fd0cfbe22952a81c6642b3cc26984cf27fdfc3dd2457ae5f8aa04437d3b0ae32987a1895f9648ca7b2
- languageName: node
- linkType: hard
-
-"@typescript-eslint/typescript-estree@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/typescript-estree@npm:8.35.1"
+"@typescript-eslint/typescript-estree@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/typescript-estree@npm:8.41.0"
dependencies:
- "@typescript-eslint/project-service": "npm:8.35.1"
- "@typescript-eslint/tsconfig-utils": "npm:8.35.1"
- "@typescript-eslint/types": "npm:8.35.1"
- "@typescript-eslint/visitor-keys": "npm:8.35.1"
- debug: "npm:^4.3.4"
- fast-glob: "npm:^3.3.2"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:^9.0.4"
- semver: "npm:^7.6.0"
- ts-api-utils: "npm:^2.1.0"
- peerDependencies:
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/6ef093cf9d7a54a323b3d112c78309b2c24c0f94e2c5b61401db9390eb7ffa3ab1da066c497907d58f0bba6986984ac73a478febd91f0bf11598108cc49f6e02
- languageName: node
- linkType: hard
-
-"@typescript-eslint/typescript-estree@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/typescript-estree@npm:8.39.1"
- dependencies:
- "@typescript-eslint/project-service": "npm:8.39.1"
- "@typescript-eslint/tsconfig-utils": "npm:8.39.1"
- "@typescript-eslint/types": "npm:8.39.1"
- "@typescript-eslint/visitor-keys": "npm:8.39.1"
+ "@typescript-eslint/project-service": "npm:8.41.0"
+ "@typescript-eslint/tsconfig-utils": "npm:8.41.0"
+ "@typescript-eslint/types": "npm:8.41.0"
+ "@typescript-eslint/visitor-keys": "npm:8.41.0"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.3.2"
is-glob: "npm:^4.0.3"
@@ -11499,7 +11113,7 @@ __metadata:
ts-api-utils: "npm:^2.1.0"
peerDependencies:
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/1de1a37fed354600a08bc971492c2f14238f0a4bf07a43bedb416c17b7312d18bec92c68c8f2790bb0a1bffcd757f7962914be9f6213068f18f6c4fdde259af4
+ checksum: 10c0/e86233d895403ec4986ced25f56898b2704a84545bb7dfe933f5c64f2ab969dcb7ada7e21ea7e015c875cc94a0767e70573442724960c631b7b3fc556a984c9c
languageName: node
linkType: hard
@@ -11552,63 +11166,18 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/utils@npm:8.33.0"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.7.0"
- "@typescript-eslint/scope-manager": "npm:8.33.0"
- "@typescript-eslint/types": "npm:8.33.0"
- "@typescript-eslint/typescript-estree": "npm:8.33.0"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/a0adb9e13d8f8d8f86ae2e905f3305ad60732e760364b291de66a857a551485d37c23e923299078a47f75d3cca643e1f2aefa010a0beb4cb0d08d0507c1038e1
- languageName: node
- linkType: hard
-
-"@typescript-eslint/utils@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/utils@npm:8.35.1"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.7.0"
- "@typescript-eslint/scope-manager": "npm:8.35.1"
- "@typescript-eslint/types": "npm:8.35.1"
- "@typescript-eslint/typescript-estree": "npm:8.35.1"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/1fa4877caae48961d160b88fc974bb7bfe355ca2f8f6915987427354ca23621698041678adab5964caf9ad62c17b349110136890688f13b10ab1aaad74ae63d9
- languageName: node
- linkType: hard
-
-"@typescript-eslint/utils@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/utils@npm:8.39.1"
+"@typescript-eslint/utils@npm:8.41.0, @typescript-eslint/utils@npm:^8.37.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/utils@npm:8.41.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.7.0"
- "@typescript-eslint/scope-manager": "npm:8.39.1"
- "@typescript-eslint/types": "npm:8.39.1"
- "@typescript-eslint/typescript-estree": "npm:8.39.1"
+ "@typescript-eslint/scope-manager": "npm:8.41.0"
+ "@typescript-eslint/types": "npm:8.41.0"
+ "@typescript-eslint/typescript-estree": "npm:8.41.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/ebc01d736af43728df9a0915058d0c771dec9cc58846ffdcbb986c78e7dabf547ea7daecd75db58b2af88a3c2a43de8a7e5f81feefacfa31be173fc384d25d77
- languageName: node
- linkType: hard
-
-"@typescript-eslint/utils@npm:^8.18.1":
- version: 8.32.0
- resolution: "@typescript-eslint/utils@npm:8.32.0"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.7.0"
- "@typescript-eslint/scope-manager": "npm:8.32.0"
- "@typescript-eslint/types": "npm:8.32.0"
- "@typescript-eslint/typescript-estree": "npm:8.32.0"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/b5b65555b98c8fc92ec016ce2329f644b4d09def28c36422ce77aad9eda1b4dae009bf97b684357e97dd15de66dddba7d8d86e426e11123dae80f7ca2b4f9bd4
+ checksum: 10c0/3a2ed9b5f801afeccde44dbacdeae0b9c82cc3e1af5e92926929ad86384dc0fb0027152e68c5edfabe904647c2160c0c45ec9c848a8d67c3efb86b78a1343acb
languageName: node
linkType: hard
@@ -11642,43 +11211,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:8.32.0":
- version: 8.32.0
- resolution: "@typescript-eslint/visitor-keys@npm:8.32.0"
- dependencies:
- "@typescript-eslint/types": "npm:8.32.0"
- eslint-visitor-keys: "npm:^4.2.0"
- checksum: 10c0/f2e5254d9b1d00cd6360e27240ad72fbab7bcbaed46944943ff077e12fe4883790571f3734f8cb12c3e278bfd7bc4f8f7192ed899f341c282269a9dd16f0cba0
- languageName: node
- linkType: hard
-
-"@typescript-eslint/visitor-keys@npm:8.33.0":
- version: 8.33.0
- resolution: "@typescript-eslint/visitor-keys@npm:8.33.0"
- dependencies:
- "@typescript-eslint/types": "npm:8.33.0"
- eslint-visitor-keys: "npm:^4.2.0"
- checksum: 10c0/41660f241e78314f69d251792f369ef1eeeab3b40fe4ab11b794d402c95bcb82b61d3e91763e7ab9b0f22011a7ac9c8f9dfd91734d61c9f4eaf4f7660555b53b
- languageName: node
- linkType: hard
-
-"@typescript-eslint/visitor-keys@npm:8.35.1":
- version: 8.35.1
- resolution: "@typescript-eslint/visitor-keys@npm:8.35.1"
- dependencies:
- "@typescript-eslint/types": "npm:8.35.1"
- eslint-visitor-keys: "npm:^4.2.1"
- checksum: 10c0/55b9eb15842a5d5dca11375e436340c731e01b07190c741d2656330f3e4d88b59e1bf3d677681dd091460be2b6e5f2c42e92faea36f947d25382ead5e8118108
- languageName: node
- linkType: hard
-
-"@typescript-eslint/visitor-keys@npm:8.39.1":
- version: 8.39.1
- resolution: "@typescript-eslint/visitor-keys@npm:8.39.1"
+"@typescript-eslint/visitor-keys@npm:8.41.0":
+ version: 8.41.0
+ resolution: "@typescript-eslint/visitor-keys@npm:8.41.0"
dependencies:
- "@typescript-eslint/types": "npm:8.39.1"
+ "@typescript-eslint/types": "npm:8.41.0"
eslint-visitor-keys: "npm:^4.2.1"
- checksum: 10c0/4d81f6826a211bc2752e25cd16d1f415f28ebc92b35142402ec23f3765f2d00963b75ac06266ad9c674ca5b057d07d8c114116e5bf14f5465dde1d1aa60bc72f
+ checksum: 10c0/cfe52e77b9e07c23a4d9f4adf9e6bf27822e58694c9a34fefa4b9fc96d553e9df561971c4da5fc78392522e34696fc1149a76f6a02c328136771c5efe0fd1029
languageName: node
linkType: hard
@@ -11689,258 +11228,137 @@ __metadata:
languageName: node
linkType: hard
-"@unrs/resolver-binding-android-arm-eabi@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.0"
+"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@unrs/resolver-binding-android-arm64@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.0"
+"@unrs/resolver-binding-android-arm64@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@unrs/resolver-binding-darwin-arm64@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.0"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-darwin-arm64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.2"
+"@unrs/resolver-binding-darwin-arm64@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@unrs/resolver-binding-darwin-x64@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.0"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-darwin-x64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.2"
+"@unrs/resolver-binding-darwin-x64@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@unrs/resolver-binding-freebsd-x64@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.0"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-freebsd-x64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.2"
+"@unrs/resolver-binding-freebsd-x64@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.0"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.0"
+"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2"
+"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.0"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2"
+"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.0"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2"
+"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.0"
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2"
+"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.0"
- conditions: os=linux & cpu=riscv64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2"
+"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.0"
- conditions: os=linux & cpu=riscv64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2"
+"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.0"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2"
+"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.0"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2"
+"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@unrs/resolver-binding-linux-x64-musl@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.0"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-x64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.2"
+"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@unrs/resolver-binding-wasm32-wasi@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.0"
+"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1"
dependencies:
"@napi-rs/wasm-runtime": "npm:^0.2.11"
conditions: cpu=wasm32
languageName: node
linkType: hard
-"@unrs/resolver-binding-wasm32-wasi@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.2"
- dependencies:
- "@napi-rs/wasm-runtime": "npm:^0.2.9"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.0"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2"
+"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.0"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2"
+"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.0":
- version: 1.11.0
- resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.0"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2"
+"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1":
+ version: 1.11.1
+ resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -11988,166 +11406,130 @@ __metadata:
linkType: hard
"@vitejs/plugin-react@npm:^4.2.1, @vitejs/plugin-react@npm:^4.3.1":
- version: 4.4.1
- resolution: "@vitejs/plugin-react@npm:4.4.1"
+ version: 4.7.0
+ resolution: "@vitejs/plugin-react@npm:4.7.0"
dependencies:
- "@babel/core": "npm:^7.26.10"
- "@babel/plugin-transform-react-jsx-self": "npm:^7.25.9"
- "@babel/plugin-transform-react-jsx-source": "npm:^7.25.9"
+ "@babel/core": "npm:^7.28.0"
+ "@babel/plugin-transform-react-jsx-self": "npm:^7.27.1"
+ "@babel/plugin-transform-react-jsx-source": "npm:^7.27.1"
+ "@rolldown/pluginutils": "npm:1.0.0-beta.27"
"@types/babel__core": "npm:^7.20.5"
react-refresh: "npm:^0.17.0"
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
- checksum: 10c0/0eda45f2026cdfff4b172b1b2148824e5ac41ce65f1f1ce108f3ce4de2f0024caf79c811c1305a782168a269b0b1bc58d4cf8eaf164e4ef19954f05428ba7077
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+ checksum: 10c0/692f23960972879485d647713663ec299c478222c96567d60285acf7c7dc5c178e71abfe9d2eefddef1eeb01514dacbc2ed68aad84628debf9c7116134734253
languageName: node
linkType: hard
-"@vitest/expect@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/expect@npm:3.1.3"
+"@vitest/expect@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/expect@npm:3.2.4"
dependencies:
- "@vitest/spy": "npm:3.1.3"
- "@vitest/utils": "npm:3.1.3"
+ "@types/chai": "npm:^5.2.2"
+ "@vitest/spy": "npm:3.2.4"
+ "@vitest/utils": "npm:3.2.4"
chai: "npm:^5.2.0"
tinyrainbow: "npm:^2.0.0"
- checksum: 10c0/3a61e5526ed57491c9c230cb592849a2c15e6b4376bfaec4f623ac75fdcf5c24c322949cfb5362136fc8be5eb19be88d094917ea5f700bd3da0ea0c68ee4a8d9
+ checksum: 10c0/7586104e3fd31dbe1e6ecaafb9a70131e4197dce2940f727b6a84131eee3decac7b10f9c7c72fa5edbdb68b6f854353bd4c0fa84779e274207fb7379563b10db
languageName: node
linkType: hard
-"@vitest/mocker@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/mocker@npm:3.1.3"
+"@vitest/mocker@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/mocker@npm:3.2.4"
dependencies:
- "@vitest/spy": "npm:3.1.3"
+ "@vitest/spy": "npm:3.2.4"
estree-walker: "npm:^3.0.3"
magic-string: "npm:^0.30.17"
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- checksum: 10c0/6e6a62e27aa6cd146d14ae64eb9acfc0f49e7479ca426af1fb4df362456aa3456abf29731247659032e4bfb7ac9482fca1d1c7e1501e1a186eb211221e1f613a
+ checksum: 10c0/f7a4aea19bbbf8f15905847ee9143b6298b2c110f8b64789224cb0ffdc2e96f9802876aa2ca83f1ec1b6e1ff45e822abb34f0054c24d57b29ab18add06536ccd
languageName: node
linkType: hard
-"@vitest/pretty-format@npm:3.1.3, @vitest/pretty-format@npm:^3.1.3":
- version: 3.1.3
- resolution: "@vitest/pretty-format@npm:3.1.3"
+"@vitest/pretty-format@npm:3.2.4, @vitest/pretty-format@npm:^3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/pretty-format@npm:3.2.4"
dependencies:
tinyrainbow: "npm:^2.0.0"
- checksum: 10c0/eba164d2c0b2babbcf6bb054da3b326d08cc3a0289ade3c64309bfe5e7c3124cd4d45a60b2f673cf4f5b3a97381fb7af7009780a5d9665afdf7f8263fa34c068
+ checksum: 10c0/5ad7d4278e067390d7d633e307fee8103958806a419ca380aec0e33fae71b44a64415f7a9b4bc11635d3c13d4a9186111c581d3cef9c65cc317e68f077456887
languageName: node
linkType: hard
-"@vitest/runner@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/runner@npm:3.1.3"
+"@vitest/runner@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/runner@npm:3.2.4"
dependencies:
- "@vitest/utils": "npm:3.1.3"
+ "@vitest/utils": "npm:3.2.4"
pathe: "npm:^2.0.3"
- checksum: 10c0/f03c26e72657242ce68a93b46ee8a4e6fa1a290850be608988622a3efef744ffadc0436123acafe61977608b287b1637f4f781d27107ee0c33937c54f547159d
+ strip-literal: "npm:^3.0.0"
+ checksum: 10c0/e8be51666c72b3668ae3ea348b0196656a4a5adb836cb5e270720885d9517421815b0d6c98bfdf1795ed02b994b7bfb2b21566ee356a40021f5bf4f6ed4e418a
languageName: node
linkType: hard
-"@vitest/snapshot@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/snapshot@npm:3.1.3"
+"@vitest/snapshot@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/snapshot@npm:3.2.4"
dependencies:
- "@vitest/pretty-format": "npm:3.1.3"
+ "@vitest/pretty-format": "npm:3.2.4"
magic-string: "npm:^0.30.17"
pathe: "npm:^2.0.3"
- checksum: 10c0/60b70c1d878c3d9a4fe3464d14be2318a7a3be24131beb801712735d5dcbc7db7b798f21c98c6fbad4998554992038b29655e1b6e2503242627f203fd89c97c3
+ checksum: 10c0/f8301a3d7d1559fd3d59ed51176dd52e1ed5c2d23aa6d8d6aa18787ef46e295056bc726a021698d8454c16ed825ecba163362f42fa90258bb4a98cfd2c9424fc
languageName: node
linkType: hard
-"@vitest/spy@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/spy@npm:3.1.3"
+"@vitest/spy@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/spy@npm:3.2.4"
dependencies:
- tinyspy: "npm:^3.0.2"
- checksum: 10c0/6a8c187069827c56f3492f212ccf76c797fe52392849948af736a0f579e4533fa91041d829e2574b252af4aaadec066ca0714450d6457b31526153978bc55192
+ tinyspy: "npm:^4.0.3"
+ checksum: 10c0/6ebf0b4697dc238476d6b6a60c76ba9eb1dd8167a307e30f08f64149612fd50227682b876420e4c2e09a76334e73f72e3ebf0e350714dc22474258292e202024
languageName: node
linkType: hard
-"@vitest/utils@npm:3.1.3":
- version: 3.1.3
- resolution: "@vitest/utils@npm:3.1.3"
+"@vitest/utils@npm:3.2.4":
+ version: 3.2.4
+ resolution: "@vitest/utils@npm:3.2.4"
dependencies:
- "@vitest/pretty-format": "npm:3.1.3"
- loupe: "npm:^3.1.3"
+ "@vitest/pretty-format": "npm:3.2.4"
+ loupe: "npm:^3.1.4"
tinyrainbow: "npm:^2.0.0"
- checksum: 10c0/1c4ea711b87a8b2c7dc2da91f20427dccc34c0d1d0e81b8142780d24b6caa3c724e8287f7e01e9e875262b6bb912d55711fb99e66f718ba30cc21706a335829d
- languageName: node
- linkType: hard
-
-"@wagmi/connectors@npm:5.8.1, @wagmi/connectors@npm:>=5.7.11":
- version: 5.8.1
- resolution: "@wagmi/connectors@npm:5.8.1"
- dependencies:
- "@coinbase/wallet-sdk": "npm:4.3.0"
- "@metamask/sdk": "npm:0.32.0"
- "@safe-global/safe-apps-provider": "npm:0.18.6"
- "@safe-global/safe-apps-sdk": "npm:9.1.0"
- "@walletconnect/ethereum-provider": "npm:2.20.0"
- cbw-sdk: "npm:@coinbase/wallet-sdk@3.9.3"
- peerDependencies:
- "@wagmi/core": 2.17.1
- typescript: ">=5.0.4"
- viem: 2.x
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/31836dc626158945d0552784411af099c0715e38c49f52677565531a159138556d9f30edb38151d8c6d7e13be4b12d98a67bfaa563058ecf5f9456ef2aee10be
+ checksum: 10c0/024a9b8c8bcc12cf40183c246c244b52ecff861c6deb3477cbf487ac8781ad44c68a9c5fd69f8c1361878e55b97c10d99d511f2597f1f7244b5e5101d028ba64
languageName: node
linkType: hard
-"@wagmi/connectors@npm:5.8.5":
- version: 5.8.5
- resolution: "@wagmi/connectors@npm:5.8.5"
+"@wagmi/connectors@npm:5.9.8, @wagmi/connectors@npm:>=5.7.11":
+ version: 5.9.8
+ resolution: "@wagmi/connectors@npm:5.9.8"
dependencies:
- "@coinbase/wallet-sdk": "npm:4.3.3"
+ "@base-org/account": "npm:1.1.1"
+ "@coinbase/wallet-sdk": "npm:4.3.6"
+ "@gemini-wallet/core": "npm:0.2.0"
"@metamask/sdk": "npm:0.32.0"
"@safe-global/safe-apps-provider": "npm:0.18.6"
"@safe-global/safe-apps-sdk": "npm:9.1.0"
"@walletconnect/ethereum-provider": "npm:2.21.1"
cbw-sdk: "npm:@coinbase/wallet-sdk@3.9.3"
peerDependencies:
- "@wagmi/core": 2.17.3
- typescript: ">=5.0.4"
- viem: 2.x
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/d00dbeefe090a2dd740594d560108998cee4ce02e789e4a3b591a742b3622a7a47f2504e0e1c72315935696fbda26446c496491972dcdde1e1b3f2173ceb2b8d
- languageName: node
- linkType: hard
-
-"@wagmi/core@npm:2.17.1, @wagmi/core@npm:^2.17.1":
- version: 2.17.1
- resolution: "@wagmi/core@npm:2.17.1"
- dependencies:
- eventemitter3: "npm:5.0.1"
- mipd: "npm:0.0.7"
- zustand: "npm:5.0.0"
- peerDependencies:
- "@tanstack/query-core": ">=5.0.0"
+ "@wagmi/core": 2.20.2
typescript: ">=5.0.4"
viem: 2.x
peerDependenciesMeta:
- "@tanstack/query-core":
- optional: true
typescript:
optional: true
- checksum: 10c0/883e68732d79de57bb6fd132a605d14c9e50f8a0bf939d4e540378a9c29b7760d5c9c80f7b798fac7b5fe0fd265a55898cfa1cc633fcf163a10035e91f59f276
+ checksum: 10c0/f800f9bb1221ca26fb15050e21e7bd4e2ebff86cbad46fa984d6bcc030b53905a8c673e5a967cb38b08b6d313f0cbcc7a51157bdcf564173e971ef8a127dd384
languageName: node
linkType: hard
-"@wagmi/core@npm:2.17.3":
- version: 2.17.3
- resolution: "@wagmi/core@npm:2.17.3"
+"@wagmi/core@npm:2.20.2, @wagmi/core@npm:^2.17.1":
+ version: 2.20.2
+ resolution: "@wagmi/core@npm:2.20.2"
dependencies:
eventemitter3: "npm:5.0.1"
mipd: "npm:0.0.7"
@@ -12161,7 +11543,7 @@ __metadata:
optional: true
typescript:
optional: true
- checksum: 10c0/128875066323c87242293cfe5b22fe596dd8a55c79efeb2a7b36b6a1acd549e217cdb30215119bd203580b71118cd197274eed83c120dce5846b1894140b79be
+ checksum: 10c0/fc51d70fe5447e9246e1df40dbeed660c5b38bbbf8559008ee89c634814c9e11878a5de127908a1f3deab5a29b219e33f2b976e964dcce68daed58dc395058a2
languageName: node
linkType: hard
@@ -12181,56 +11563,6 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/core@npm:2.19.2":
- version: 2.19.2
- resolution: "@walletconnect/core@npm:2.19.2"
- dependencies:
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-provider": "npm:1.0.14"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/jsonrpc-ws-connection": "npm:1.0.16"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/relay-api": "npm:1.0.11"
- "@walletconnect/relay-auth": "npm:1.1.0"
- "@walletconnect/safe-json": "npm:1.0.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.19.2"
- "@walletconnect/utils": "npm:2.19.2"
- "@walletconnect/window-getters": "npm:1.0.1"
- es-toolkit: "npm:1.33.0"
- events: "npm:3.3.0"
- uint8arrays: "npm:3.1.0"
- checksum: 10c0/6ebc3c192fb667d4cbaa435c7391fd21b857508f0e3a43cf2c1fb10626dbe0ef374e01988330916dbeb8ae2fcaac4f56881af482dc37f4b1d1d39e63feb0aed3
- languageName: node
- linkType: hard
-
-"@walletconnect/core@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/core@npm:2.20.0"
- dependencies:
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-provider": "npm:1.0.14"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/jsonrpc-ws-connection": "npm:1.0.16"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/relay-api": "npm:1.0.11"
- "@walletconnect/relay-auth": "npm:1.1.0"
- "@walletconnect/safe-json": "npm:1.0.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.20.0"
- "@walletconnect/utils": "npm:2.20.0"
- "@walletconnect/window-getters": "npm:1.0.1"
- es-toolkit: "npm:1.33.0"
- events: "npm:3.3.0"
- uint8arrays: "npm:3.1.0"
- checksum: 10c0/bef89f8d7df53d60a121062644133e0433fd747d1dfea414503f8a4279c01cfc5fe1b125971ef9b780521585110625ded13447ee29790b7c0425879e387b04ee
- languageName: node
- linkType: hard
-
"@walletconnect/core@npm:2.21.0":
version: 2.21.0
resolution: "@walletconnect/core@npm:2.21.0"
@@ -12281,9 +11613,9 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/core@npm:2.21.3":
- version: 2.21.3
- resolution: "@walletconnect/core@npm:2.21.3"
+"@walletconnect/core@npm:2.21.7":
+ version: 2.21.7
+ resolution: "@walletconnect/core@npm:2.21.7"
dependencies:
"@walletconnect/heartbeat": "npm:1.2.2"
"@walletconnect/jsonrpc-provider": "npm:1.0.14"
@@ -12296,13 +11628,13 @@ __metadata:
"@walletconnect/relay-auth": "npm:1.1.0"
"@walletconnect/safe-json": "npm:1.0.2"
"@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.21.3"
- "@walletconnect/utils": "npm:2.21.3"
+ "@walletconnect/types": "npm:2.21.7"
+ "@walletconnect/utils": "npm:2.21.7"
"@walletconnect/window-getters": "npm:1.0.1"
es-toolkit: "npm:1.39.3"
events: "npm:3.3.0"
uint8arrays: "npm:3.1.1"
- checksum: 10c0/ac79553046409d4f01e5a83f31bcb999abe1b23c43679cd0716fb867099d0278cce2d8e6405ec9d6fa0d30716c97d8fd4c83859122930f5f0775e297e05585b2
+ checksum: 10c0/487066f659236041b1819a020cb48f36e36b8af00276e4c44d47c337acbf4ec549faa2094c5f4672460a0508ef8ddad8420633c440c5d0a428eca72c394c0f0f
languageName: node
linkType: hard
@@ -12315,25 +11647,6 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/ethereum-provider@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/ethereum-provider@npm:2.20.0"
- dependencies:
- "@reown/appkit": "npm:1.7.3"
- "@walletconnect/jsonrpc-http-connection": "npm:1.0.8"
- "@walletconnect/jsonrpc-provider": "npm:1.0.14"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/sign-client": "npm:2.20.0"
- "@walletconnect/types": "npm:2.20.0"
- "@walletconnect/universal-provider": "npm:2.20.0"
- "@walletconnect/utils": "npm:2.20.0"
- events: "npm:3.3.0"
- checksum: 10c0/da9960eff4c356d665eefcd15876f95e5158b3f4cf3e9e3044245d8dcefdb568ac4461158712e588214bfdeb4e601600b3c8f51c8b9f492af276cc7caeefc287
- languageName: node
- linkType: hard
-
"@walletconnect/ethereum-provider@npm:2.21.1":
version: 2.21.1
resolution: "@walletconnect/ethereum-provider@npm:2.21.1"
@@ -12487,40 +11800,6 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/sign-client@npm:2.19.2":
- version: 2.19.2
- resolution: "@walletconnect/sign-client@npm:2.19.2"
- dependencies:
- "@walletconnect/core": "npm:2.19.2"
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.19.2"
- "@walletconnect/utils": "npm:2.19.2"
- events: "npm:3.3.0"
- checksum: 10c0/9d26928d3f52b068362e271ea4ffafb23bb077e265a792e420c1045bb38137a53681b82003e6a04108b4ba1a2ac183b759d42deaf9f4e0f3c9aabb1b0b632567
- languageName: node
- linkType: hard
-
-"@walletconnect/sign-client@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/sign-client@npm:2.20.0"
- dependencies:
- "@walletconnect/core": "npm:2.20.0"
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.20.0"
- "@walletconnect/utils": "npm:2.20.0"
- events: "npm:3.3.0"
- checksum: 10c0/b907c84fd33789ba783fcfcdf63d70024d1e5dfaeea86b91a73f8c5e12d877b4a905b976788d64529e5f96ed16e31e0ddb5024c722c76a53e0435db28b639f77
- languageName: node
- linkType: hard
-
"@walletconnect/sign-client@npm:2.21.0":
version: 2.21.0
resolution: "@walletconnect/sign-client@npm:2.21.0"
@@ -12555,91 +11834,35 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/sign-client@npm:2.21.3":
- version: 2.21.3
- resolution: "@walletconnect/sign-client@npm:2.21.3"
+"@walletconnect/sign-client@npm:2.21.7":
+ version: 2.21.7
+ resolution: "@walletconnect/sign-client@npm:2.21.7"
dependencies:
- "@walletconnect/core": "npm:2.21.3"
+ "@walletconnect/core": "npm:2.21.7"
"@walletconnect/events": "npm:1.0.1"
"@walletconnect/heartbeat": "npm:1.2.2"
"@walletconnect/jsonrpc-utils": "npm:1.0.8"
"@walletconnect/logger": "npm:2.1.2"
"@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.21.3"
- "@walletconnect/utils": "npm:2.21.3"
- events: "npm:3.3.0"
- checksum: 10c0/40d04474896ca8b3291457b8746a6e8fa85aa50a52dc121f6e8a95d82947010a859b7649317555a3503cd861667f966389599cb7edf5ab20d41acbea1c040b45
- languageName: node
- linkType: hard
-
-"@walletconnect/time@npm:1.0.2, @walletconnect/time@npm:^1.0.2":
- version: 1.0.2
- resolution: "@walletconnect/time@npm:1.0.2"
- dependencies:
- tslib: "npm:1.14.1"
- checksum: 10c0/6317f93086e36daa3383cab4a8579c7d0bed665fb0f8e9016575200314e9ba5e61468f66142a7bb5b8489bb4c9250196576d90a60b6b00e0e856b5d0ab6ba474
- languageName: node
- linkType: hard
-
-"@walletconnect/types@npm:2.19.2":
- version: 2.19.2
- resolution: "@walletconnect/types@npm:2.19.2"
- dependencies:
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
- events: "npm:3.3.0"
- checksum: 10c0/aa539e73851c0d744982119bf137555d1649f4b9aae6c4f2e296c85fe0a92b371334bb137329a0eb1c828de22f81991c91ce8e5975ee6a381bc03b864ed0dd9d
- languageName: node
- linkType: hard
-
-"@walletconnect/types@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/types@npm:2.20.0"
- dependencies:
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
+ "@walletconnect/types": "npm:2.21.7"
+ "@walletconnect/utils": "npm:2.21.7"
events: "npm:3.3.0"
- checksum: 10c0/9edaf605b4205b39be767d5486ce9588e32a5680e9c871c0295220c8e573d52148991396f6a39b9b4c77040b540d8fdb1b0c9e9ea4ffb69754ec843d2b422f5d
+ checksum: 10c0/3edd6f0fcb7884e5ae54e4e5e9b419e0f6684c116f4c9433d201774e3ecdc67212d72b2fc35e63e52423f0f52f911307c5ec08fd493fc2ca520315e080dd11d6
languageName: node
linkType: hard
-
-"@walletconnect/types@npm:2.21.0":
- version: 2.21.0
- resolution: "@walletconnect/types@npm:2.21.0"
- dependencies:
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
- events: "npm:3.3.0"
- checksum: 10c0/1b969b045b77833315c56ae6948e551c175b6496e894be7b19db88a376d16a662a8b728ec753e01336053262ca16567ae36eed48f6dfe32cdf8d01cf66211588
- languageName: node
- linkType: hard
-
-"@walletconnect/types@npm:2.21.1":
- version: 2.21.1
- resolution: "@walletconnect/types@npm:2.21.1"
- dependencies:
- "@walletconnect/events": "npm:1.0.1"
- "@walletconnect/heartbeat": "npm:1.2.2"
- "@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/logger": "npm:2.1.2"
- events: "npm:3.3.0"
- checksum: 10c0/60468f50ea7c95ac5269a9e53a0417d50302978a927c042a0376d4dcb0d336f2187a129e8c602a173ccf020a193a4dde50f3f9f74d5b8da0a9801aa9d672458e
+
+"@walletconnect/time@npm:1.0.2, @walletconnect/time@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "@walletconnect/time@npm:1.0.2"
+ dependencies:
+ tslib: "npm:1.14.1"
+ checksum: 10c0/6317f93086e36daa3383cab4a8579c7d0bed665fb0f8e9016575200314e9ba5e61468f66142a7bb5b8489bb4c9250196576d90a60b6b00e0e856b5d0ab6ba474
languageName: node
linkType: hard
-"@walletconnect/types@npm:2.21.3":
- version: 2.21.3
- resolution: "@walletconnect/types@npm:2.21.3"
+"@walletconnect/types@npm:2.21.0":
+ version: 2.21.0
+ resolution: "@walletconnect/types@npm:2.21.0"
dependencies:
"@walletconnect/events": "npm:1.0.1"
"@walletconnect/heartbeat": "npm:1.2.2"
@@ -12647,47 +11870,35 @@ __metadata:
"@walletconnect/keyvaluestorage": "npm:1.1.1"
"@walletconnect/logger": "npm:2.1.2"
events: "npm:3.3.0"
- checksum: 10c0/0ae35ad796388412a836eba8e50f6a234d038ea51172546d11f282d6d6042faab0b3e3e8485410aaccf0be4c8fd42868403e3fbd2d907ba5a474304a245ca47b
+ checksum: 10c0/1b969b045b77833315c56ae6948e551c175b6496e894be7b19db88a376d16a662a8b728ec753e01336053262ca16567ae36eed48f6dfe32cdf8d01cf66211588
languageName: node
linkType: hard
-"@walletconnect/universal-provider@npm:2.19.2":
- version: 2.19.2
- resolution: "@walletconnect/universal-provider@npm:2.19.2"
+"@walletconnect/types@npm:2.21.1":
+ version: 2.21.1
+ resolution: "@walletconnect/types@npm:2.21.1"
dependencies:
"@walletconnect/events": "npm:1.0.1"
- "@walletconnect/jsonrpc-http-connection": "npm:1.0.8"
- "@walletconnect/jsonrpc-provider": "npm:1.0.14"
+ "@walletconnect/heartbeat": "npm:1.2.2"
"@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
"@walletconnect/keyvaluestorage": "npm:1.1.1"
"@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/sign-client": "npm:2.19.2"
- "@walletconnect/types": "npm:2.19.2"
- "@walletconnect/utils": "npm:2.19.2"
- es-toolkit: "npm:1.33.0"
events: "npm:3.3.0"
- checksum: 10c0/e4d64e5e95ee56a0babe62242c636d1bc691ee9acd2d46c1632117bf88ec0f48387224493387c3d397f2e0c030d2c64385f592ad0e92d8f4a50406058697ddb5
+ checksum: 10c0/60468f50ea7c95ac5269a9e53a0417d50302978a927c042a0376d4dcb0d336f2187a129e8c602a173ccf020a193a4dde50f3f9f74d5b8da0a9801aa9d672458e
languageName: node
linkType: hard
-"@walletconnect/universal-provider@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/universal-provider@npm:2.20.0"
+"@walletconnect/types@npm:2.21.7":
+ version: 2.21.7
+ resolution: "@walletconnect/types@npm:2.21.7"
dependencies:
"@walletconnect/events": "npm:1.0.1"
- "@walletconnect/jsonrpc-http-connection": "npm:1.0.8"
- "@walletconnect/jsonrpc-provider": "npm:1.0.14"
+ "@walletconnect/heartbeat": "npm:1.2.2"
"@walletconnect/jsonrpc-types": "npm:1.0.4"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
"@walletconnect/keyvaluestorage": "npm:1.1.1"
"@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/sign-client": "npm:2.20.0"
- "@walletconnect/types": "npm:2.20.0"
- "@walletconnect/utils": "npm:2.20.0"
- es-toolkit: "npm:1.33.0"
events: "npm:3.3.0"
- checksum: 10c0/0a9d629e9910884a9f26ae017a65adb979e3aeb09fe732bd6e1ea3a82c41b211d8c694947e3c053dcf73474b68d99b939c276d2fb113ebfbb0192497f57511c5
+ checksum: 10c0/305fda872afa52e709b692051a65188ecad8cedfd39ef0a1bc8593085b5cbff1ce942cd186ba429d433c71483244a58129092f47c922f6e5998b9420a3ab0afb
languageName: node
linkType: hard
@@ -12731,9 +11942,9 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/universal-provider@npm:2.21.3":
- version: 2.21.3
- resolution: "@walletconnect/universal-provider@npm:2.21.3"
+"@walletconnect/universal-provider@npm:2.21.7":
+ version: 2.21.7
+ resolution: "@walletconnect/universal-provider@npm:2.21.7"
dependencies:
"@walletconnect/events": "npm:1.0.1"
"@walletconnect/jsonrpc-http-connection": "npm:1.0.8"
@@ -12742,62 +11953,12 @@ __metadata:
"@walletconnect/jsonrpc-utils": "npm:1.0.8"
"@walletconnect/keyvaluestorage": "npm:1.1.1"
"@walletconnect/logger": "npm:2.1.2"
- "@walletconnect/sign-client": "npm:2.21.3"
- "@walletconnect/types": "npm:2.21.3"
- "@walletconnect/utils": "npm:2.21.3"
+ "@walletconnect/sign-client": "npm:2.21.7"
+ "@walletconnect/types": "npm:2.21.7"
+ "@walletconnect/utils": "npm:2.21.7"
es-toolkit: "npm:1.39.3"
events: "npm:3.3.0"
- checksum: 10c0/bb62a92dbafa33149a285b434b49b1f0d73237191cb001330afd3b3b02e2182d13b44d39db6d3d5cf693ad4476e4341a30bad09d4ad7be29bb9d8cddc003ea18
- languageName: node
- linkType: hard
-
-"@walletconnect/utils@npm:2.19.2":
- version: 2.19.2
- resolution: "@walletconnect/utils@npm:2.19.2"
- dependencies:
- "@noble/ciphers": "npm:1.2.1"
- "@noble/curves": "npm:1.8.1"
- "@noble/hashes": "npm:1.7.1"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/relay-api": "npm:1.0.11"
- "@walletconnect/relay-auth": "npm:1.1.0"
- "@walletconnect/safe-json": "npm:1.0.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.19.2"
- "@walletconnect/window-getters": "npm:1.0.1"
- "@walletconnect/window-metadata": "npm:1.0.1"
- bs58: "npm:6.0.0"
- detect-browser: "npm:5.3.0"
- query-string: "npm:7.1.3"
- uint8arrays: "npm:3.1.0"
- viem: "npm:2.23.2"
- checksum: 10c0/21eca1f5b94bfe90d329285388b9676de6f4f0a60dbf12b68d76448df24ef707b5ee0000a4aa38843baee14d79e2f6a7e15aa371d50eadf96f925ffdd1c36ac1
- languageName: node
- linkType: hard
-
-"@walletconnect/utils@npm:2.20.0":
- version: 2.20.0
- resolution: "@walletconnect/utils@npm:2.20.0"
- dependencies:
- "@noble/ciphers": "npm:1.2.1"
- "@noble/curves": "npm:1.8.1"
- "@noble/hashes": "npm:1.7.1"
- "@walletconnect/jsonrpc-utils": "npm:1.0.8"
- "@walletconnect/keyvaluestorage": "npm:1.1.1"
- "@walletconnect/relay-api": "npm:1.0.11"
- "@walletconnect/relay-auth": "npm:1.1.0"
- "@walletconnect/safe-json": "npm:1.0.2"
- "@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.20.0"
- "@walletconnect/window-getters": "npm:1.0.1"
- "@walletconnect/window-metadata": "npm:1.0.1"
- bs58: "npm:6.0.0"
- detect-browser: "npm:5.3.0"
- query-string: "npm:7.1.3"
- uint8arrays: "npm:3.1.0"
- viem: "npm:2.23.2"
- checksum: 10c0/d297127fb8a40b8a94a9755133cbde40b3f778e16b2142c152ec17b7ad73a863805fc24e2a96380b79c0cf3b5405f242a1f0087a6c3cf7074313e0b278606b0f
+ checksum: 10c0/ffe22ebb50cf066439c60200ebd83806865136178cf0e2212534b47fa9b30b38a1d18d958c8c1c992562b5a4aa769573a8e16c9dad677c97a58f9443f85019fb
languageName: node
linkType: hard
@@ -12851,9 +12012,9 @@ __metadata:
languageName: node
linkType: hard
-"@walletconnect/utils@npm:2.21.3":
- version: 2.21.3
- resolution: "@walletconnect/utils@npm:2.21.3"
+"@walletconnect/utils@npm:2.21.7":
+ version: 2.21.7
+ resolution: "@walletconnect/utils@npm:2.21.7"
dependencies:
"@msgpack/msgpack": "npm:3.1.2"
"@noble/ciphers": "npm:1.3.0"
@@ -12866,7 +12027,7 @@ __metadata:
"@walletconnect/relay-auth": "npm:1.1.0"
"@walletconnect/safe-json": "npm:1.0.2"
"@walletconnect/time": "npm:1.0.2"
- "@walletconnect/types": "npm:2.21.3"
+ "@walletconnect/types": "npm:2.21.7"
"@walletconnect/window-getters": "npm:1.0.1"
"@walletconnect/window-metadata": "npm:1.0.1"
blakejs: "npm:1.2.1"
@@ -12875,7 +12036,7 @@ __metadata:
query-string: "npm:7.1.3"
uint8arrays: "npm:3.1.1"
viem: "npm:2.31.0"
- checksum: 10c0/13e67c73b8923bdfd906f302a130f3534675f1174cce3cb79ccb8988772165822d5137c3fc1b6d26a5f894e385e49d1bfd3f693a304788d57a759cffa2335484
+ checksum: 10c0/17f32cb9ceb66b15b3b83ffc2ca4bc9d71f285e20846fe9008e978e868d4da3014da4b68e81b1549ff64aec9cbab34d2fe140382fe23f47be9f266f2de08b2d9
languageName: node
linkType: hard
@@ -13067,12 +12228,12 @@ __metadata:
linkType: hard
"@whatwg-node/fetch@npm:^0.10.1":
- version: 0.10.6
- resolution: "@whatwg-node/fetch@npm:0.10.6"
+ version: 0.10.10
+ resolution: "@whatwg-node/fetch@npm:0.10.10"
dependencies:
- "@whatwg-node/node-fetch": "npm:^0.7.18"
+ "@whatwg-node/node-fetch": "npm:^0.7.25"
urlpattern-polyfill: "npm:^10.0.0"
- checksum: 10c0/a341769cacd25c7b8d01f69c687592d4a790c1d8be1e197fa7d3c2229aa5416df2a05f90931a9986c9695694ef4b3edade9d8487d2d21b9315cba6eec3adbd27
+ checksum: 10c0/f8d94d58402176279c99517ab516a3c51f64c3eecc825b09ea46a4088c9928a713041f688a635be1b4ee351f0819360f7d936161420cce0d43307630c1bc4821
languageName: node
linkType: hard
@@ -13102,24 +12263,24 @@ __metadata:
languageName: node
linkType: hard
-"@whatwg-node/node-fetch@npm:^0.7.18":
- version: 0.7.18
- resolution: "@whatwg-node/node-fetch@npm:0.7.18"
+"@whatwg-node/node-fetch@npm:^0.7.25":
+ version: 0.7.25
+ resolution: "@whatwg-node/node-fetch@npm:0.7.25"
dependencies:
"@fastify/busboy": "npm:^3.1.1"
"@whatwg-node/disposablestack": "npm:^0.0.6"
- "@whatwg-node/promise-helpers": "npm:^1.3.1"
+ "@whatwg-node/promise-helpers": "npm:^1.3.2"
tslib: "npm:^2.6.3"
- checksum: 10c0/2f7daa1b1ac65bb9d90c576bb08fe4216f60ed138d3f4638e99ae2ec0fa1423db25420a3bc23ab84390fa14d7e3235f1d8be706ae9e76e505379c2ee9e251200
+ checksum: 10c0/8799a00977ce6ca1b2da903dc9174d82eca77529a13f0e795f2caa87a97bbff65a5e23d51b42cc848358776d58b9a6377809063abe7297b7f31c32ca2e4856b7
languageName: node
linkType: hard
-"@whatwg-node/promise-helpers@npm:^1.0.0, @whatwg-node/promise-helpers@npm:^1.3.1":
- version: 1.3.1
- resolution: "@whatwg-node/promise-helpers@npm:1.3.1"
+"@whatwg-node/promise-helpers@npm:^1.0.0, @whatwg-node/promise-helpers@npm:^1.3.2":
+ version: 1.3.2
+ resolution: "@whatwg-node/promise-helpers@npm:1.3.2"
dependencies:
tslib: "npm:^2.6.3"
- checksum: 10c0/bb47e71cb588c2bdc45cc78044f8e472b1600d3022f10d59bb70a68bd6a2d2f749f5bbe5858a9b0dccbc93c4c96092acc28e870ace1174d328e14fa8e8db14fa
+ checksum: 10c0/d20e8d740cfa1f0eac7dce11e8a7a84f1567513a8ff0bd1772724b581a8ca77df3f9600a95047c0d2628335626113fa98367517abd01c1ff49817fccf225a29a
languageName: node
linkType: hard
@@ -13185,7 +12346,7 @@ __metadata:
languageName: node
linkType: hard
-"abitype@npm:1.0.8, abitype@npm:^1.0.6, abitype@npm:^1.0.8":
+"abitype@npm:1.0.8":
version: 1.0.8
resolution: "abitype@npm:1.0.8"
peerDependencies:
@@ -13200,6 +12361,21 @@ __metadata:
languageName: node
linkType: hard
+"abitype@npm:^1.0.6, abitype@npm:^1.0.8":
+ version: 1.0.9
+ resolution: "abitype@npm:1.0.9"
+ peerDependencies:
+ typescript: ">=5.0.4"
+ zod: ^3 >=3.22.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+ checksum: 10c0/8707fcc80d3edaea14717b0c9ebe15cef1f11825a9c5ffcdbd3ac8e53ae34aaa4c5eb9fb4c352d598d0013fcf71370eeda8eac2fc575f04fa0699a43477ae52b
+ languageName: node
+ linkType: hard
+
"abort-controller@npm:^3.0.0":
version: 3.0.0
resolution: "abort-controller@npm:3.0.0"
@@ -13209,6 +12385,13 @@ __metadata:
languageName: node
linkType: hard
+"abort-error@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "abort-error@npm:1.0.1"
+ checksum: 10c0/7b071226ca13408b26e994d1b1f6700ac17305a6c5d4588c0b5ded254211424c7eff356c2c3d936ade4d5b72c537270484c653b40cdf6bc4cfc176633befe359
+ languageName: node
+ linkType: hard
+
"accepts@npm:^2.0.0":
version: 2.0.0
resolution: "accepts@npm:2.0.0"
@@ -13247,16 +12430,7 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0":
- version: 8.14.1
- resolution: "acorn@npm:8.14.1"
- bin:
- acorn: bin/acorn
- checksum: 10c0/dbd36c1ed1d2fa3550140000371fcf721578095b18777b85a79df231ca093b08edc6858d75d6e48c73e431c174dcf9214edbd7e6fa5911b93bd8abfa54e47123
- languageName: node
- linkType: hard
-
-"acorn@npm:^8.15.0":
+"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0":
version: 8.15.0
resolution: "acorn@npm:8.15.0"
bin:
@@ -13296,9 +12470,9 @@ __metadata:
linkType: hard
"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
- version: 7.1.3
- resolution: "agent-base@npm:7.1.3"
- checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11
+ version: 7.1.4
+ resolution: "agent-base@npm:7.1.4"
+ checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe
languageName: node
linkType: hard
@@ -13465,9 +12639,9 @@ __metadata:
linkType: hard
"ansi-regex@npm:^6.0.1":
- version: 6.1.0
- resolution: "ansi-regex@npm:6.1.0"
- checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc
+ version: 6.2.0
+ resolution: "ansi-regex@npm:6.2.0"
+ checksum: 10c0/20a2e55ae9816074a60e6729dbe3daad664cd967fc82acc08b02f5677db84baa688babf940d71f50acbbb184c02459453789705e079f4d521166ae66451de551
languageName: node
linkType: hard
@@ -13558,9 +12732,9 @@ __metadata:
linkType: hard
"aproba@npm:^1.0.3 || ^2.0.0":
- version: 2.0.0
- resolution: "aproba@npm:2.0.0"
- checksum: 10c0/d06e26384a8f6245d8c8896e138c0388824e259a329e0c9f196b4fa533c82502a6fd449586e3604950a0c42921832a458bb3aa0aa9f0ba449cfd4f50fd0d09b5
+ version: 2.1.0
+ resolution: "aproba@npm:2.1.0"
+ checksum: 10c0/ec8c1d351bac0717420c737eb062766fb63bde1552900e0f4fdad9eb064c3824fef23d1c416aa5f7a80f21ca682808e902d79b7c9ae756d342b5f1884f36932f
languageName: node
linkType: hard
@@ -13649,21 +12823,7 @@ __metadata:
languageName: node
linkType: hard
-"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
- version: 3.1.8
- resolution: "array-includes@npm:3.1.8"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- es-object-atoms: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.4"
- is-string: "npm:^1.0.7"
- checksum: 10c0/5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370
- languageName: node
- linkType: hard
-
-"array-includes@npm:^3.1.9":
+"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8, array-includes@npm:^3.1.9":
version: 3.1.9
resolution: "array-includes@npm:3.1.9"
dependencies:
@@ -13707,7 +12867,7 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.findlastindex@npm:^1.2.5, array.prototype.findlastindex@npm:^1.2.6":
+"array.prototype.findlastindex@npm:^1.2.6":
version: 1.2.6
resolution: "array.prototype.findlastindex@npm:1.2.6"
dependencies:
@@ -13722,7 +12882,7 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.2, array.prototype.flat@npm:^1.3.3":
+"array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.3":
version: 1.3.3
resolution: "array.prototype.flat@npm:1.3.3"
dependencies:
@@ -13811,7 +12971,7 @@ __metadata:
languageName: node
linkType: hard
-"asn1js@npm:^3.0.5":
+"asn1js@npm:^3.0.5, asn1js@npm:^3.0.6":
version: 3.0.6
resolution: "asn1js@npm:3.0.6"
dependencies:
@@ -13931,7 +13091,7 @@ __metadata:
languageName: node
linkType: hard
-"async@npm:^3.2.3, async@npm:^3.2.4":
+"async@npm:^3.2.4, async@npm:^3.2.6":
version: 3.2.6
resolution: "async@npm:3.2.6"
checksum: 10c0/36484bb15ceddf07078688d95e27076379cc2f87b10c03b6dd8a83e89475a3c8df5848859dd06a4c95af1e4c16fc973de0171a77f18ea00be899aca2a4f85e70
@@ -13994,14 +13154,14 @@ __metadata:
languageName: node
linkType: hard
-"axios@npm:^1.1.3, axios@npm:^1.3.1, axios@npm:^1.3.4, axios@npm:^1.4.0, axios@npm:^1.6.7, axios@npm:^1.7.2, axios@npm:^1.7.4, axios@npm:^1.8.1, axios@npm:^1.8.2, axios@npm:^1.8.3":
- version: 1.9.0
- resolution: "axios@npm:1.9.0"
+"axios@npm:^1.1.3, axios@npm:^1.11.0, axios@npm:^1.3.1, axios@npm:^1.3.4, axios@npm:^1.4.0, axios@npm:^1.6.7, axios@npm:^1.7.2, axios@npm:^1.7.4, axios@npm:^1.8.1, axios@npm:^1.8.2, axios@npm:^1.8.3":
+ version: 1.11.0
+ resolution: "axios@npm:1.11.0"
dependencies:
follow-redirects: "npm:^1.15.6"
- form-data: "npm:^4.0.0"
+ form-data: "npm:^4.0.4"
proxy-from-env: "npm:^1.1.0"
- checksum: 10c0/9371a56886c2e43e4ff5647b5c2c3c046ed0a3d13482ef1d0135b994a628c41fbad459796f101c655e62f0c161d03883454474d2e435b2e021b1924d9f24994c
+ checksum: 10c0/5de273d33d43058610e4d252f0963cc4f10714da0bfe872e8ef2cbc23c2c999acc300fd357b6bce0fc84a2ca9bd45740fa6bb28199ce2c1266c8b1a393f2b36e
languageName: node
linkType: hard
@@ -14065,39 +13225,39 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs2@npm:^0.4.10":
- version: 0.4.13
- resolution: "babel-plugin-polyfill-corejs2@npm:0.4.13"
+"babel-plugin-polyfill-corejs2@npm:^0.4.14":
+ version: 0.4.14
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.14"
dependencies:
- "@babel/compat-data": "npm:^7.22.6"
- "@babel/helper-define-polyfill-provider": "npm:^0.6.4"
+ "@babel/compat-data": "npm:^7.27.7"
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.5"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10c0/b4a54561606d388e6f9499f39f03171af4be7f9ce2355e737135e40afa7086cf6790fdd706c2e59f488c8fa1f76123d28783708e07ddc84647dca8ed8fb98e06
+ checksum: 10c0/d74cba0600a6508e86d220bde7164eb528755d91be58020e5ea92ea7fbb12c9d8d2c29246525485adfe7f68ae02618ec428f9a589cac6cbedf53cc3972ad7fbe
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs3@npm:^0.11.0":
- version: 0.11.1
- resolution: "babel-plugin-polyfill-corejs3@npm:0.11.1"
+"babel-plugin-polyfill-corejs3@npm:^0.13.0":
+ version: 0.13.0
+ resolution: "babel-plugin-polyfill-corejs3@npm:0.13.0"
dependencies:
- "@babel/helper-define-polyfill-provider": "npm:^0.6.3"
- core-js-compat: "npm:^3.40.0"
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.5"
+ core-js-compat: "npm:^3.43.0"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10c0/025f754b6296d84b20200aff63a3c1acdd85e8c621781f2bd27fe2512d0060526192d02329326947c6b29c27cf475fbcfaaff8c51eab1d2bfc7b79086bb64229
+ checksum: 10c0/5d8e228da425edc040d8c868486fd01ba10b0440f841156a30d9f8986f330f723e2ee61553c180929519563ef5b64acce2caac36a5a847f095d708dda5d8206d
languageName: node
linkType: hard
-"babel-plugin-polyfill-regenerator@npm:^0.6.1":
- version: 0.6.4
- resolution: "babel-plugin-polyfill-regenerator@npm:0.6.4"
+"babel-plugin-polyfill-regenerator@npm:^0.6.5":
+ version: 0.6.5
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.6.5"
dependencies:
- "@babel/helper-define-polyfill-provider": "npm:^0.6.4"
+ "@babel/helper-define-polyfill-provider": "npm:^0.6.5"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 10c0/ebaaf9e4e53201c02f496d3f686d815e94177b3e55b35f11223b99c60d197a29f907a2e87bbcccced8b7aff22a807fccc1adaf04722864a8e1862c8845ab830a
+ checksum: 10c0/63aa8ed716df6a9277c6ab42b887858fa9f57a70cc1d0ae2b91bdf081e45d4502848cba306fb60b02f59f99b32fd02ff4753b373cac48ccdac9b7d19dd56f06d
languageName: node
linkType: hard
@@ -14109,8 +13269,8 @@ __metadata:
linkType: hard
"babel-preset-current-node-syntax@npm:^1.0.0":
- version: 1.1.0
- resolution: "babel-preset-current-node-syntax@npm:1.1.0"
+ version: 1.2.0
+ resolution: "babel-preset-current-node-syntax@npm:1.2.0"
dependencies:
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
"@babel/plugin-syntax-bigint": "npm:^7.8.3"
@@ -14128,8 +13288,8 @@ __metadata:
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
"@babel/plugin-syntax-top-level-await": "npm:^7.14.5"
peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 10c0/0b838d4412e3322cb4436f246e24e9c00bebcedfd8f00a2f51489db683bd35406bbd55a700759c28d26959c6e03f84dd6a1426f576f440267c1d7a73c5717281
+ "@babel/core": ^7.0.0 || ^8.0.0-0
+ checksum: 10c0/94a4f81cddf9b051045d08489e4fff7336292016301664c138cfa3d9ffe3fe2ba10a24ad6ae589fd95af1ac72ba0216e1653555c187e694d7b17be0c002bea10
languageName: node
linkType: hard
@@ -14225,9 +13385,9 @@ __metadata:
linkType: hard
"bignumber.js@npm:^9.0.0, bignumber.js@npm:^9.1.2":
- version: 9.3.0
- resolution: "bignumber.js@npm:9.3.0"
- checksum: 10c0/f54a79cd6fc98552ac0510c1cd9381650870ae443bdb20ba9b98e3548188d941506ac3c22a9f9c69b2cc60da9be5700e87d3f54d2825310a8b2ae999dfd6d99d
+ version: 9.3.1
+ resolution: "bignumber.js@npm:9.3.1"
+ checksum: 10c0/61342ba5fe1c10887f0ecf5be02ff6709271481aff48631f86b4d37d55a99b87ce441cfd54df3d16d10ee07ceab7e272fc0be430c657ffafbbbf7b7d631efb75
languageName: node
linkType: hard
@@ -14276,11 +13436,11 @@ __metadata:
linkType: hard
"blob-to-it@npm:^2.0.5":
- version: 2.0.8
- resolution: "blob-to-it@npm:2.0.8"
+ version: 2.0.10
+ resolution: "blob-to-it@npm:2.0.10"
dependencies:
browser-readablestream-to-it: "npm:^2.0.0"
- checksum: 10c0/e00d74febe3d72061a8b963a4aea8be6aa5f436d7ba60a6862e8541c74d6b0606ddcacded1f3318c080647e68a7ea8c9a84c7b19201801ec90cbdaa554be5814
+ checksum: 10c0/9c133ab2dc077a3bc89e61947c5375732fedadd8a417d95073e2029ae2000b3818ac806af897297446a41330a97c1d38d6d320c09bf1980ef5fbc903c3f964dc
languageName: node
linkType: hard
@@ -14352,9 +13512,9 @@ __metadata:
linkType: hard
"bowser@npm:^2.11.0, bowser@npm:^2.9.0":
- version: 2.11.0
- resolution: "bowser@npm:2.11.0"
- checksum: 10c0/04efeecc7927a9ec33c667fa0965dea19f4ac60b3fea60793c2e6cf06c1dcd2f7ae1dbc656f450c5f50783b1c75cf9dc173ba6f3b7db2feee01f8c4b793e1bd3
+ version: 2.12.1
+ resolution: "bowser@npm:2.12.1"
+ checksum: 10c0/017e8cc63ce2dec75037340626e1408f68334dac95f953ba7db33a266c019f1d262346d2be3994f9a12b7e9c02f57c562078719b8c5e8e8febe01053c613ffbc
languageName: node
linkType: hard
@@ -14391,21 +13551,21 @@ __metadata:
linkType: hard
"brace-expansion@npm:^1.1.7":
- version: 1.1.11
- resolution: "brace-expansion@npm:1.1.11"
+ version: 1.1.12
+ resolution: "brace-expansion@npm:1.1.12"
dependencies:
balanced-match: "npm:^1.0.0"
concat-map: "npm:0.0.1"
- checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668
+ checksum: 10c0/975fecac2bb7758c062c20d0b3b6288c7cc895219ee25f0a64a9de662dbac981ff0b6e89909c3897c1f84fa353113a721923afdec5f8b2350255b097f12b1f73
languageName: node
linkType: hard
"brace-expansion@npm:^2.0.1":
- version: 2.0.1
- resolution: "brace-expansion@npm:2.0.1"
+ version: 2.0.2
+ resolution: "brace-expansion@npm:2.0.2"
dependencies:
balanced-match: "npm:^1.0.0"
- checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f
+ checksum: 10c0/6d117a4c793488af86b83172deb6af143e94c17bc53b0b3cec259733923b4ca84679d506ac261f4ba3c7ed37c46018e2ff442f9ce453af8643ecd64f4a54e6cf
languageName: node
linkType: hard
@@ -14440,9 +13600,9 @@ __metadata:
linkType: hard
"browser-readablestream-to-it@npm:^2.0.0, browser-readablestream-to-it@npm:^2.0.5":
- version: 2.0.8
- resolution: "browser-readablestream-to-it@npm:2.0.8"
- checksum: 10c0/aa3fbb96a539bd093f0cdd91f7e0d27affb7cc8fbe4a088fcd76c8d0745908ac0ea28757e2dc62cbb5cdd780900b1560bd645cd50786484b5dcc566064f3dac8
+ version: 2.0.10
+ resolution: "browser-readablestream-to-it@npm:2.0.10"
+ checksum: 10c0/71764f3df3915d887b5db57fa98eafe3d08843800f5ba7e8a5983ccad79002f9bdc45d8f3c8221bc53b3832cd5606394e6de9a9cbeaed31ee577432de219166a
languageName: node
linkType: hard
@@ -14537,17 +13697,17 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.24.0, browserslist@npm:^4.24.4":
- version: 4.24.5
- resolution: "browserslist@npm:4.24.5"
+"browserslist@npm:^4.24.0, browserslist@npm:^4.25.3":
+ version: 4.25.4
+ resolution: "browserslist@npm:4.25.4"
dependencies:
- caniuse-lite: "npm:^1.0.30001716"
- electron-to-chromium: "npm:^1.5.149"
+ caniuse-lite: "npm:^1.0.30001737"
+ electron-to-chromium: "npm:^1.5.211"
node-releases: "npm:^2.0.19"
update-browserslist-db: "npm:^1.1.3"
bin:
browserslist: cli.js
- checksum: 10c0/f4c1ce1a7d8fdfab5e5b88bb6e93d09e8a883c393f86801537a252da0362dbdcde4dbd97b318246c5d84c6607b2f6b47af732c1b000d6a8a881ee024bad29204
+ checksum: 10c0/2b105948990dc2fc0bc2536b4889aadfa15d637e1d857a121611a704cdf539a68f575a391f6bf8b7ff19db36cee1b7834565571f35a7ea691051d2e7fb4f2eb1
languageName: node
linkType: hard
@@ -14690,7 +13850,7 @@ __metadata:
languageName: node
linkType: hard
-"busboy@npm:^1.0.0, busboy@npm:^1.6.0":
+"busboy@npm:^1.6.0":
version: 1.6.0
resolution: "busboy@npm:1.6.0"
dependencies:
@@ -14855,19 +14015,19 @@ __metadata:
languageName: node
linkType: hard
-"caniuse-lite@npm:^1.0.30001716":
- version: 1.0.30001717
- resolution: "caniuse-lite@npm:1.0.30001717"
- checksum: 10c0/6c0bb1e5182fd578ebe97ee2203250849754a4e17d985839fab527ad27e125a4c4ffce3ece5505217fedf30ea0bbc17ac9f93e9ac525c0389ccba61c6e8345dc
+"caniuse-lite@npm:^1.0.30001737":
+ version: 1.0.30001737
+ resolution: "caniuse-lite@npm:1.0.30001737"
+ checksum: 10c0/9d9cfe3b46fe670d171cee10c5c1b0fb641946fd5d6bea26149f804003d53d82ade7ef5a4a640fb3a0eaec47c7839b57e06a6ddae4f0ad2cd58e1187d31997ce
languageName: node
linkType: hard
"cbor@npm:^10.0.0":
- version: 10.0.3
- resolution: "cbor@npm:10.0.3"
+ version: 10.0.11
+ resolution: "cbor@npm:10.0.11"
dependencies:
nofilter: "npm:^3.0.2"
- checksum: 10c0/d1657a24799ab35cb262aef91205431100def90c0200917e42eec4580726880c090d5a0a77620b665248447a36db8cc5ea6b7fd6eac8e083a64098c7179ea2d1
+ checksum: 10c0/0cb6fb3d5e98c7af4443200ff107049f6132b5649b8a0e586940ca811e5ab5622bf3d0a36f154f43107acfd9685cc462e6eac77876ef4c060bcec96c71b90d8a
languageName: node
linkType: hard
@@ -14890,11 +14050,11 @@ __metadata:
linkType: hard
"cborg@npm:^4.0.0":
- version: 4.2.10
- resolution: "cborg@npm:4.2.10"
+ version: 4.2.14
+ resolution: "cborg@npm:4.2.14"
bin:
cborg: lib/bin.js
- checksum: 10c0/d74d4439ecc4858556e1209fc2688558987534d1060395769881c4c92b01dcef2ad96e2ef30b142cc74d423c8cbd615d9711eff8ceb392ba58e2e64252a46e27
+ checksum: 10c0/d09b6603ffab8e6ac541348838d70783b43fbde2b6c96bf575f19a3f38bd1ff0dd873484a150dc4b6fed89dfb3e9242632ca15b5b7a3bc3900f577c2cacab5e0
languageName: node
linkType: hard
@@ -14942,15 +14102,15 @@ __metadata:
linkType: hard
"chai@npm:^5.2.0":
- version: 5.2.0
- resolution: "chai@npm:5.2.0"
+ version: 5.3.3
+ resolution: "chai@npm:5.3.3"
dependencies:
assertion-error: "npm:^2.0.1"
check-error: "npm:^2.1.1"
deep-eql: "npm:^5.0.1"
loupe: "npm:^3.1.0"
pathval: "npm:^2.0.0"
- checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d
+ checksum: 10c0/b360fd4d38861622e5010c2f709736988b05c7f31042305fa3f4e9911f6adb80ccfb4e302068bf8ed10e835c2e2520cba0f5edc13d878b886987e5aa62483f53
languageName: node
linkType: hard
@@ -14963,7 +14123,7 @@ __metadata:
languageName: node
linkType: hard
-"chalk@npm:4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.1, chalk@npm:^4.1.2":
+"chalk@npm:4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.1, chalk@npm:^4.1.2":
version: 4.1.2
resolution: "chalk@npm:4.1.2"
dependencies:
@@ -14992,9 +14152,9 @@ __metadata:
linkType: hard
"chalk@npm:^5.0.1, chalk@npm:^5.3.0, chalk@npm:^5.4.1":
- version: 5.4.1
- resolution: "chalk@npm:5.4.1"
- checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef
+ version: 5.6.0
+ resolution: "chalk@npm:5.6.0"
+ checksum: 10c0/f8558fc12fd9805f167611803b325b0098bbccdc9f1d3bafead41c9bac61f263357f3c0df0cbe28bc2fd5fca3edcf618b01d6771a5a776b4c15d061482a72b23
languageName: node
linkType: hard
@@ -15012,6 +14172,13 @@ __metadata:
languageName: node
linkType: hard
+"chardet@npm:^2.1.0":
+ version: 2.1.0
+ resolution: "chardet@npm:2.1.0"
+ checksum: 10c0/d1b03e47371851ed72741a898281d58f8a9b577aeea6fdfa75a86832898b36c550b3ad057e66d50d774a9cebd9f56c66b6880e4fe75e387794538ba7565b0b6f
+ languageName: node
+ linkType: hard
+
"charenc@npm:>= 0.0.1":
version: 0.0.2
resolution: "charenc@npm:0.0.2"
@@ -15106,9 +14273,9 @@ __metadata:
linkType: hard
"ci-info@npm:^4.0.0":
- version: 4.2.0
- resolution: "ci-info@npm:4.2.0"
- checksum: 10c0/37a2f4b6a213a5cf835890eb0241f0d5b022f6cfefde58a69e9af8e3a0e71e06d6ad7754b0d4efb9cd2613e58a7a33996d71b56b0d04242722e86666f3f3d058
+ version: 4.3.0
+ resolution: "ci-info@npm:4.3.0"
+ checksum: 10c0/60d3dfe95d75c01454ec1cfd5108617dd598a28a2a3e148bd7e1523c1c208b5f5a3007cafcbe293e6fd0a5a310cc32217c5dc54743eeabc0a2bec80072fc055c
languageName: node
linkType: hard
@@ -15331,7 +14498,7 @@ __metadata:
languageName: node
linkType: hard
-"clsx@npm:^1.1.0, clsx@npm:^1.2.1":
+"clsx@npm:1.2.1, clsx@npm:^1.1.0, clsx@npm:^1.2.1":
version: 1.2.1
resolution: "clsx@npm:1.2.1"
checksum: 10c0/34dead8bee24f5e96f6e7937d711978380647e936a22e76380290e35486afd8634966ce300fc4b74a32f3762c7d4c0303f442c3e259f4ce02374eb0c82834f27
@@ -15547,33 +14714,32 @@ __metadata:
languageName: node
linkType: hard
-"concat-stream@npm:^1.5.2":
- version: 1.6.2
- resolution: "concat-stream@npm:1.6.2"
+"concat-stream@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "concat-stream@npm:2.0.0"
dependencies:
buffer-from: "npm:^1.0.0"
inherits: "npm:^2.0.3"
- readable-stream: "npm:^2.2.2"
+ readable-stream: "npm:^3.0.2"
typedarray: "npm:^0.0.6"
- checksum: 10c0/2e9864e18282946dabbccb212c5c7cec0702745e3671679eb8291812ca7fd12023f7d8cb36493942a62f770ac96a7f90009dc5c82ad69893438371720fa92617
+ checksum: 10c0/29565dd9198fe1d8cf57f6cc71527dbc6ad67e12e4ac9401feb389c53042b2dceedf47034cbe702dfc4fd8df3ae7e6bfeeebe732cc4fa2674e484c13f04c219a
languageName: node
linkType: hard
"concurrently@npm:^9.1.2":
- version: 9.1.2
- resolution: "concurrently@npm:9.1.2"
+ version: 9.2.1
+ resolution: "concurrently@npm:9.2.1"
dependencies:
- chalk: "npm:^4.1.2"
- lodash: "npm:^4.17.21"
- rxjs: "npm:^7.8.1"
- shell-quote: "npm:^1.8.1"
- supports-color: "npm:^8.1.1"
- tree-kill: "npm:^1.2.2"
- yargs: "npm:^17.7.2"
+ chalk: "npm:4.1.2"
+ rxjs: "npm:7.8.2"
+ shell-quote: "npm:1.8.3"
+ supports-color: "npm:8.1.1"
+ tree-kill: "npm:1.2.2"
+ yargs: "npm:17.7.2"
bin:
conc: dist/bin/concurrently.js
concurrently: dist/bin/concurrently.js
- checksum: 10c0/88e00269366aa885ca2b97fd53b04e7af2b0f31774d991bfc0e88c0de61cdebdf115ddacc9c897fbd1f1b90369014637fa77045a171d072a75693332b36dcc70
+ checksum: 10c0/da37f239f82eb7ac24f5ddb56259861e5f1d6da2ade7602b6ea7ad3101b13b5ccec02a77b7001402d1028ff2fdc38eed55644b32853ad5abf30e057002a963aa
languageName: node
linkType: hard
@@ -15719,19 +14885,19 @@ __metadata:
languageName: node
linkType: hard
-"core-js-compat@npm:^3.34.0, core-js-compat@npm:^3.40.0":
- version: 3.42.0
- resolution: "core-js-compat@npm:3.42.0"
+"core-js-compat@npm:^3.34.0, core-js-compat@npm:^3.43.0":
+ version: 3.45.1
+ resolution: "core-js-compat@npm:3.45.1"
dependencies:
- browserslist: "npm:^4.24.4"
- checksum: 10c0/0138ce005c13ce642fc38e18e54a52a1c78ca8315ee6e4faad748d2a1b0ad2462ea615285ad4e6cf77afe48e47a868d898e64c70606c1eb1c9e6a9f19ee2b186
+ browserslist: "npm:^4.25.3"
+ checksum: 10c0/b22996d3ca7e4f6758725f9ebbb61d422466d7ec0359158563264069ec066e7d2539fc7daebaa8aaf7b0bde73114ce42519611a0f0edb471139349e0cd11e183
languageName: node
linkType: hard
-"core-js-pure@npm:^3.30.2":
- version: 3.42.0
- resolution: "core-js-pure@npm:3.42.0"
- checksum: 10c0/e61b097bc83ec01839e7b04cad2e1d0dd8822275ea5a08a23dc7c907d13d2522aa2b09061cec68f0625fe40abb8b888be3b65a37c817eb53a695cf02c24217bf
+"core-js-pure@npm:^3.43.0":
+ version: 3.45.1
+ resolution: "core-js-pure@npm:3.45.1"
+ checksum: 10c0/e1a31b0e1caee880d4fd93dbe4da34a1000fcd83ca1822f9aaa2433281807e21e4262fd474157d2b641da53b7cd465e744ba1c6dc146b1a00d57af44ec2e0d20
languageName: node
linkType: hard
@@ -15839,7 +15005,19 @@ __metadata:
languageName: node
linkType: hard
-"create-hmac@npm:^1.1.4, create-hmac@npm:^1.1.7":
+"create-hash@npm:~1.1.3":
+ version: 1.1.3
+ resolution: "create-hash@npm:1.1.3"
+ dependencies:
+ cipher-base: "npm:^1.0.1"
+ inherits: "npm:^2.0.1"
+ ripemd160: "npm:^2.0.0"
+ sha.js: "npm:^2.4.0"
+ checksum: 10c0/dbcf4a1b13c8dd5f2a69f5f30bd2701f919ed7d3fbf5aa530cf00b17a950c2b77f63bfe6a2981735a646ae2620d96c8f4584bf70aeeabf050a31de4e46219d08
+ languageName: node
+ linkType: hard
+
+"create-hmac@npm:^1.1.7":
version: 1.1.7
resolution: "create-hmac@npm:1.1.7"
dependencies:
@@ -15927,7 +15105,7 @@ __metadata:
languageName: node
linkType: hard
-"crossws@npm:^0.3.4":
+"crossws@npm:^0.3.5":
version: 0.3.5
resolution: "crossws@npm:0.3.5"
dependencies:
@@ -15982,12 +15160,12 @@ __metadata:
linkType: hard
"cssstyle@npm:^4.1.0":
- version: 4.3.1
- resolution: "cssstyle@npm:4.3.1"
+ version: 4.6.0
+ resolution: "cssstyle@npm:4.6.0"
dependencies:
- "@asamuzakjp/css-color": "npm:^3.1.2"
+ "@asamuzakjp/css-color": "npm:^3.2.0"
rrweb-cssom: "npm:^0.8.0"
- checksum: 10c0/89d73252d5f9930cf67f5c576de8030a9d960aae4c8bdd42d60464b2f67c8d809601fb7e620b43d4c84e03472016da77528df9a21a21393387ed256610ca0ab4
+ checksum: 10c0/71add1b0ffafa1bedbef6855db6189b9523d3320e015a0bf3fbd504760efb9a81e1f1a225228d5fa892ee58e56d06994ca372e7f4e461cda7c4c9985fe075f65
languageName: node
linkType: hard
@@ -16181,13 +15359,20 @@ __metadata:
languageName: node
linkType: hard
-"dayjs@npm:1.11.13, dayjs@npm:^1.11.11, dayjs@npm:^1.11.12, dayjs@npm:^1.11.13":
+"dayjs@npm:1.11.13":
version: 1.11.13
resolution: "dayjs@npm:1.11.13"
checksum: 10c0/a3caf6ac8363c7dade9d1ee797848ddcf25c1ace68d9fe8678ecf8ba0675825430de5d793672ec87b24a69bf04a1544b176547b2539982275d5542a7955f35b7
languageName: node
linkType: hard
+"dayjs@npm:^1.11.11, dayjs@npm:^1.11.12, dayjs@npm:^1.11.13":
+ version: 1.11.15
+ resolution: "dayjs@npm:1.11.15"
+ checksum: 10c0/bb66cd5419fff017f3950b95fc27643cf4e0ce22a087cef1f67398f18126ed07bf36d6911f33b19029a1621c64090b8ecaef660477de7678287fe8c0f4e68d29
+ languageName: node
+ linkType: hard
+
"death@npm:^1.1.0":
version: 1.1.0
resolution: "death@npm:1.1.0"
@@ -16204,19 +15389,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0":
- version: 4.4.0
- resolution: "debug@npm:4.4.0"
- dependencies:
- ms: "npm:^2.1.3"
- peerDependenciesMeta:
- supports-color:
- optional: true
- checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de
- languageName: node
- linkType: hard
-
-"debug@npm:4.4.1, debug@npm:^4.4.1":
+"debug@npm:4, debug@npm:4.4.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0, debug@npm:^4.4.1":
version: 4.4.1
resolution: "debug@npm:4.4.1"
dependencies:
@@ -16270,14 +15443,7 @@ __metadata:
languageName: node
linkType: hard
-"decimal.js@npm:^10.4.3":
- version: 10.5.0
- resolution: "decimal.js@npm:10.5.0"
- checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3
- languageName: node
- linkType: hard
-
-"decimal.js@npm:^10.6.0":
+"decimal.js@npm:^10.4.3, decimal.js@npm:^10.6.0":
version: 10.6.0
resolution: "decimal.js@npm:10.6.0"
checksum: 10c0/07d69fbcc54167a340d2d97de95f546f9ff1f69d2b45a02fd7a5292412df3cd9eb7e23065e532a318f5474a2e1bccf8392fdf0443ef467f97f3bf8cb0477e5aa
@@ -16684,16 +15850,16 @@ __metadata:
linkType: hard
"dotenv@npm:^16.4.5, dotenv@npm:^16.4.7":
- version: 16.5.0
- resolution: "dotenv@npm:16.5.0"
- checksum: 10c0/5bc94c919fbd955bf0ba44d33922a1e93d1078e64a1db5c30faeded1d996e7a83c55332cb8ea4fae5a9ca4d0be44cbceb95c5811e70f9f095298df09d1997dd9
+ version: 16.6.1
+ resolution: "dotenv@npm:16.6.1"
+ checksum: 10c0/15ce56608326ea0d1d9414a5c8ee6dcf0fffc79d2c16422b4ac2268e7e2d76ff5a572d37ffe747c377de12005f14b3cc22361e79fc7f1061cce81f77d2c973dc
languageName: node
linkType: hard
"dotenv@npm:^17.0.0":
- version: 17.0.0
- resolution: "dotenv@npm:17.0.0"
- checksum: 10c0/961c9841529f691efb0547cf20b62c952b40e195ef23a254e6b3cd2487bd529b29e194ffcb1f97d4e6a0d9c2df9a6555464f2491da10e725c7bc40855c7b45af
+ version: 17.2.1
+ resolution: "dotenv@npm:17.2.1"
+ checksum: 10c0/918dd2f9d8b8f86b0afabad9534793d51de3718c437f9e7b6525628cf68c1d4ae768cc37a5afff38c066f58a8ecf549f4ac6cd5617485bd328e826112cc2650a
languageName: node
linkType: hard
@@ -16744,14 +15910,14 @@ __metadata:
linkType: hard
"eciesjs@npm:^0.4.11":
- version: 0.4.14
- resolution: "eciesjs@npm:0.4.14"
+ version: 0.4.15
+ resolution: "eciesjs@npm:0.4.15"
dependencies:
- "@ecies/ciphers": "npm:^0.2.2"
- "@noble/ciphers": "npm:^1.0.0"
- "@noble/curves": "npm:^1.6.0"
- "@noble/hashes": "npm:^1.5.0"
- checksum: 10c0/a6f7f829bb097aca1d322c677eb900991070698b0fa658686c88f34104a0b41712aad85c1c2baea14b5f2006beb5c78f17f5ca865818df2c684ca43aa1a8edf7
+ "@ecies/ciphers": "npm:^0.2.3"
+ "@noble/ciphers": "npm:^1.3.0"
+ "@noble/curves": "npm:^1.9.1"
+ "@noble/hashes": "npm:^1.8.0"
+ checksum: 10c0/b5fc236810ff50e02f4d3155ab07f3a5d817ed7611fc63acef348e796a198a10bedf4adb152f512bcdc6ec90eb04a6f66606776bd56078d6d20bf3815bdc3f1c
languageName: node
linkType: hard
@@ -16782,10 +15948,10 @@ __metadata:
languageName: node
linkType: hard
-"electron-to-chromium@npm:^1.5.149":
- version: 1.5.150
- resolution: "electron-to-chromium@npm:1.5.150"
- checksum: 10c0/898c232d5678a1e50f254b93902042e7287c6435ec8adab2a0f35e9f11f343eac901b799babaac92ec455a36f35ac0321847a391470629dd0060a681f850797d
+"electron-to-chromium@npm:^1.5.211":
+ version: 1.5.211
+ resolution: "electron-to-chromium@npm:1.5.211"
+ checksum: 10c0/587536f2e319b7484cd4c9e83484f461ee06672c588c84bf4d4b6a6b5d00fbdb621d4ca418a68125a86db95d373b890b47de2fb5a0f52592cc8aebc263623e6e
languageName: node
linkType: hard
@@ -16812,9 +15978,9 @@ __metadata:
linkType: hard
"emoji-regex@npm:^10.3.0":
- version: 10.4.0
- resolution: "emoji-regex@npm:10.4.0"
- checksum: 10c0/a3fcedfc58bfcce21a05a5f36a529d81e88d602100145fcca3dc6f795e3c8acc4fc18fe773fbf9b6d6e9371205edb3afa2668ec3473fa2aa7fd47d2a9d46482d
+ version: 10.5.0
+ resolution: "emoji-regex@npm:10.5.0"
+ checksum: 10c0/17cf84335a461fc23bf90575122ace2902630dc760e53299474cd3b0b5e4cfbc6c0223a389a766817538e5d20bf0f36c67b753f27c9e705056af510b8777e312
languageName: node
linkType: hard
@@ -16863,11 +16029,11 @@ __metadata:
linkType: hard
"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.0, end-of-stream@npm:^1.4.1":
- version: 1.4.4
- resolution: "end-of-stream@npm:1.4.4"
+ version: 1.4.5
+ resolution: "end-of-stream@npm:1.4.5"
dependencies:
once: "npm:^1.4.0"
- checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975
+ checksum: 10c0/b0701c92a10b89afb1cb45bf54a5292c6f008d744eb4382fa559d54775ff31617d1d7bc3ef617575f552e24fad2c7c1a1835948c66b3f3a4be0a6c1f35c883d8
languageName: node
linkType: hard
@@ -16892,12 +16058,12 @@ __metadata:
linkType: hard
"enhanced-resolve@npm:^5.17.1, enhanced-resolve@npm:^5.7.0":
- version: 5.18.1
- resolution: "enhanced-resolve@npm:5.18.1"
+ version: 5.18.3
+ resolution: "enhanced-resolve@npm:5.18.3"
dependencies:
graceful-fs: "npm:^4.2.4"
tapable: "npm:^2.2.0"
- checksum: 10c0/4cffd9b125225184e2abed9fdf0ed3dbd2224c873b165d0838fd066cde32e0918626cba2f1f4bf6860762f13a7e2364fd89a82b99566be2873d813573ac71846
+ checksum: 10c0/d413c23c2d494e4c1c9c9ac7d60b812083dc6d446699ed495e69c920988af0a3c66bf3f8d0e7a45cb1686c2d4c1df9f4e7352d973f5b56fe63d8d711dd0ccc54
languageName: node
linkType: hard
@@ -16928,9 +16094,9 @@ __metadata:
linkType: hard
"entities@npm:^6.0.0":
- version: 6.0.0
- resolution: "entities@npm:6.0.0"
- checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e
+ version: 6.0.1
+ resolution: "entities@npm:6.0.1"
+ checksum: 10c0/ed836ddac5acb34341094eb495185d527bd70e8632b6c0d59548cbfa23defdbae70b96f9a405c82904efa421230b5b3fd2283752447d737beffd3f3e6ee74414
languageName: node
linkType: hard
@@ -16944,93 +16110,34 @@ __metadata:
"environment@npm:^1.0.0":
version: 1.1.0
resolution: "environment@npm:1.1.0"
- checksum: 10c0/fb26434b0b581ab397039e51ff3c92b34924a98b2039dcb47e41b7bca577b9dbf134a8eadb364415c74464b682e2d3afe1a4c0eb9873dc44ea814c5d3103331d
- languageName: node
- linkType: hard
-
-"err-code@npm:^2.0.2":
- version: 2.0.3
- resolution: "err-code@npm:2.0.3"
- checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66
- languageName: node
- linkType: hard
-
-"err-code@npm:^3.0.1":
- version: 3.0.1
- resolution: "err-code@npm:3.0.1"
- checksum: 10c0/78b1c50500adebde6699b8d27b8ce4728c132dcaad75b5d18ba44f6ccb28769d1fff8368ae1164be4559dac8b95d4e26bb15b480ba9999e0cd0f0c64beaf1b24
- languageName: node
- linkType: hard
-
-"error-ex@npm:^1.3.1":
- version: 1.3.2
- resolution: "error-ex@npm:1.3.2"
- dependencies:
- is-arrayish: "npm:^0.2.1"
- checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce
- languageName: node
- linkType: hard
-
-"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9":
- version: 1.23.9
- resolution: "es-abstract@npm:1.23.9"
- dependencies:
- array-buffer-byte-length: "npm:^1.0.2"
- arraybuffer.prototype.slice: "npm:^1.0.4"
- available-typed-arrays: "npm:^1.0.7"
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- data-view-buffer: "npm:^1.0.2"
- data-view-byte-length: "npm:^1.0.2"
- data-view-byte-offset: "npm:^1.0.1"
- es-define-property: "npm:^1.0.1"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- es-set-tostringtag: "npm:^2.1.0"
- es-to-primitive: "npm:^1.3.0"
- function.prototype.name: "npm:^1.1.8"
- get-intrinsic: "npm:^1.2.7"
- get-proto: "npm:^1.0.0"
- get-symbol-description: "npm:^1.1.0"
- globalthis: "npm:^1.0.4"
- gopd: "npm:^1.2.0"
- has-property-descriptors: "npm:^1.0.2"
- has-proto: "npm:^1.2.0"
- has-symbols: "npm:^1.1.0"
- hasown: "npm:^2.0.2"
- internal-slot: "npm:^1.1.0"
- is-array-buffer: "npm:^3.0.5"
- is-callable: "npm:^1.2.7"
- is-data-view: "npm:^1.0.2"
- is-regex: "npm:^1.2.1"
- is-shared-array-buffer: "npm:^1.0.4"
- is-string: "npm:^1.1.1"
- is-typed-array: "npm:^1.1.15"
- is-weakref: "npm:^1.1.0"
- math-intrinsics: "npm:^1.1.0"
- object-inspect: "npm:^1.13.3"
- object-keys: "npm:^1.1.1"
- object.assign: "npm:^4.1.7"
- own-keys: "npm:^1.0.1"
- regexp.prototype.flags: "npm:^1.5.3"
- safe-array-concat: "npm:^1.1.3"
- safe-push-apply: "npm:^1.0.0"
- safe-regex-test: "npm:^1.1.0"
- set-proto: "npm:^1.0.0"
- string.prototype.trim: "npm:^1.2.10"
- string.prototype.trimend: "npm:^1.0.9"
- string.prototype.trimstart: "npm:^1.0.8"
- typed-array-buffer: "npm:^1.0.3"
- typed-array-byte-length: "npm:^1.0.3"
- typed-array-byte-offset: "npm:^1.0.4"
- typed-array-length: "npm:^1.0.7"
- unbox-primitive: "npm:^1.1.0"
- which-typed-array: "npm:^1.1.18"
- checksum: 10c0/1de229c9e08fe13c17fe5abaec8221545dfcd57e51f64909599a6ae896df84b8fd2f7d16c60cb00d7bf495b9298ca3581aded19939d4b7276854a4b066f8422b
+ checksum: 10c0/fb26434b0b581ab397039e51ff3c92b34924a98b2039dcb47e41b7bca577b9dbf134a8eadb364415c74464b682e2d3afe1a4c0eb9873dc44ea814c5d3103331d
+ languageName: node
+ linkType: hard
+
+"err-code@npm:^2.0.2":
+ version: 2.0.3
+ resolution: "err-code@npm:2.0.3"
+ checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66
+ languageName: node
+ linkType: hard
+
+"err-code@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "err-code@npm:3.0.1"
+ checksum: 10c0/78b1c50500adebde6699b8d27b8ce4728c132dcaad75b5d18ba44f6ccb28769d1fff8368ae1164be4559dac8b95d4e26bb15b480ba9999e0cd0f0c64beaf1b24
+ languageName: node
+ linkType: hard
+
+"error-ex@npm:^1.3.1":
+ version: 1.3.2
+ resolution: "error-ex@npm:1.3.2"
+ dependencies:
+ is-arrayish: "npm:^0.2.1"
+ checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce
languageName: node
linkType: hard
-"es-abstract@npm:^1.24.0":
+"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9, es-abstract@npm:^1.24.0":
version: 1.24.0
resolution: "es-abstract@npm:1.24.0"
dependencies:
@@ -17219,34 +16326,35 @@ __metadata:
linkType: hard
"esbuild@npm:^0.25.0":
- version: 0.25.4
- resolution: "esbuild@npm:0.25.4"
- dependencies:
- "@esbuild/aix-ppc64": "npm:0.25.4"
- "@esbuild/android-arm": "npm:0.25.4"
- "@esbuild/android-arm64": "npm:0.25.4"
- "@esbuild/android-x64": "npm:0.25.4"
- "@esbuild/darwin-arm64": "npm:0.25.4"
- "@esbuild/darwin-x64": "npm:0.25.4"
- "@esbuild/freebsd-arm64": "npm:0.25.4"
- "@esbuild/freebsd-x64": "npm:0.25.4"
- "@esbuild/linux-arm": "npm:0.25.4"
- "@esbuild/linux-arm64": "npm:0.25.4"
- "@esbuild/linux-ia32": "npm:0.25.4"
- "@esbuild/linux-loong64": "npm:0.25.4"
- "@esbuild/linux-mips64el": "npm:0.25.4"
- "@esbuild/linux-ppc64": "npm:0.25.4"
- "@esbuild/linux-riscv64": "npm:0.25.4"
- "@esbuild/linux-s390x": "npm:0.25.4"
- "@esbuild/linux-x64": "npm:0.25.4"
- "@esbuild/netbsd-arm64": "npm:0.25.4"
- "@esbuild/netbsd-x64": "npm:0.25.4"
- "@esbuild/openbsd-arm64": "npm:0.25.4"
- "@esbuild/openbsd-x64": "npm:0.25.4"
- "@esbuild/sunos-x64": "npm:0.25.4"
- "@esbuild/win32-arm64": "npm:0.25.4"
- "@esbuild/win32-ia32": "npm:0.25.4"
- "@esbuild/win32-x64": "npm:0.25.4"
+ version: 0.25.9
+ resolution: "esbuild@npm:0.25.9"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.25.9"
+ "@esbuild/android-arm": "npm:0.25.9"
+ "@esbuild/android-arm64": "npm:0.25.9"
+ "@esbuild/android-x64": "npm:0.25.9"
+ "@esbuild/darwin-arm64": "npm:0.25.9"
+ "@esbuild/darwin-x64": "npm:0.25.9"
+ "@esbuild/freebsd-arm64": "npm:0.25.9"
+ "@esbuild/freebsd-x64": "npm:0.25.9"
+ "@esbuild/linux-arm": "npm:0.25.9"
+ "@esbuild/linux-arm64": "npm:0.25.9"
+ "@esbuild/linux-ia32": "npm:0.25.9"
+ "@esbuild/linux-loong64": "npm:0.25.9"
+ "@esbuild/linux-mips64el": "npm:0.25.9"
+ "@esbuild/linux-ppc64": "npm:0.25.9"
+ "@esbuild/linux-riscv64": "npm:0.25.9"
+ "@esbuild/linux-s390x": "npm:0.25.9"
+ "@esbuild/linux-x64": "npm:0.25.9"
+ "@esbuild/netbsd-arm64": "npm:0.25.9"
+ "@esbuild/netbsd-x64": "npm:0.25.9"
+ "@esbuild/openbsd-arm64": "npm:0.25.9"
+ "@esbuild/openbsd-x64": "npm:0.25.9"
+ "@esbuild/openharmony-arm64": "npm:0.25.9"
+ "@esbuild/sunos-x64": "npm:0.25.9"
+ "@esbuild/win32-arm64": "npm:0.25.9"
+ "@esbuild/win32-ia32": "npm:0.25.9"
+ "@esbuild/win32-x64": "npm:0.25.9"
dependenciesMeta:
"@esbuild/aix-ppc64":
optional: true
@@ -17290,6 +16398,8 @@ __metadata:
optional: true
"@esbuild/openbsd-x64":
optional: true
+ "@esbuild/openharmony-arm64":
+ optional: true
"@esbuild/sunos-x64":
optional: true
"@esbuild/win32-arm64":
@@ -17300,7 +16410,7 @@ __metadata:
optional: true
bin:
esbuild: bin/esbuild
- checksum: 10c0/db9f51248f0560bc46ab219461d338047617f6caf373c95f643b204760bdfa10c95b48cfde948949f7e509599ae4ab61c3f112092a3534936c6abfb800c565b0
+ checksum: 10c0/aaa1284c75fcf45c82f9a1a117fe8dc5c45628e3386bda7d64916ae27730910b51c5aec7dd45a6ba19256be30ba2935e64a8f011a3f0539833071e06bf76d5b3
languageName: node
linkType: hard
@@ -17358,18 +16468,7 @@ __metadata:
languageName: node
linkType: hard
-"eslint-config-prettier@npm:^10.1.5":
- version: 10.1.5
- resolution: "eslint-config-prettier@npm:10.1.5"
- peerDependencies:
- eslint: ">=7.0.0"
- bin:
- eslint-config-prettier: bin/cli.js
- checksum: 10c0/5486255428e4577e8064b40f27db299faf7312b8e43d7b4bc913a6426e6c0f5950cd519cad81ae24e9aecb4002c502bc665c02e3b52efde57af2debcf27dd6e0
- languageName: node
- linkType: hard
-
-"eslint-config-prettier@npm:^10.1.8":
+"eslint-config-prettier@npm:^10.1.5, eslint-config-prettier@npm:^10.1.8":
version: 10.1.8
resolution: "eslint-config-prettier@npm:10.1.8"
peerDependencies:
@@ -17381,13 +16480,13 @@ __metadata:
linkType: hard
"eslint-config-prettier@npm:^9.1.0":
- version: 9.1.0
- resolution: "eslint-config-prettier@npm:9.1.0"
+ version: 9.1.2
+ resolution: "eslint-config-prettier@npm:9.1.2"
peerDependencies:
eslint: ">=7.0.0"
bin:
eslint-config-prettier: bin/cli.js
- checksum: 10c0/6d332694b36bc9ac6fdb18d3ca2f6ac42afa2ad61f0493e89226950a7091e38981b66bac2b47ba39d15b73fff2cd32c78b850a9cf9eed9ca9a96bfb2f3a2f10d
+ checksum: 10c0/d2e9dc913b1677764a4732433d83d258f40820458c65d0274cb9e3eaf6559b39f2136446f310c05abed065a4b3c2e901807ccf583dff76c6227eaebf4132c39a
languageName: node
linkType: hard
@@ -17498,18 +16597,6 @@ __metadata:
languageName: node
linkType: hard
-"eslint-module-utils@npm:^2.12.0":
- version: 2.12.0
- resolution: "eslint-module-utils@npm:2.12.0"
- dependencies:
- debug: "npm:^3.2.7"
- peerDependenciesMeta:
- eslint:
- optional: true
- checksum: 10c0/4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558
- languageName: node
- linkType: hard
-
"eslint-module-utils@npm:^2.12.1":
version: 2.12.1
resolution: "eslint-module-utils@npm:2.12.1"
@@ -17548,36 +16635,7 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-import@npm:^2.25.3, eslint-plugin-import@npm:^2.29.0, eslint-plugin-import@npm:^2.29.1, eslint-plugin-import@npm:^2.31.0":
- version: 2.31.0
- resolution: "eslint-plugin-import@npm:2.31.0"
- dependencies:
- "@rtsao/scc": "npm:^1.1.0"
- array-includes: "npm:^3.1.8"
- array.prototype.findlastindex: "npm:^1.2.5"
- array.prototype.flat: "npm:^1.3.2"
- array.prototype.flatmap: "npm:^1.3.2"
- debug: "npm:^3.2.7"
- doctrine: "npm:^2.1.0"
- eslint-import-resolver-node: "npm:^0.3.9"
- eslint-module-utils: "npm:^2.12.0"
- hasown: "npm:^2.0.2"
- is-core-module: "npm:^2.15.1"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:^3.1.2"
- object.fromentries: "npm:^2.0.8"
- object.groupby: "npm:^1.0.3"
- object.values: "npm:^1.2.0"
- semver: "npm:^6.3.1"
- string.prototype.trimend: "npm:^1.0.8"
- tsconfig-paths: "npm:^3.15.0"
- peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
- checksum: 10c0/e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a
- languageName: node
- linkType: hard
-
-"eslint-plugin-import@npm:^2.32.0":
+"eslint-plugin-import@npm:^2.25.3, eslint-plugin-import@npm:^2.29.0, eslint-plugin-import@npm:^2.29.1, eslint-plugin-import@npm:^2.31.0, eslint-plugin-import@npm:^2.32.0":
version: 2.32.0
resolution: "eslint-plugin-import@npm:2.32.0"
dependencies:
@@ -17681,67 +16739,7 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-prettier@npm:^5.2.1":
- version: 5.4.0
- resolution: "eslint-plugin-prettier@npm:5.4.0"
- dependencies:
- prettier-linter-helpers: "npm:^1.0.0"
- synckit: "npm:^0.11.0"
- peerDependencies:
- "@types/eslint": ">=8.0.0"
- eslint: ">=8.0.0"
- eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
- prettier: ">=3.0.0"
- peerDependenciesMeta:
- "@types/eslint":
- optional: true
- eslint-config-prettier:
- optional: true
- checksum: 10c0/50718d16266dfbe6909697f9d7c9188d2664f5be50fa1de4decc0c8236565570823fdf5973f89cd51254af5551b6160650e092716002a62aaa0f0b2c18e8fc3e
- languageName: node
- linkType: hard
-
-"eslint-plugin-prettier@npm:^5.4.0":
- version: 5.4.1
- resolution: "eslint-plugin-prettier@npm:5.4.1"
- dependencies:
- prettier-linter-helpers: "npm:^1.0.0"
- synckit: "npm:^0.11.7"
- peerDependencies:
- "@types/eslint": ">=8.0.0"
- eslint: ">=8.0.0"
- eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
- prettier: ">=3.0.0"
- peerDependenciesMeta:
- "@types/eslint":
- optional: true
- eslint-config-prettier:
- optional: true
- checksum: 10c0/bdd9e9473bf3f995521558eb5e2ee70dd4f06cb8b9a6192523cfed76511924fad31ec9af9807cd99f693dc59085e0a1db8a1d3ccc283e98ab30eb32cc7469649
- languageName: node
- linkType: hard
-
-"eslint-plugin-prettier@npm:^5.5.1":
- version: 5.5.1
- resolution: "eslint-plugin-prettier@npm:5.5.1"
- dependencies:
- prettier-linter-helpers: "npm:^1.0.0"
- synckit: "npm:^0.11.7"
- peerDependencies:
- "@types/eslint": ">=8.0.0"
- eslint: ">=8.0.0"
- eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
- prettier: ">=3.0.0"
- peerDependenciesMeta:
- "@types/eslint":
- optional: true
- eslint-config-prettier:
- optional: true
- checksum: 10c0/6ed93faa7d885af2a987d732f7e716e7aaba55e2da2b091e1b16bacf68425bffe91d784803597bd3f3e6201499fabb89ae28a51ac3986659a46e55e729ed2d55
- languageName: node
- linkType: hard
-
-"eslint-plugin-prettier@npm:^5.5.4":
+"eslint-plugin-prettier@npm:^5.2.1, eslint-plugin-prettier@npm:^5.4.0, eslint-plugin-prettier@npm:^5.5.1, eslint-plugin-prettier@npm:^5.5.4":
version: 5.5.4
resolution: "eslint-plugin-prettier@npm:5.5.4"
dependencies:
@@ -17911,16 +16909,6 @@ __metadata:
languageName: node
linkType: hard
-"eslint-scope@npm:^8.3.0":
- version: 8.3.0
- resolution: "eslint-scope@npm:8.3.0"
- dependencies:
- esrecurse: "npm:^4.3.0"
- estraverse: "npm:^5.2.0"
- checksum: 10c0/23bf54345573201fdf06d29efa345ab508b355492f6c6cc9e2b9f6d02b896f369b6dd5315205be94b8853809776c4d13353b85c6b531997b164ff6c3328ecf5b
- languageName: node
- linkType: hard
-
"eslint-scope@npm:^8.4.0":
version: 8.4.0
resolution: "eslint-scope@npm:8.4.0"
@@ -17945,13 +16933,6 @@ __metadata:
languageName: node
linkType: hard
-"eslint-visitor-keys@npm:^4.2.0":
- version: 4.2.0
- resolution: "eslint-visitor-keys@npm:4.2.0"
- checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269
- languageName: node
- linkType: hard
-
"eslint-visitor-keys@npm:^4.2.1":
version: 4.2.1
resolution: "eslint-visitor-keys@npm:4.2.1"
@@ -18007,109 +16988,9 @@ __metadata:
languageName: node
linkType: hard
-"eslint@npm:^9.27.0":
- version: 9.28.0
- resolution: "eslint@npm:9.28.0"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.2.0"
- "@eslint-community/regexpp": "npm:^4.12.1"
- "@eslint/config-array": "npm:^0.20.0"
- "@eslint/config-helpers": "npm:^0.2.1"
- "@eslint/core": "npm:^0.14.0"
- "@eslint/eslintrc": "npm:^3.3.1"
- "@eslint/js": "npm:9.28.0"
- "@eslint/plugin-kit": "npm:^0.3.1"
- "@humanfs/node": "npm:^0.16.6"
- "@humanwhocodes/module-importer": "npm:^1.0.1"
- "@humanwhocodes/retry": "npm:^0.4.2"
- "@types/estree": "npm:^1.0.6"
- "@types/json-schema": "npm:^7.0.15"
- ajv: "npm:^6.12.4"
- chalk: "npm:^4.0.0"
- cross-spawn: "npm:^7.0.6"
- debug: "npm:^4.3.2"
- escape-string-regexp: "npm:^4.0.0"
- eslint-scope: "npm:^8.3.0"
- eslint-visitor-keys: "npm:^4.2.0"
- espree: "npm:^10.3.0"
- esquery: "npm:^1.5.0"
- esutils: "npm:^2.0.2"
- fast-deep-equal: "npm:^3.1.3"
- file-entry-cache: "npm:^8.0.0"
- find-up: "npm:^5.0.0"
- glob-parent: "npm:^6.0.2"
- ignore: "npm:^5.2.0"
- imurmurhash: "npm:^0.1.4"
- is-glob: "npm:^4.0.0"
- json-stable-stringify-without-jsonify: "npm:^1.0.1"
- lodash.merge: "npm:^4.6.2"
- minimatch: "npm:^3.1.2"
- natural-compare: "npm:^1.4.0"
- optionator: "npm:^0.9.3"
- peerDependencies:
- jiti: "*"
- peerDependenciesMeta:
- jiti:
- optional: true
- bin:
- eslint: bin/eslint.js
- checksum: 10c0/513ea7e69d88a0905d4ed35cef3a8f31ebce7ca9f2cdbda3474495c63ad6831d52357aad65094be7a144d6e51850980ced7d25efb807e8ab06a427241f7cd730
- languageName: node
- linkType: hard
-
-"eslint@npm:^9.30.1":
- version: 9.30.1
- resolution: "eslint@npm:9.30.1"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.2.0"
- "@eslint-community/regexpp": "npm:^4.12.1"
- "@eslint/config-array": "npm:^0.21.0"
- "@eslint/config-helpers": "npm:^0.3.0"
- "@eslint/core": "npm:^0.14.0"
- "@eslint/eslintrc": "npm:^3.3.1"
- "@eslint/js": "npm:9.30.1"
- "@eslint/plugin-kit": "npm:^0.3.1"
- "@humanfs/node": "npm:^0.16.6"
- "@humanwhocodes/module-importer": "npm:^1.0.1"
- "@humanwhocodes/retry": "npm:^0.4.2"
- "@types/estree": "npm:^1.0.6"
- "@types/json-schema": "npm:^7.0.15"
- ajv: "npm:^6.12.4"
- chalk: "npm:^4.0.0"
- cross-spawn: "npm:^7.0.6"
- debug: "npm:^4.3.2"
- escape-string-regexp: "npm:^4.0.0"
- eslint-scope: "npm:^8.4.0"
- eslint-visitor-keys: "npm:^4.2.1"
- espree: "npm:^10.4.0"
- esquery: "npm:^1.5.0"
- esutils: "npm:^2.0.2"
- fast-deep-equal: "npm:^3.1.3"
- file-entry-cache: "npm:^8.0.0"
- find-up: "npm:^5.0.0"
- glob-parent: "npm:^6.0.2"
- ignore: "npm:^5.2.0"
- imurmurhash: "npm:^0.1.4"
- is-glob: "npm:^4.0.0"
- json-stable-stringify-without-jsonify: "npm:^1.0.1"
- lodash.merge: "npm:^4.6.2"
- minimatch: "npm:^3.1.2"
- natural-compare: "npm:^1.4.0"
- optionator: "npm:^0.9.3"
- peerDependencies:
- jiti: "*"
- peerDependenciesMeta:
- jiti:
- optional: true
- bin:
- eslint: bin/eslint.js
- checksum: 10c0/5a5867078e03ea56a1b6d1ee1548659abc38a6d5136c7ef94e21c5dbeb28e3ed50b15d2e0da25fce85600f6cf7ea7715eae650c41e8ae826c34490e9ec73d5d6
- languageName: node
- linkType: hard
-
-"eslint@npm:^9.33.0":
- version: 9.33.0
- resolution: "eslint@npm:9.33.0"
+"eslint@npm:^9.27.0, eslint@npm:^9.30.1, eslint@npm:^9.33.0":
+ version: 9.34.0
+ resolution: "eslint@npm:9.34.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.2.0"
"@eslint-community/regexpp": "npm:^4.12.1"
@@ -18117,7 +16998,7 @@ __metadata:
"@eslint/config-helpers": "npm:^0.3.1"
"@eslint/core": "npm:^0.15.2"
"@eslint/eslintrc": "npm:^3.3.1"
- "@eslint/js": "npm:9.33.0"
+ "@eslint/js": "npm:9.34.0"
"@eslint/plugin-kit": "npm:^0.3.5"
"@humanfs/node": "npm:^0.16.6"
"@humanwhocodes/module-importer": "npm:^1.0.1"
@@ -18153,22 +17034,11 @@ __metadata:
optional: true
bin:
eslint: bin/eslint.js
- checksum: 10c0/1e1f60d2b62d9d65553e9af916a8dccf00eeedd982103f35bf58c205803907cb1fda73ef595178d47384ea80d8624a182b63682a6b15d8387e9a5d86904a2a2d
- languageName: node
- linkType: hard
-
-"espree@npm:^10.0.1, espree@npm:^10.3.0":
- version: 10.3.0
- resolution: "espree@npm:10.3.0"
- dependencies:
- acorn: "npm:^8.14.0"
- acorn-jsx: "npm:^5.3.2"
- eslint-visitor-keys: "npm:^4.2.0"
- checksum: 10c0/272beeaca70d0a1a047d61baff64db04664a33d7cfb5d144f84bc8a5c6194c6c8ebe9cc594093ca53add88baa23e59b01e69e8a0160ab32eac570482e165c462
+ checksum: 10c0/ba3e54fa0c8ed23d062f91519afaae77fed922a6c4d76130b6cd32154bcb406aaea4b3c5ed88e0be40828c1d5b6921592f3947dbdc5e2043de6bd7aa341fe5ea
languageName: node
linkType: hard
-"espree@npm:^10.4.0":
+"espree@npm:^10.0.1, espree@npm:^10.4.0":
version: 10.4.0
resolution: "espree@npm:10.4.0"
dependencies:
@@ -18431,7 +17301,7 @@ __metadata:
languageName: node
linkType: hard
-"ethers@npm:^6.15.0, ethers@npm:~6.15.0":
+"ethers@npm:^6.14.0, ethers@npm:^6.15.0, ethers@npm:^6.8.1, ethers@npm:~6.15.0":
version: 6.15.0
resolution: "ethers@npm:6.15.0"
dependencies:
@@ -18446,21 +17316,6 @@ __metadata:
languageName: node
linkType: hard
-"ethers@npm:^6.7.0, ethers@npm:^6.8.1":
- version: 6.14.0
- resolution: "ethers@npm:6.14.0"
- dependencies:
- "@adraffy/ens-normalize": "npm:1.10.1"
- "@noble/curves": "npm:1.2.0"
- "@noble/hashes": "npm:1.3.2"
- "@types/node": "npm:22.7.5"
- aes-js: "npm:4.0.0-beta.5"
- tslib: "npm:2.7.0"
- ws: "npm:8.17.1"
- checksum: 10c0/7da443719a21c0b071dbd7d47e50faa8fcacc746e2b5487a394992215457903b1d187279e7134b48414d2626d0dbbf58b20c3bb8d246c359aa0a7453b608d582
- languageName: node
- linkType: hard
-
"ethjs-unit@npm:0.1.6":
version: 0.1.6
resolution: "ethjs-unit@npm:0.1.6"
@@ -18559,9 +17414,9 @@ __metadata:
linkType: hard
"expect-type@npm:^1.2.1":
- version: 1.2.1
- resolution: "expect-type@npm:1.2.1"
- checksum: 10c0/b775c9adab3c190dd0d398c722531726cdd6022849b4adba19dceab58dda7e000a7c6c872408cd73d665baa20d381eca36af4f7b393a4ba60dd10232d1fb8898
+ version: 1.2.2
+ resolution: "expect-type@npm:1.2.2"
+ checksum: 10c0/6019019566063bbc7a690d9281d920b1a91284a4a093c2d55d71ffade5ac890cf37a51e1da4602546c4b56569d2ad2fc175a2ccee77d1ae06cb3af91ef84f44b
languageName: node
linkType: hard
@@ -18586,11 +17441,11 @@ __metadata:
linkType: hard
"express-rate-limit@npm:^7.3.0":
- version: 7.5.0
- resolution: "express-rate-limit@npm:7.5.0"
+ version: 7.5.1
+ resolution: "express-rate-limit@npm:7.5.1"
peerDependencies:
- express: ^4.11 || 5 || ^5.0.0-beta.1
- checksum: 10c0/3e96afa05b4f577395688ede37e0cb19901f20c350b32575fb076f3d25176209fb88d3648151755c232aaf304147c58531f070757978f376e2f08326449299fd
+ express: ">= 4.11"
+ checksum: 10c0/b07de84d700a2c07c4bf2f040e7558ed5a1f660f03ed5f30bf8ff7b51e98ba7a85215640e70fc48cbbb9151066ea51239d9a1b41febc9b84d98c7915b0186161
languageName: node
linkType: hard
@@ -18819,9 +17674,9 @@ __metadata:
linkType: hard
"fast-uri@npm:^3.0.1":
- version: 3.0.6
- resolution: "fast-uri@npm:3.0.6"
- checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29
+ version: 3.1.0
+ resolution: "fast-uri@npm:3.1.0"
+ checksum: 10c0/44364adca566f70f40d1e9b772c923138d47efeac2ae9732a872baafd77061f26b097ba2f68f0892885ad177becd065520412b8ffeec34b16c99433c5b9e2de7
languageName: node
linkType: hard
@@ -18834,14 +17689,14 @@ __metadata:
languageName: node
linkType: hard
-"fast-xml-parser@npm:4.4.1":
- version: 4.4.1
- resolution: "fast-xml-parser@npm:4.4.1"
+"fast-xml-parser@npm:5.2.5":
+ version: 5.2.5
+ resolution: "fast-xml-parser@npm:5.2.5"
dependencies:
- strnum: "npm:^1.0.5"
+ strnum: "npm:^2.1.0"
bin:
fxparser: src/cli/cli.js
- checksum: 10c0/7f334841fe41bfb0bf5d920904ccad09cefc4b5e61eaf4c225bf1e1bb69ee77ef2147d8942f783ee8249e154d1ca8a858e10bda78a5d78b8bed3f48dcee9bf33
+ checksum: 10c0/d1057d2e790c327ccfc42b872b91786a4912a152d44f9507bf053f800102dfb07ece3da0a86b33ff6a0caa5a5cad86da3326744f6ae5efb0c6c571d754fe48cd
languageName: node
linkType: hard
@@ -18881,15 +17736,15 @@ __metadata:
languageName: node
linkType: hard
-"fdir@npm:^6.4.4":
- version: 6.4.4
- resolution: "fdir@npm:6.4.4"
+"fdir@npm:^6.4.4, fdir@npm:^6.5.0":
+ version: 6.5.0
+ resolution: "fdir@npm:6.5.0"
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
- checksum: 10c0/6ccc33be16945ee7bc841e1b4178c0b4cf18d3804894cb482aa514651c962a162f96da7ffc6ebfaf0df311689fb70091b04dd6caffe28d56b9ebdc0e7ccadfdd
+ checksum: 10c0/e345083c4306b3aed6cb8ec551e26c36bab5c511e99ea4576a16750ddc8d3240e63826cc624f5ae17ad4dc82e68a253213b60d556c11bfad064b7607847ed07f
languageName: node
linkType: hard
@@ -19090,12 +17945,12 @@ __metadata:
linkType: hard
"follow-redirects@npm:^1.12.1, follow-redirects@npm:^1.14.0, follow-redirects@npm:^1.14.9, follow-redirects@npm:^1.15.6":
- version: 1.15.9
- resolution: "follow-redirects@npm:1.15.9"
+ version: 1.15.11
+ resolution: "follow-redirects@npm:1.15.11"
peerDependenciesMeta:
debug:
optional: true
- checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f
+ checksum: 10c0/d301f430542520a54058d4aeeb453233c564aaccac835d29d15e050beb33f339ad67d9bddbce01739c5dc46a6716dbe3d9d0d5134b1ca203effa11a7ef092343
languageName: node
linkType: hard
@@ -19141,28 +17996,30 @@ __metadata:
languageName: node
linkType: hard
-"form-data@npm:^2.5.0":
- version: 2.5.3
- resolution: "form-data@npm:2.5.3"
+"form-data@npm:^2.5.5":
+ version: 2.5.5
+ resolution: "form-data@npm:2.5.5"
dependencies:
asynckit: "npm:^0.4.0"
combined-stream: "npm:^1.0.8"
es-set-tostringtag: "npm:^2.1.0"
+ hasown: "npm:^2.0.2"
mime-types: "npm:^2.1.35"
safe-buffer: "npm:^5.2.1"
- checksum: 10c0/48b910745d4fcd403f3d6876e33082a334e712199b8c86c4eb82f6da330a59b859943999d793856758c5ff18ca5261ced4d1062235a14543022d986bd21faa7d
+ checksum: 10c0/7fb70447849fc9bce4d01fe9a626f6587441f85779a2803b67f803e1ab52b0bd78db0a7acd80d944c665f68ca90936c327f1244b730719b638a0219e98b20488
languageName: node
linkType: hard
-"form-data@npm:^4.0.0":
- version: 4.0.2
- resolution: "form-data@npm:4.0.2"
+"form-data@npm:^4.0.0, form-data@npm:^4.0.4":
+ version: 4.0.4
+ resolution: "form-data@npm:4.0.4"
dependencies:
asynckit: "npm:^0.4.0"
combined-stream: "npm:^1.0.8"
es-set-tostringtag: "npm:^2.1.0"
+ hasown: "npm:^2.0.2"
mime-types: "npm:^2.1.12"
- checksum: 10c0/e534b0cf025c831a0929bf4b9bbe1a9a6b03e273a8161f9947286b9b13bf8fb279c6944aae0070c4c311100c6d6dbb815cd955dc217728caf73fad8dc5b8ee9c
+ checksum: 10c0/373525a9a034b9d57073e55eab79e501a714ffac02e7a9b01be1c820780652b16e4101819785e1e18f8d98f0aee866cc654d660a435c378e16a72f2e7cac9695
languageName: node
linkType: hard
@@ -19304,9 +18161,9 @@ __metadata:
linkType: hard
"fs-monkey@npm:^1.0.4":
- version: 1.0.6
- resolution: "fs-monkey@npm:1.0.6"
- checksum: 10c0/6f2508e792a47e37b7eabd5afc79459c1ea72bce2a46007d2b7ed0bfc3a4d64af38975c6eb7e93edb69ac98bbb907c13ff1b1579b2cf52d3d02dbc0303fca79f
+ version: 1.1.0
+ resolution: "fs-monkey@npm:1.1.0"
+ checksum: 10c0/45596fe14753ae8f3fa180724106383de68c8de2836eb24d1647cacf18a6d05335402f3611d32e00234072a60d2f3371024c00cd295593bfbce35b84ff9f6a34
languageName: node
linkType: hard
@@ -19523,16 +18380,7 @@ __metadata:
languageName: node
linkType: hard
-"get-tsconfig@npm:^4.10.0":
- version: 4.10.0
- resolution: "get-tsconfig@npm:4.10.0"
- dependencies:
- resolve-pkg-maps: "npm:^1.0.0"
- checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86
- languageName: node
- linkType: hard
-
-"get-tsconfig@npm:^4.10.1":
+"get-tsconfig@npm:^4.10.0, get-tsconfig@npm:^4.10.1":
version: 4.10.1
resolution: "get-tsconfig@npm:4.10.1"
dependencies:
@@ -19691,13 +18539,6 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^11.1.0":
- version: 11.12.0
- resolution: "globals@npm:11.12.0"
- checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1
- languageName: node
- linkType: hard
-
"globals@npm:^13.19.0, globals@npm:^13.23.0":
version: 13.24.0
resolution: "globals@npm:13.24.0"
@@ -19714,14 +18555,7 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^16.2.0":
- version: 16.2.0
- resolution: "globals@npm:16.2.0"
- checksum: 10c0/c2b3ea163faa6f8a38076b471b12f4bda891f7df7f7d2e8294fb4801d735a51a73431bf4c1696c5bf5dbca5e0a0db894698acfcbd3068730c6b12eef185dea25
- languageName: node
- linkType: hard
-
-"globals@npm:^16.3.0":
+"globals@npm:^16.2.0, globals@npm:^16.3.0":
version: 16.3.0
resolution: "globals@npm:16.3.0"
checksum: 10c0/c62dc20357d1c0bf2be4545d6c4141265d1a229bf1c3294955efb5b5ef611145391895e3f2729f8603809e81b30b516c33e6c2597573844449978606aad6eb38
@@ -19832,8 +18666,8 @@ __metadata:
linkType: hard
"google-gax@npm:^4.0.3":
- version: 4.6.0
- resolution: "google-gax@npm:4.6.0"
+ version: 4.6.1
+ resolution: "google-gax@npm:4.6.1"
dependencies:
"@grpc/grpc-js": "npm:^1.10.9"
"@grpc/proto-loader": "npm:^0.7.13"
@@ -19847,7 +18681,7 @@ __metadata:
protobufjs: "npm:^7.3.2"
retry-request: "npm:^7.0.0"
uuid: "npm:^9.0.1"
- checksum: 10c0/371d855fad00fe5957587ac8b16f27b0e8dbd91e5a05e1f501f57b9f0042171951b8b777e0e73af990203ce3b7a19e02aaeeb32125482b1222be11787c19dbdb
+ checksum: 10c0/740e47beb1def74d3e0074f8582fd919423f6c261b8cfa1c6a6c1c5bf9d8b92a11f1afe07eb1eea2fda7f4b6603c836f9427ed3cfa4c04ae97eb00db7c291400
languageName: node
linkType: hard
@@ -19980,20 +18814,20 @@ __metadata:
languageName: node
linkType: hard
-"h3@npm:^1.15.2":
- version: 1.15.3
- resolution: "h3@npm:1.15.3"
+"h3@npm:^1.15.4":
+ version: 1.15.4
+ resolution: "h3@npm:1.15.4"
dependencies:
cookie-es: "npm:^1.2.2"
- crossws: "npm:^0.3.4"
+ crossws: "npm:^0.3.5"
defu: "npm:^6.1.4"
destr: "npm:^2.0.5"
iron-webcrypto: "npm:^1.2.1"
- node-mock-http: "npm:^1.0.0"
+ node-mock-http: "npm:^1.0.2"
radix3: "npm:^1.1.2"
ufo: "npm:^1.6.1"
uncrypto: "npm:^0.1.3"
- checksum: 10c0/4b83daceda6f39cd508d56382dc3a83ef14453d0119ada290c7fda3c69d907ccaf2547fd233f3e001a9ffae2cde4e2543e4361d714c29fb6ec664f604d5b84a3
+ checksum: 10c0/5182a722d01fe18af5cb62441aaa872b630f4e1ac2cf1782e1f442e65fdfddb85eb6723bf73a96184c2dc1f1e3771d713ef47c456a9a4e92c640b025ba91044c
languageName: node
linkType: hard
@@ -20028,15 +18862,15 @@ __metadata:
linkType: hard
"hardhat-contract-sizer@npm:^2.6.1":
- version: 2.10.0
- resolution: "hardhat-contract-sizer@npm:2.10.0"
+ version: 2.10.1
+ resolution: "hardhat-contract-sizer@npm:2.10.1"
dependencies:
chalk: "npm:^4.0.0"
cli-table3: "npm:^0.6.0"
strip-ansi: "npm:^6.0.0"
peerDependencies:
hardhat: ^2.0.0
- checksum: 10c0/c8bdb3e32c7e5a28bb6a00a2c786d768f471318dc6923c294e2775d69bb12f3c797af38545c8f8603109e293a137a6ba9b511964a35f7bc2356348225ffa2ff7
+ checksum: 10c0/c339c91d166ba27c4230682690d1c0ca5f104dc55001983e152236f73717bf5f97aeb8ac601fd0e2037e7ba1789c998726bf367e0ddd2c268ab40b33f51dcef1
languageName: node
linkType: hard
@@ -20082,13 +18916,13 @@ __metadata:
linkType: hard
"hardhat-gas-reporter@npm:^2.0.2":
- version: 2.2.3
- resolution: "hardhat-gas-reporter@npm:2.2.3"
+ version: 2.3.0
+ resolution: "hardhat-gas-reporter@npm:2.3.0"
dependencies:
"@ethersproject/abi": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/units": "npm:^5.7.0"
- "@solidity-parser/parser": "npm:^0.19.0"
+ "@solidity-parser/parser": "npm:^0.20.1"
axios: "npm:^1.6.7"
brotli-wasm: "npm:^2.0.1"
chalk: "npm:4.1.2"
@@ -20102,13 +18936,13 @@ __metadata:
viem: "npm:^2.27.0"
peerDependencies:
hardhat: ^2.16.0
- checksum: 10c0/4011d4e9a01e60777d0f25683b878d47b4bbe5613c39ce0f5a5cdef704a5b0e0d5bb19e7c63d8ab35603c5539541a099a1105583c7d067abf7e2a1e25d9b31da
+ checksum: 10c0/200ff3fb318de657e72e660526f41c692c4bb3a1b1a43414bd29c1737cf71d514258546bb7722abfad3c296a38e0c0d6e7239410beff4d26d6b529e0d6f94d62
languageName: node
linkType: hard
"hardhat@npm:^2.26.0":
- version: 2.26.0
- resolution: "hardhat@npm:2.26.0"
+ version: 2.26.3
+ resolution: "hardhat@npm:2.26.3"
dependencies:
"@ethereumjs/util": "npm:^9.1.0"
"@ethersproject/abi": "npm:^5.1.2"
@@ -20133,7 +18967,7 @@ __metadata:
json-stream-stringify: "npm:^3.1.4"
keccak: "npm:^3.0.2"
lodash: "npm:^4.17.11"
- micro-eth-signer: "npm:^0.16.0"
+ micro-eth-signer: "npm:^0.14.0"
mnemonist: "npm:^0.38.0"
mocha: "npm:^10.0.0"
p-map: "npm:^4.0.0"
@@ -20159,7 +18993,7 @@ __metadata:
optional: true
bin:
hardhat: internal/cli/bootstrap.js
- checksum: 10c0/8f94dc8ecc73a590723a3b5d45e29e5fdd16ece0164ef705d571e8bd895944b14d7d294d17fd231b811438f69bd79465ec16252404cf00d39cfcb43f5a84ae35
+ checksum: 10c0/e539e5a4dc02b8ac0b055b71723ef7da2848e3495da61d2538d2c0a56df60128d8a8c62b714b97dab13274c5fb0842aba92ab5281b05c2cdeb9a56cac317a7d3
languageName: node
linkType: hard
@@ -20239,6 +19073,15 @@ __metadata:
languageName: node
linkType: hard
+"hash-base@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "hash-base@npm:2.0.2"
+ dependencies:
+ inherits: "npm:^2.0.1"
+ checksum: 10c0/283f6060277b52e627a734c4d19d4315ba82326cab5a2f4f2f00b924d747dc7cc902a8cedb1904c7a3501075fcbb24c08de1152bae296698fdc5ad75b33986af
+ languageName: node
+ linkType: hard
+
"hash-base@npm:^3.0.0":
version: 3.1.0
resolution: "hash-base@npm:3.1.0"
@@ -20392,9 +19235,9 @@ __metadata:
linkType: hard
"http-cache-semantics@npm:^4.1.1":
- version: 4.1.1
- resolution: "http-cache-semantics@npm:4.1.1"
- checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc
+ version: 4.2.0
+ resolution: "http-cache-semantics@npm:4.2.0"
+ checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37
languageName: node
linkType: hard
@@ -20532,13 +19375,20 @@ __metadata:
languageName: node
linkType: hard
-"idb-keyval@npm:^6.2.1":
+"idb-keyval@npm:6.2.1":
version: 6.2.1
resolution: "idb-keyval@npm:6.2.1"
checksum: 10c0/9f0c83703a365e00bd0b4ed6380ce509a06dedfc6ec39b2ba5740085069fd2f2ff5c14ba19356488e3612a2f9c49985971982d836460a982a5d0b4019eeba48a
languageName: node
linkType: hard
+"idb-keyval@npm:^6.2.1":
+ version: 6.2.2
+ resolution: "idb-keyval@npm:6.2.2"
+ checksum: 10c0/b52f0d2937cc2ec9f1da536b0b5c0875af3043ca210714beaffead4ec1f44f2ad322220305fd024596203855224d9e3523aed83e971dfb62ddc21b5b1721aeef
+ languageName: node
+ linkType: hard
+
"ieee754@npm:^1.1.13, ieee754@npm:^1.1.4, ieee754@npm:^1.2.1":
version: 1.2.1
resolution: "ieee754@npm:1.2.1"
@@ -20583,7 +19433,7 @@ __metadata:
languageName: node
linkType: hard
-"immutable@npm:5.1.2, immutable@npm:^5.0.2":
+"immutable@npm:5.1.2":
version: 5.1.2
resolution: "immutable@npm:5.1.2"
checksum: 10c0/da5af92d2c70323c1f9a0e418832c9eef441feadaf6a295a4e07764bd2400c85186872e016071d9253549d58d364160d55dca8dcdf59fd4a6a06c6756fe61657
@@ -20597,6 +19447,13 @@ __metadata:
languageName: node
linkType: hard
+"immutable@npm:^5.0.2":
+ version: 5.1.3
+ resolution: "immutable@npm:5.1.3"
+ checksum: 10c0/f094891dcefb9488a84598376c9218ebff3a130c8b807bda3f6b703c45fe7ef238b8bf9a1eb9961db0523c8d7eb116ab6f47166702e4bbb1927ff5884157cd97
+ languageName: node
+ linkType: hard
+
"import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0":
version: 3.3.1
resolution: "import-fresh@npm:3.3.1"
@@ -20711,19 +19568,19 @@ __metadata:
linkType: hard
"interface-datastore@npm:^8.3.1":
- version: 8.3.1
- resolution: "interface-datastore@npm:8.3.1"
+ version: 8.3.2
+ resolution: "interface-datastore@npm:8.3.2"
dependencies:
interface-store: "npm:^6.0.0"
uint8arrays: "npm:^5.1.0"
- checksum: 10c0/7b7fbe94fe00ed8a69e2197a0b58fa7db733d7a7110dfaa259fc19c9cb1761402a9f31063d4d87676e4d2213ed94b06d3f2b9dd65bc727e89bd0dbfbc17882a1
+ checksum: 10c0/7b30a11caa4f3559564d2dd2428606a140b8765b2c80a2ff7bae7a4229aac1ca9dc05a106e0f2d28e0a01b28e50adfd2c67d095362d974ea7b3f98302eb9cd85
languageName: node
linkType: hard
"interface-store@npm:^6.0.0":
- version: 6.0.2
- resolution: "interface-store@npm:6.0.2"
- checksum: 10c0/26650c98c411fcf5dfeec76d4433f9ca594c2d27cc7afb285b618132d512b62d684471054b2fb4e687b477ab36f1ca21fd81caad404925502a4a54160a7158c4
+ version: 6.0.3
+ resolution: "interface-store@npm:6.0.3"
+ checksum: 10c0/aa7b978fccb0cee55a18e391c22b7b72a85abdb281f6d816ca6316df3af778e0e69b3a1db094b8dbb851cd0ca7edd4cc65f4b689f87fbab6e44439c20252ef18
languageName: node
linkType: hard
@@ -20761,13 +19618,10 @@ __metadata:
languageName: node
linkType: hard
-"ip-address@npm:^9.0.5":
- version: 9.0.5
- resolution: "ip-address@npm:9.0.5"
- dependencies:
- jsbn: "npm:1.1.0"
- sprintf-js: "npm:^1.1.3"
- checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc
+"ip-address@npm:^10.0.1":
+ version: 10.0.1
+ resolution: "ip-address@npm:10.0.1"
+ checksum: 10c0/1634d79dae18394004775cb6d699dc46b7c23df6d2083164025a2b15240c1164fccde53d0e08bd5ee4fc53913d033ab6b5e395a809ad4b956a940c446e948843
languageName: node
linkType: hard
@@ -20786,12 +19640,12 @@ __metadata:
linkType: hard
"ipfs-unixfs@npm:^11.1.4":
- version: 11.2.1
- resolution: "ipfs-unixfs@npm:11.2.1"
+ version: 11.2.5
+ resolution: "ipfs-unixfs@npm:11.2.5"
dependencies:
protons-runtime: "npm:^5.5.0"
uint8arraylist: "npm:^2.4.8"
- checksum: 10c0/588f6eba5b420e46d392339bfc315dec3b7cac4aa1afd6b06bcd7ec6e7faa42396c1e658a001ea7bcfd7d2eed0c4760cb33bcb0df064ec24349d0e67e193980b
+ checksum: 10c0/0176340420f3a8efac45c64216adb8427dbd9ba49154bfe0d5c917fc0d9ccd92e313f04a06f89c4a36244dec12b068227a4de2c2fcfc5d1dd58eba138e29ce7a
languageName: node
linkType: hard
@@ -20896,7 +19750,7 @@ __metadata:
languageName: node
linkType: hard
-"is-core-module@npm:^2.1.0, is-core-module@npm:^2.13.0, is-core-module@npm:^2.15.1, is-core-module@npm:^2.16.0, is-core-module@npm:^2.16.1":
+"is-core-module@npm:^2.1.0, is-core-module@npm:^2.13.0, is-core-module@npm:^2.16.0, is-core-module@npm:^2.16.1":
version: 2.16.1
resolution: "is-core-module@npm:2.16.1"
dependencies:
@@ -21189,7 +20043,7 @@ __metadata:
languageName: node
linkType: hard
-"is-string@npm:^1.0.7, is-string@npm:^1.1.1":
+"is-string@npm:^1.1.1":
version: 1.1.1
resolution: "is-string@npm:1.1.1"
dependencies:
@@ -21233,7 +20087,7 @@ __metadata:
languageName: node
linkType: hard
-"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0, is-weakref@npm:^1.1.1":
+"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.1":
version: 1.1.1
resolution: "is-weakref@npm:1.1.1"
dependencies:
@@ -21271,9 +20125,9 @@ __metadata:
linkType: hard
"is@npm:^3.3.0":
- version: 3.3.0
- resolution: "is@npm:3.3.0"
- checksum: 10c0/d2474beed01c7abba47926d51989fbf6f1c154e01ab7f1052af7e2327d160fda12e52967c96440fdb962489bdd5ecce6a7102cbf98ea43c951b0faa3c21d104a
+ version: 3.3.2
+ resolution: "is@npm:3.3.2"
+ checksum: 10c0/bbb6e0887fdf193d6080fc5cb383ba7a3a5b498d93491032a4dd7e3716d4540c90eb7e579022528883ca3619a056eea596a75758625f24a25c3382328256347a
languageName: node
linkType: hard
@@ -21421,58 +20275,58 @@ __metadata:
linkType: hard
"istanbul-reports@npm:^3.1.3":
- version: 3.1.7
- resolution: "istanbul-reports@npm:3.1.7"
+ version: 3.2.0
+ resolution: "istanbul-reports@npm:3.2.0"
dependencies:
html-escaper: "npm:^2.0.0"
istanbul-lib-report: "npm:^3.0.0"
- checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51
+ checksum: 10c0/d596317cfd9c22e1394f22a8d8ba0303d2074fe2e971887b32d870e4b33f8464b10f8ccbe6847808f7db485f084eba09e6c2ed706b3a978e4b52f07085b8f9bc
languageName: node
linkType: hard
"it-all@npm:^3.0.4":
- version: 3.0.7
- resolution: "it-all@npm:3.0.7"
- checksum: 10c0/b8c930b356e31a0f8c8e811983ba7159ebaadb06a80b27548052ee0519d1a193b0044ab4841445396a4bdeead8eba57e573062316904c2d6e71367372e6a23d0
+ version: 3.0.9
+ resolution: "it-all@npm:3.0.9"
+ checksum: 10c0/811bd0889b3b293ef921c700b58dd82e1281c21d15655f2c00c910a461c1b16c68e9ac84e856cb7b03df790a6819c941fbd91c25f77910a3bb1652eb40ff48ef
languageName: node
linkType: hard
"it-first@npm:^3.0.4":
- version: 3.0.7
- resolution: "it-first@npm:3.0.7"
- checksum: 10c0/b7eaf2616e528e4d40a7b4335148d40337df18242fca35dae903a299befc4a1fb1d6c965c7727901ce81976d9cd541fd334af56656724def47e2360e11ef5f71
+ version: 3.0.9
+ resolution: "it-first@npm:3.0.9"
+ checksum: 10c0/1f6953da550beaa996862bbd5fc7ad56369b88be3980eb0e589cbdfc520f875e281b41f99211e0133492a1de672d99e8aebc8eac95cf2a1403298839d673d908
languageName: node
linkType: hard
"it-glob@npm:^3.0.1":
- version: 3.0.2
- resolution: "it-glob@npm:3.0.2"
+ version: 3.0.4
+ resolution: "it-glob@npm:3.0.4"
dependencies:
fast-glob: "npm:^3.3.3"
- checksum: 10c0/e6df1532d77b9881cf3b3cbfaca320b2c98bbe595afd91ec4c5651b499c71eea06fad94bc0f76a6a260b0f3a17939e1d7ff6d8675d4f28afa52dace3b169a95c
+ checksum: 10c0/eb6ee989587653199bc4085007f03e52597d0678795f6194291c7ecdf770ed98f3a6ee2cd8ee04114351cde4806e2ec0ddd010359537cb41c4f606eab21fd51c
languageName: node
linkType: hard
"it-last@npm:^3.0.4":
- version: 3.0.7
- resolution: "it-last@npm:3.0.7"
- checksum: 10c0/d3a4d8af4bebd42258fc876f8c91faffdd5aa9c33c8f1e80b9c10cff51ef77451a1ea8dba5884f3a35a4e4286f9da066e16cde9d345778034ed830e633f709d9
+ version: 3.0.9
+ resolution: "it-last@npm:3.0.9"
+ checksum: 10c0/5b9cfdfe41e3470d1419b29c84efb67cf252a4f5b6db455768272968f1a54030ed84a6a910c552ee5c0ade40312476c8510a6703a883d98851d8a078562205c3
languageName: node
linkType: hard
"it-map@npm:^3.0.5":
- version: 3.1.2
- resolution: "it-map@npm:3.1.2"
+ version: 3.1.4
+ resolution: "it-map@npm:3.1.4"
dependencies:
it-peekable: "npm:^3.0.0"
- checksum: 10c0/2cad072e239d9de6a829eb0e5ec19f8a0d6276b457f747421d59af69554ea6637937c8f0988b0afed9eda79f22364422b183086b250008ec96858c14ac521383
+ checksum: 10c0/05b35de0a0a531f4756f55977f89e17bd44fd5d19dc2223cd03860f8a07736b001a80e9cb7a2ed2826dabf6afb0244661da1fa51f18c3efe36718e5d099d026a
languageName: node
linkType: hard
"it-peekable@npm:^3.0.0, it-peekable@npm:^3.0.3":
- version: 3.0.6
- resolution: "it-peekable@npm:3.0.6"
- checksum: 10c0/87e260b798db3ab44575c6625108e85b3e144d137a1667119c13e087d1558f9000933e2a302080f674914d4222223a27a56aeb21d6a0ecfee17922225baa81c2
+ version: 3.0.8
+ resolution: "it-peekable@npm:3.0.8"
+ checksum: 10c0/f7690d0dd90cfe83f2121d2a7880f0da050094df48d8fa4b61d73d327ee1e7caaea3ebdf6a46895c0504b8183ec90b9847b54aa09abba647bfa8b70cf276a3e2
languageName: node
linkType: hard
@@ -21541,25 +20395,24 @@ __metadata:
linkType: hard
"jackspeak@npm:^4.0.1":
- version: 4.1.0
- resolution: "jackspeak@npm:4.1.0"
+ version: 4.1.1
+ resolution: "jackspeak@npm:4.1.1"
dependencies:
"@isaacs/cliui": "npm:^8.0.2"
- checksum: 10c0/08a6a24a366c90b83aef3ad6ec41dcaaa65428ffab8d80bc7172add0fbb8b134a34f415ad288b2a6fbd406526e9a62abdb40ed4f399fbe00cb45c44056d4dce0
+ checksum: 10c0/84ec4f8e21d6514db24737d9caf65361511f75e5e424980eebca4199f400874f45e562ac20fa8aeb1dd20ca2f3f81f0788b6e9c3e64d216a5794fd6f30e0e042
languageName: node
linkType: hard
"jake@npm:^10.8.5":
- version: 10.9.2
- resolution: "jake@npm:10.9.2"
+ version: 10.9.4
+ resolution: "jake@npm:10.9.4"
dependencies:
- async: "npm:^3.2.3"
- chalk: "npm:^4.0.2"
+ async: "npm:^3.2.6"
filelist: "npm:^1.0.4"
- minimatch: "npm:^3.1.2"
+ picocolors: "npm:^1.1.1"
bin:
jake: bin/cli.js
- checksum: 10c0/c4597b5ed9b6a908252feab296485a4f87cba9e26d6c20e0ca144fb69e0c40203d34a2efddb33b3d297b8bd59605e6c1f44f6221ca1e10e69175ecbf3ff5fe31
+ checksum: 10c0/bb52f000340d4a32f1a3893b9abe56ef2b77c25da4dbf2c0c874a8159d082dddda50a5ad10e26060198bd645b928ba8dba3b362710f46a247e335321188c5a9c
languageName: node
linkType: hard
@@ -22111,6 +20964,13 @@ __metadata:
languageName: node
linkType: hard
+"js-tokens@npm:^9.0.1":
+ version: 9.0.1
+ resolution: "js-tokens@npm:9.0.1"
+ checksum: 10c0/68dcab8f233dde211a6b5fd98079783cbcd04b53617c1250e3553ee16ab3e6134f5e65478e41d82f6d351a052a63d71024553933808570f04dbf828d7921e80e
+ languageName: node
+ linkType: hard
+
"js-yaml@npm:3.x, js-yaml@npm:^3.13.1":
version: 3.14.1
resolution: "js-yaml@npm:3.14.1"
@@ -22134,13 +20994,6 @@ __metadata:
languageName: node
linkType: hard
-"jsbn@npm:1.1.0":
- version: 1.1.0
- resolution: "jsbn@npm:1.1.0"
- checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96
- languageName: node
- linkType: hard
-
"jsdom@npm:^25.0.1":
version: 25.0.1
resolution: "jsdom@npm:25.0.1"
@@ -22351,15 +21204,15 @@ __metadata:
linkType: hard
"jsonfile@npm:^6.0.1":
- version: 6.1.0
- resolution: "jsonfile@npm:6.1.0"
+ version: 6.2.0
+ resolution: "jsonfile@npm:6.2.0"
dependencies:
graceful-fs: "npm:^4.1.6"
universalify: "npm:^2.0.0"
dependenciesMeta:
graceful-fs:
optional: true
- checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865
+ checksum: 10c0/7f4f43b08d1869ded8a6822213d13ae3b99d651151d77efd1557ced0889c466296a7d9684e397bd126acf5eb2cfcb605808c3e681d0fdccd2fe5a04b47e76c0d
languageName: node
linkType: hard
@@ -22506,8 +21359,8 @@ __metadata:
linkType: hard
"kubo-rpc-client@npm:^5.0.2":
- version: 5.1.0
- resolution: "kubo-rpc-client@npm:5.1.0"
+ version: 5.2.0
+ resolution: "kubo-rpc-client@npm:5.2.0"
dependencies:
"@ipld/dag-cbor": "npm:^9.0.0"
"@ipld/dag-json": "npm:^10.0.0"
@@ -22542,7 +21395,7 @@ __metadata:
stream-to-it: "npm:^1.0.1"
uint8arrays: "npm:^5.0.3"
wherearewe: "npm:^2.0.1"
- checksum: 10c0/b5acd1d98ab1d71eb7a22d69fb6b2d35f28f48eb9c1b484463d8dddc3b3c5f1e001ac06c442d15b2d749380f7c67c4a1673a36a7e68a98963cf6accdb3e437a0
+ checksum: 10c0/3d41e7f8c27450e41bea8489ad99fc4dc675e6c9edf64452b3760f419d1142853262eab630d0c50a132271ff673a1ecee5231d4e22ba944ce1fd5ae3e60f7c4b
languageName: node
linkType: hard
@@ -22589,17 +21442,10 @@ __metadata:
languageName: node
linkType: hard
-"libphonenumber-js@npm:^1.10.53":
- version: 1.12.8
- resolution: "libphonenumber-js@npm:1.12.8"
- checksum: 10c0/9c60d0f7b7b1c5bd85973fb80b8f7d7bbaf57fab2ca89b4f3712ad2e65ac7df8a3f52746a94104fffb618da4109f26fee07fc3225ac65dd17058b0d5d178cb47
- languageName: node
- linkType: hard
-
-"libphonenumber-js@npm:^1.11.1":
- version: 1.12.7
- resolution: "libphonenumber-js@npm:1.12.7"
- checksum: 10c0/ac732b5e8bfe093b4c2aa470a69f52304ebe7cfefebe3ef902ba0cbbf2c159da00993cae0425c7e497961ca015d46082925f37a6c8626b07e98e1bb9e45414cb
+"libphonenumber-js@npm:^1.10.53, libphonenumber-js@npm:^1.11.1":
+ version: 1.12.15
+ resolution: "libphonenumber-js@npm:1.12.15"
+ checksum: 10c0/d715c938f3e9a331b35f0dd93f5c194f7b19321b9e190b05ca76fab88df5c851936752f4354bea812df5d1d4f432a9133dc2c7199e444c7dbf89bb5b9cc75c3a
languageName: node
linkType: hard
@@ -22660,34 +21506,23 @@ __metadata:
languageName: node
linkType: hard
-"lit-element@npm:^4.0.0, lit-element@npm:^4.2.0":
- version: 4.2.0
- resolution: "lit-element@npm:4.2.0"
+"lit-element@npm:^4.2.0":
+ version: 4.2.1
+ resolution: "lit-element@npm:4.2.1"
dependencies:
- "@lit-labs/ssr-dom-shim": "npm:^1.2.0"
+ "@lit-labs/ssr-dom-shim": "npm:^1.4.0"
"@lit/reactive-element": "npm:^2.1.0"
lit-html: "npm:^3.3.0"
- checksum: 10c0/20577f2092ac1e1bd82fba2bbc9ce0122b35dc2495906d3fbcb437c3727b9c8ed1c0691b8b859f65a51e910db1341d95233c117e1e1c88c450b30e2d3b62fdb8
+ checksum: 10c0/2cb30cc7c5a006cd7995f882c5e9ed201638dc3513fdee989dd7b78d8ceb201cf6930abe5ebc5185d7fc3648933a6b6187742d5534269961cd20b9a78617068d
languageName: node
linkType: hard
-"lit-html@npm:^3.1.0, lit-html@npm:^3.3.0":
- version: 3.3.0
- resolution: "lit-html@npm:3.3.0"
+"lit-html@npm:^3.3.0":
+ version: 3.3.1
+ resolution: "lit-html@npm:3.3.1"
dependencies:
"@types/trusted-types": "npm:^2.0.2"
- checksum: 10c0/c1065048d89d93df6a46cdeed9abd637ae9bcc0847ee108dccbb2e1627a4074074e1d3ac9360e08a736d76f8c76b2c88166dbe465406da123b9137e29c2e0034
- languageName: node
- linkType: hard
-
-"lit@npm:3.1.0":
- version: 3.1.0
- resolution: "lit@npm:3.1.0"
- dependencies:
- "@lit/reactive-element": "npm:^2.0.0"
- lit-element: "npm:^4.0.0"
- lit-html: "npm:^3.1.0"
- checksum: 10c0/7ca12c1b1593373d16b51b2220677d8936b4061de4f278ef2a85f15726bb4365a8eed89a0294816a10d6124dca81f02e83b5dfed9a6031e135a7bc68924eea6b
+ checksum: 10c0/0dfb645f35c2ae129a40c09550b4d0e60617b715af7f2e0b825cdfd0624118fc4bf16e9cfaabdfbe43469522e145057d3cc46c64ca1019681480e4b9ae8f52cd
languageName: node
linkType: hard
@@ -22702,6 +21537,17 @@ __metadata:
languageName: node
linkType: hard
+"lit@npm:^3":
+ version: 3.3.1
+ resolution: "lit@npm:3.3.1"
+ dependencies:
+ "@lit/reactive-element": "npm:^2.1.0"
+ lit-element: "npm:^4.2.0"
+ lit-html: "npm:^3.3.0"
+ checksum: 10c0/9f3e171e211be7cd3e01693eac4ba4752fc7bafebc8298fc5b9cb70ff279dd4dc292f1cb425ca42f61c3767a75b7557295c2f6b16335719bc8cf1ca6f3622fb7
+ languageName: node
+ linkType: hard
+
"loader-runner@npm:^4.2.0":
version: 4.3.0
resolution: "loader-runner@npm:4.3.0"
@@ -22797,7 +21643,7 @@ __metadata:
languageName: node
linkType: hard
-"lodash.isstring@npm:^4, lodash.isstring@npm:^4.0.1":
+"lodash.isstring@npm:^4.0.1":
version: 4.0.1
resolution: "lodash.isstring@npm:4.0.1"
checksum: 10c0/09eaf980a283f9eef58ef95b30ec7fee61df4d6bf4aba3b5f096869cc58f24c9da17900febc8ffd67819b4e29de29793190e88dc96983db92d84c95fa85d1c92
@@ -22996,10 +21842,10 @@ __metadata:
languageName: node
linkType: hard
-"loupe@npm:^3.1.0, loupe@npm:^3.1.3":
- version: 3.1.3
- resolution: "loupe@npm:3.1.3"
- checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541
+"loupe@npm:^3.1.0, loupe@npm:^3.1.4":
+ version: 3.2.1
+ resolution: "loupe@npm:3.2.1"
+ checksum: 10c0/910c872cba291309664c2d094368d31a68907b6f5913e989d301b5c25f30e97d76d77f23ab3bf3b46d0f601ff0b6af8810c10c31b91d2c6b2f132809ca2cc705
languageName: node
linkType: hard
@@ -23056,7 +21902,7 @@ __metadata:
languageName: node
linkType: hard
-"magic-string@npm:0.30.17, magic-string@npm:^0.30.17, magic-string@npm:^0.30.3":
+"magic-string@npm:0.30.17":
version: 0.30.17
resolution: "magic-string@npm:0.30.17"
dependencies:
@@ -23074,6 +21920,22 @@ __metadata:
languageName: node
linkType: hard
+"magic-string@npm:^0.30.17, magic-string@npm:^0.30.3":
+ version: 0.30.18
+ resolution: "magic-string@npm:0.30.18"
+ dependencies:
+ "@jridgewell/sourcemap-codec": "npm:^1.5.5"
+ checksum: 10c0/80fba01e13ce1f5c474a0498a5aa462fa158eb56567310747089a0033e432d83a2021ee2c109ac116010cd9dcf90a5231d89fbe3858165f73c00a50a74dbefcd
+ languageName: node
+ linkType: hard
+
+"main-event@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "main-event@npm:1.0.1"
+ checksum: 10c0/c71f0d2974bdb3204141b39af90236235143f8734d2c9b5415c0f6ed4f08099e83c1d9d827581654d3add3e0137d0b4d338ca5c2e14d07b71a61f3164716d98b
+ languageName: node
+ linkType: hard
+
"make-dir@npm:^3.1.0":
version: 3.1.0
resolution: "make-dir@npm:3.1.0"
@@ -23301,14 +22163,14 @@ __metadata:
linkType: hard
"meros@npm:^1.2.1":
- version: 1.3.0
- resolution: "meros@npm:1.3.0"
+ version: 1.3.1
+ resolution: "meros@npm:1.3.1"
peerDependencies:
"@types/node": ">=13"
peerDependenciesMeta:
"@types/node":
optional: true
- checksum: 10c0/2cf9a31228ae6441428a750b67beafec062cc0d693942045336dbe6bfb44507e0ca42854a46f483ebd97e4d78cbc31322b3b85f9648b60fa7a4b28fc0f858f51
+ checksum: 10c0/a3af0702b3086fc7394b38af0f35c2abb445b5e486d6810380d60f6ac241fb114b5423eb55898f8b86b73d58c91f6b4e961087f841e8ba86a0538d2ff249e877
languageName: node
linkType: hard
@@ -23319,14 +22181,14 @@ __metadata:
languageName: node
linkType: hard
-"micro-eth-signer@npm:^0.16.0":
- version: 0.16.0
- resolution: "micro-eth-signer@npm:0.16.0"
+"micro-eth-signer@npm:^0.14.0":
+ version: 0.14.0
+ resolution: "micro-eth-signer@npm:0.14.0"
dependencies:
- "@noble/curves": "npm:~1.9.2"
- "@noble/hashes": "npm:2.0.0-beta.1"
- micro-packed: "npm:~0.7.3"
- checksum: 10c0/daac43e339c3bcb4c1598bfb0cfa83878a25f3464bdbecbf1135dd8ffbe1fa687eec6e5fc82fb5a8d007b5fafcae682f66cddee24724c75c95019625d735a36f
+ "@noble/curves": "npm:~1.8.1"
+ "@noble/hashes": "npm:~1.7.1"
+ micro-packed: "npm:~0.7.2"
+ checksum: 10c0/62c90d54d2b97cb4eaf713c69bc4ceb5903012d0237c26f0966076cfb89c4527de68b395e1bc29e6f237152ce08f7b551fb57b332003518a1331c2c0890fb164
languageName: node
linkType: hard
@@ -23337,7 +22199,7 @@ __metadata:
languageName: node
linkType: hard
-"micro-packed@npm:~0.7.3":
+"micro-packed@npm:~0.7.2":
version: 0.7.3
resolution: "micro-packed@npm:0.7.3"
dependencies:
@@ -23504,11 +22366,11 @@ __metadata:
linkType: hard
"minimatch@npm:^10.0.0":
- version: 10.0.1
- resolution: "minimatch@npm:10.0.1"
+ version: 10.0.3
+ resolution: "minimatch@npm:10.0.3"
dependencies:
- brace-expansion: "npm:^2.0.1"
- checksum: 10c0/e6c29a81fe83e1877ad51348306be2e8aeca18c88fdee7a99df44322314279e15799e41d7cb274e4e8bb0b451a3bc622d6182e157dfa1717d6cda75e9cd8cd5d
+ "@isaacs/brace-expansion": "npm:^5.0.0"
+ checksum: 10c0/e43e4a905c5d70ac4cec8530ceaeccb9c544b1ba8ac45238e2a78121a01c17ff0c373346472d221872563204eabe929ad02669bb575cb1f0cc30facab369f70f
languageName: node
linkType: hard
@@ -23679,7 +22541,7 @@ __metadata:
languageName: node
linkType: hard
-"mkdirp@npm:0.5.x, mkdirp@npm:^0.5.4":
+"mkdirp@npm:0.5.x, mkdirp@npm:^0.5.6":
version: 0.5.6
resolution: "mkdirp@npm:0.5.6"
dependencies:
@@ -23763,44 +22625,44 @@ __metadata:
linkType: hard
"ms@npm:^3.0.0-canary.1":
- version: 3.0.0-canary.1
- resolution: "ms@npm:3.0.0-canary.1"
- checksum: 10c0/81040c55778c01b6cb8fd35aee71465b765a8ab5daa2f8d46a59f9fde0f86c668483232c82c9e8fb7d9379a3671b3bdd5f34b38e54dcedb608d791d149bb2815
+ version: 3.0.0-canary.202508261828
+ resolution: "ms@npm:3.0.0-canary.202508261828"
+ checksum: 10c0/d4921b3e2c46daa0a4119efcf7cfd6b0d75ab1d572314bc026c2403aa3e4a7f1e35f0db06979eaa2700f80494469e72587b25b7083d1d9386af30c4130fc1a2d
languageName: node
linkType: hard
"mui-image@npm:^1.0.7":
- version: 1.0.7
- resolution: "mui-image@npm:1.0.7"
+ version: 1.0.9
+ resolution: "mui-image@npm:1.0.9"
peerDependencies:
"@emotion/react": ^11.4.1
"@emotion/styled": ^11.3.0
- "@mui/material": ^5.0.1
+ "@mui/material": ^5.0.1 || ^6.0.0 || ^7.0.0
prop-types: ^15.7.2
- react: ^17.0.2 || ^18.0.0
- checksum: 10c0/8625d4efe0cccc5294e8d670bf9a0ea5a60a084c79727913b5d69d89459e920320c7b5289164098d33cfddec6bc43c13f550ff175ea89bc62a421790db3d737c
+ react: ^17.0.2 || ^18.0.0 || ^19.0.0
+ checksum: 10c0/ad17200a32c3633776ee8351d2071ee7e38faaf41b2e1c26673cab75a2a1f6a94d6d2939d34ec65ba9b088fc34d55b56798afd71e9753818e2079306992ce3d1
languageName: node
linkType: hard
-"multer@npm:1.4.4-lts.1":
- version: 1.4.4-lts.1
- resolution: "multer@npm:1.4.4-lts.1"
+"multer@npm:2.0.2":
+ version: 2.0.2
+ resolution: "multer@npm:2.0.2"
dependencies:
append-field: "npm:^1.0.0"
- busboy: "npm:^1.0.0"
- concat-stream: "npm:^1.5.2"
- mkdirp: "npm:^0.5.4"
+ busboy: "npm:^1.6.0"
+ concat-stream: "npm:^2.0.0"
+ mkdirp: "npm:^0.5.6"
object-assign: "npm:^4.1.1"
- type-is: "npm:^1.6.4"
- xtend: "npm:^4.0.0"
- checksum: 10c0/63277d3483869f424274ef8ce6ab7ff4ce9d2c1cc69e707fc8b5d9b2b348ae6f742809e0b357a591dea885d147594bcd06528d3d6bbe32046115d4a7e126b954
+ type-is: "npm:^1.6.18"
+ xtend: "npm:^4.0.2"
+ checksum: 10c0/d3b99dd0512169bbabf15440e1bbb3ecdc000b761e5a3e4aaca40b5e5e213c6cdcc9b7dffebaa601b7691a84f6876aa87e0173ffcc47139253793cf5657819eb
languageName: node
linkType: hard
-"multiformats@npm:^13.0.0, multiformats@npm:^13.1.0, multiformats@npm:^13.3.1":
- version: 13.3.2
- resolution: "multiformats@npm:13.3.2"
- checksum: 10c0/a2c6f17b04d6a9cd5d0cb7d07e32dc4f3be82804d44fc056357a98e449340a7ad37d0789da41186ccd8c953e0cf783be3b71f03a00b0a84788689f544ecade46
+"multiformats@npm:^13.0.0, multiformats@npm:^13.1.0, multiformats@npm:^13.3.6":
+ version: 13.4.0
+ resolution: "multiformats@npm:13.4.0"
+ checksum: 10c0/d23f3d1f25f2b46c766ffdf470feb3a82dd23ec33b69ac8efed535f01f196e0b592e24cc829f6d31d3c394fdd84838e5458fa7641fc7f861148c8ff1cf4ccd7e
languageName: node
linkType: hard
@@ -23859,7 +22721,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^3.3.7, nanoid@npm:^3.3.8":
+"nanoid@npm:^3.3.11, nanoid@npm:^3.3.7":
version: 3.3.11
resolution: "nanoid@npm:3.3.11"
bin:
@@ -23877,21 +22739,12 @@ __metadata:
languageName: node
linkType: hard
-"napi-postinstall@npm:^0.2.2":
- version: 0.2.3
- resolution: "napi-postinstall@npm:0.2.3"
- bin:
- napi-postinstall: lib/cli.js
- checksum: 10c0/125cb677d59f284e61cd9b4cd840cf735edd4c325ffc54af4fad16c8726642ffeddaa63c5ca3533b5e7023be4d8e9ff223484c5eea2a8efe2e2498fd063cabbd
- languageName: node
- linkType: hard
-
"napi-postinstall@npm:^0.3.0":
- version: 0.3.0
- resolution: "napi-postinstall@npm:0.3.0"
+ version: 0.3.3
+ resolution: "napi-postinstall@npm:0.3.3"
bin:
napi-postinstall: lib/cli.js
- checksum: 10c0/dd5b295a0c7e669dda81a553b5defcdbe56805beb4279cd0df973454f072c083f574d399c4c825eece128113159658b031b4ac4b9dcb5735c5e34ddaefd3a3ca
+ checksum: 10c0/3f3297c002abd1f1c64730c442e9047e4b50335666bd2821e990e0546ab917f9cd000d3837930a81dbe89075495e884ed526918a85667abeef0654f659217cea
languageName: node
linkType: hard
@@ -23997,13 +22850,13 @@ __metadata:
linkType: hard
"nock@npm:^14.0.3":
- version: 14.0.4
- resolution: "nock@npm:14.0.4"
+ version: 14.0.10
+ resolution: "nock@npm:14.0.10"
dependencies:
- "@mswjs/interceptors": "npm:^0.38.5"
+ "@mswjs/interceptors": "npm:^0.39.5"
json-stringify-safe: "npm:^5.0.1"
propagate: "npm:^2.0.0"
- checksum: 10c0/54e958aa0a734b45207936602616ce9009b32291d22a93f94e2058f3ee20f317b6f974814efc52f32ebb92c6c30e6e15d8a53c17744a95fa2df4e0c267da1af1
+ checksum: 10c0/4868ce7c3e6a51ee83b496a1305eb821ad89427eb9e09c3c431344d91fd49974717e214fe97548be7d5f9a8039fefc3602ffbaad036f3508dd2c143726e3cfb8
languageName: node
linkType: hard
@@ -24059,10 +22912,10 @@ __metadata:
languageName: node
linkType: hard
-"node-fetch-native@npm:^1.6.4, node-fetch-native@npm:^1.6.6":
- version: 1.6.6
- resolution: "node-fetch-native@npm:1.6.6"
- checksum: 10c0/8c12dab0e640d8bc126a03d604af9cf3fc1b87f2cda5af0c71601079d5ed835c1dc149c7042b61c83f252a382e1cf1e541788f4c9e8e6c089af77497190f5dc3
+"node-fetch-native@npm:^1.6.4, node-fetch-native@npm:^1.6.7":
+ version: 1.6.7
+ resolution: "node-fetch-native@npm:1.6.7"
+ checksum: 10c0/8b748300fb053d21ca4d3db9c3ff52593d5e8f8a2d9fe90cbfad159676e324b954fdaefab46aeca007b5b9edab3d150021c4846444e4e8ab1f4e44cd3807be87
languageName: node
linkType: hard
@@ -24092,8 +22945,8 @@ __metadata:
linkType: hard
"node-gyp@npm:latest":
- version: 11.2.0
- resolution: "node-gyp@npm:11.2.0"
+ version: 11.4.2
+ resolution: "node-gyp@npm:11.4.2"
dependencies:
env-paths: "npm:^2.2.0"
exponential-backoff: "npm:^3.1.1"
@@ -24107,7 +22960,7 @@ __metadata:
which: "npm:^5.0.0"
bin:
node-gyp: bin/node-gyp.js
- checksum: 10c0/bd8d8c76b06be761239b0c8680f655f6a6e90b48e44d43415b11c16f7e8c15be346fba0cbf71588c7cdfb52c419d928a7d3db353afc1d952d19756237d8f10b9
+ checksum: 10c0/0bfd3e96770ed70f07798d881dd37b4267708966d868a0e585986baac487d9cf5831285579fd629a83dc4e434f53e6416ce301097f2ee464cb74d377e4d8bdbe
languageName: node
linkType: hard
@@ -24118,10 +22971,10 @@ __metadata:
languageName: node
linkType: hard
-"node-mock-http@npm:^1.0.0":
- version: 1.0.0
- resolution: "node-mock-http@npm:1.0.0"
- checksum: 10c0/cb3fd7c17e7043b87a8d7a9ef1dcd4e2cde312cd224716c5fb3a4b56b48607c257a2e7356e73262db60ebf9e17e23b7a9c5230785f630c6a437090bfd26dd242
+"node-mock-http@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "node-mock-http@npm:1.0.2"
+ checksum: 10c0/d188914bafeaa1fabd68b8db0e2adf004581ae0b0bd776e497f132300d59ee788c982236cba0810f9c22211bc88d5c892abe787b2efe1b97e1082966e64906b3
languageName: node
linkType: hard
@@ -24317,9 +23170,9 @@ __metadata:
linkType: hard
"nwsapi@npm:^2.2.12":
- version: 2.2.20
- resolution: "nwsapi@npm:2.2.20"
- checksum: 10c0/07f4dafa3186aef7c007863e90acd4342a34ba9d44b22f14f644fdb311f6086887e21c2fc15efaa826c2bc39ab2bc841364a1a630e7c87e0cb723ba59d729297
+ version: 2.2.21
+ resolution: "nwsapi@npm:2.2.21"
+ checksum: 10c0/dd330cabb886fd417624bd3af368d86c3d507c002c05fb2f7981874204298deec9e8bd5103d8a0c4a0e0dc280276dc4a59a059e1045eeb7a628f79e6cefba6a3
languageName: node
linkType: hard
@@ -24421,7 +23274,7 @@ __metadata:
languageName: node
linkType: hard
-"object.values@npm:^1.1.6, object.values@npm:^1.2.0, object.values@npm:^1.2.1":
+"object.values@npm:^1.1.6, object.values@npm:^1.2.1":
version: 1.2.1
resolution: "object.values@npm:1.2.1"
dependencies:
@@ -24547,7 +23400,7 @@ __metadata:
languageName: node
linkType: hard
-"openpgp@npm:5.11.2, openpgp@npm:^5.11.2":
+"openpgp@npm:5.11.2":
version: 5.11.2
resolution: "openpgp@npm:5.11.2"
dependencies:
@@ -24556,6 +23409,15 @@ __metadata:
languageName: node
linkType: hard
+"openpgp@npm:^5.11.2":
+ version: 5.11.3
+ resolution: "openpgp@npm:5.11.3"
+ dependencies:
+ asn1.js: "npm:^5.0.0"
+ checksum: 10c0/0e7b9c562d6eb9fefb132a6c70675ad149b3f7bbec8d60b79f198f4834fcd54c15c0d199809b2c01e787c5769e50a9a18f950d9f49416d8c28587ac84bc171c1
+ languageName: node
+ linkType: hard
+
"optionator@npm:^0.8.1":
version: 0.8.3
resolution: "optionator@npm:0.8.3"
@@ -24716,9 +23578,9 @@ __metadata:
languageName: node
linkType: hard
-"ox@npm:0.8.1":
- version: 0.8.1
- resolution: "ox@npm:0.8.1"
+"ox@npm:0.9.1":
+ version: 0.9.1
+ resolution: "ox@npm:0.9.1"
dependencies:
"@adraffy/ens-normalize": "npm:^1.11.0"
"@noble/ciphers": "npm:^1.3.0"
@@ -24733,7 +23595,7 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/3d04df384a35c94b21a29d867ee3735acf9a975d46ffb0a26cc438b92f1e4952b2b3cddb74b4213e88d2988e82687db9b85c1018c5d4b24737b1c3d7cb7c809e
+ checksum: 10c0/1678b0cb3e0f1b0986e8a944f64789ca00eb9e3d02fcb4a613f43fa9d75d9fb782f15a18133779fe6095f190fec2fd8be7a3c9df7ecf9c038fb0037ef542256d
languageName: node
linkType: hard
@@ -25102,9 +23964,9 @@ __metadata:
linkType: hard
"pathval@npm:^2.0.0":
- version: 2.0.0
- resolution: "pathval@npm:2.0.0"
- checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5
+ version: 2.0.1
+ resolution: "pathval@npm:2.0.1"
+ checksum: 10c0/460f4709479fbf2c45903a65655fc8f0a5f6d808f989173aeef5fdea4ff4f303dc13f7870303999add60ec49d4c14733895c0a869392e9866f1091fa64fd7581
languageName: node
linkType: hard
@@ -25116,36 +23978,30 @@ __metadata:
linkType: hard
"pbkdf2@npm:^3.0.17, pbkdf2@npm:^3.1.2":
- version: 3.1.2
- resolution: "pbkdf2@npm:3.1.2"
+ version: 3.1.3
+ resolution: "pbkdf2@npm:3.1.3"
dependencies:
- create-hash: "npm:^1.1.2"
- create-hmac: "npm:^1.1.4"
- ripemd160: "npm:^2.0.1"
- safe-buffer: "npm:^5.0.1"
- sha.js: "npm:^2.4.8"
- checksum: 10c0/5a30374e87d33fa080a92734d778cf172542cc7e41b96198c4c88763997b62d7850de3fbda5c3111ddf79805ee7c1da7046881c90ac4920b5e324204518b05fd
- languageName: node
- linkType: hard
-
-"peek-readable@npm:^7.0.0":
- version: 7.0.0
- resolution: "peek-readable@npm:7.0.0"
- checksum: 10c0/a979b0678a5c2b58c2a755eadc5bb990814e479ff17b9fbcec39a6c88f278eb9a788b6ae13371ee84f7a2c6672505dac961f99ccc0c0300354d9b4dc5a207604
+ create-hash: "npm:~1.1.3"
+ create-hmac: "npm:^1.1.7"
+ ripemd160: "npm:=2.0.1"
+ safe-buffer: "npm:^5.2.1"
+ sha.js: "npm:^2.4.11"
+ to-buffer: "npm:^1.2.0"
+ checksum: 10c0/12779463dfb847701f186e0b7e5fd538a1420409a485dcf5100689c2b3ec3cb113204e82a68668faf3b6dd76ec19260b865313c9d3a9c252807163bdc24652ae
languageName: node
linkType: hard
"pg-cloudflare@npm:^1.1.1":
- version: 1.2.5
- resolution: "pg-cloudflare@npm:1.2.5"
- checksum: 10c0/48b9105ef027c7b3f57ef88ceaec3634cd82120059bd68273cce06989a1ec547e0b0fbb5d1afdd0711824f409c8b410f9bdec2f6c8034728992d3658c0b36f86
+ version: 1.2.7
+ resolution: "pg-cloudflare@npm:1.2.7"
+ checksum: 10c0/8a52713dbdecc9d389dc4e65e3b7ede2e199ec3715f7491ee80a15db171f2d75677a102e9c2cef0cb91a2f310e91f976eaec0dd6ef5d8bf357de0b948f9d9431
languageName: node
linkType: hard
"pg-connection-string@npm:^2.7.0":
- version: 2.8.5
- resolution: "pg-connection-string@npm:2.8.5"
- checksum: 10c0/5f65afc9dfc99ecf1583a1699c97511f3d505659c9c6a91db8cd0ffe862caa29060722712a034abd6da493356567261febf18b3a6ef223d0a219f0d50d959b97
+ version: 2.9.1
+ resolution: "pg-connection-string@npm:2.9.1"
+ checksum: 10c0/9a646529bbc0843806fc5de98ce93735a4612b571f11867178a85665d11989a827e6fd157388ca0e34ec948098564fce836c178cfd499b9f0e8cd9972b8e2e5c
languageName: node
linkType: hard
@@ -25164,18 +24020,18 @@ __metadata:
linkType: hard
"pg-pool@npm:^3.7.0":
- version: 3.9.6
- resolution: "pg-pool@npm:3.9.6"
+ version: 3.10.1
+ resolution: "pg-pool@npm:3.10.1"
peerDependencies:
pg: ">=8.0"
- checksum: 10c0/458d50a4e7260977f076472d40d0796fa8b513af7e3ce1bf65557e10724e9c13653661c883f6650dff92d0a1a5ff4e7a001a8262b786c1ad4cfbd35c3354353e
+ checksum: 10c0/a00916b7df64226cc597fe769e3a757ff9b11562dc87ce5b0a54101a18c1fe282daaa2accaf27221e81e1e4cdf4da6a33dab09614734d32904d6c4e11c44a079
languageName: node
linkType: hard
"pg-protocol@npm:*, pg-protocol@npm:^1.7.0":
- version: 1.9.5
- resolution: "pg-protocol@npm:1.9.5"
- checksum: 10c0/5cb3444cf973adadd22ee9ea26bb1674f0d980ef8f9c66d426bbe67fc9cb5f0ca4a204bf7e432b3ab2ab59ac8227f4b18ab3b2e64eaed537e037e916991c7319
+ version: 1.10.3
+ resolution: "pg-protocol@npm:1.10.3"
+ checksum: 10c0/f7ef54708c93ee6d271e37678296fc5097e4337fca91a88a3d99359b78633dbdbf6e983f0adb34b7cdd261b7ec7266deb20c3233bf3dfdb498b3e1098e8750b9
languageName: node
linkType: hard
@@ -25193,8 +24049,8 @@ __metadata:
linkType: hard
"pg-types@npm:^4.0.1":
- version: 4.0.2
- resolution: "pg-types@npm:4.0.2"
+ version: 4.1.0
+ resolution: "pg-types@npm:4.1.0"
dependencies:
pg-int8: "npm:1.0.1"
pg-numeric: "npm:1.0.2"
@@ -25203,7 +24059,7 @@ __metadata:
postgres-date: "npm:~2.1.0"
postgres-interval: "npm:^3.0.0"
postgres-range: "npm:^1.1.1"
- checksum: 10c0/780fccda2f3fa2a34e85a72e8e7dadb7d88fbe71ce88f126cb3313f333ad836d02488ec4ff3d94d0c1e5846f735d6e6c6281f8059e6b8919d2180429acaec3e2
+ checksum: 10c0/462a56b5c34e0dff38fc5f6ac939c66e80a92333a79bfb1d963ffe0383ca33427a16899e0b9d23235ce1f5df42473373fb9c9f24e1f614f8698b58cc45435ca6
languageName: node
linkType: hard
@@ -25252,7 +24108,7 @@ __metadata:
languageName: node
linkType: hard
-"picomatch@npm:4.0.2, picomatch@npm:^4.0.2":
+"picomatch@npm:4.0.2":
version: 4.0.2
resolution: "picomatch@npm:4.0.2"
checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc
@@ -25266,6 +24122,13 @@ __metadata:
languageName: node
linkType: hard
+"picomatch@npm:^4.0.2, picomatch@npm:^4.0.3":
+ version: 4.0.3
+ resolution: "picomatch@npm:4.0.3"
+ checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2
+ languageName: node
+ linkType: hard
+
"pidtree@npm:^0.6.0":
version: 0.6.0
resolution: "pidtree@npm:0.6.0"
@@ -25316,8 +24179,8 @@ __metadata:
linkType: hard
"pino-pretty@npm:^13.0.0":
- version: 13.0.0
- resolution: "pino-pretty@npm:13.0.0"
+ version: 13.1.1
+ resolution: "pino-pretty@npm:13.1.1"
dependencies:
colorette: "npm:^2.0.7"
dateformat: "npm:^4.6.3"
@@ -25329,12 +24192,12 @@ __metadata:
on-exit-leak-free: "npm:^2.1.0"
pino-abstract-transport: "npm:^2.0.0"
pump: "npm:^3.0.0"
- secure-json-parse: "npm:^2.4.0"
+ secure-json-parse: "npm:^4.0.0"
sonic-boom: "npm:^4.0.1"
- strip-json-comments: "npm:^3.1.1"
+ strip-json-comments: "npm:^5.0.2"
bin:
pino-pretty: bin.js
- checksum: 10c0/015dac25006c1b9820b9e01fccb8a392a019e12b30e6bfc3f3f61ecca8dbabcd000a8f3f64410b620b7f5d08579ba85e6ef137f7fbeaad70d46397a97a5f75ea
+ checksum: 10c0/845c07afd3d73cb96ad2049cfa7fca12b8280a51e30d6db8b490857690637556bb8e7f05b2fa640b3e4a7edd9b1369110042d670fda743ef98fe3be29876c8c7
languageName: node
linkType: hard
@@ -25374,8 +24237,8 @@ __metadata:
linkType: hard
"pino@npm:^9.7.0":
- version: 9.7.0
- resolution: "pino@npm:9.7.0"
+ version: 9.9.0
+ resolution: "pino@npm:9.9.0"
dependencies:
atomic-sleep: "npm:^1.0.0"
fast-redact: "npm:^3.1.1"
@@ -25390,7 +24253,7 @@ __metadata:
thread-stream: "npm:^3.0.0"
bin:
pino: bin.js
- checksum: 10c0/c7f8a83a9a9d728b4eff6d0f4b9367f031c91bcaa5806fbf0eedcc8e77faba593d59baf11a8fba0dd1c778bb17ca7ed01418ac1df4ec129faeedd4f3ecaff66f
+ checksum: 10c0/e2b05d4b1cf73447648ec98d247fd0f1f8020a819ebc2c97fab7fa8b9efe2d1a82ebf674ed2489bb7a1d3a75350c044c776f124e9c29c004bfb133b9e2ac0871
languageName: node
linkType: hard
@@ -25465,14 +24328,14 @@ __metadata:
languageName: node
linkType: hard
-"postcss@npm:^8.5.3":
- version: 8.5.3
- resolution: "postcss@npm:8.5.3"
+"postcss@npm:^8.5.3, postcss@npm:^8.5.6":
+ version: 8.5.6
+ resolution: "postcss@npm:8.5.6"
dependencies:
- nanoid: "npm:^3.3.8"
+ nanoid: "npm:^3.3.11"
picocolors: "npm:^1.1.1"
source-map-js: "npm:^1.2.1"
- checksum: 10c0/b75510d7b28c3ab728c8733dd01538314a18c52af426f199a3c9177e63eb08602a3938bfb66b62dc01350b9aed62087eabbf229af97a1659eb8d3513cec823b3
+ checksum: 10c0/5127cc7c91ed7a133a1b7318012d8bfa112da9ef092dddf369ae699a1f10ebbd89b1b9f25f3228795b84585c72aabd5ced5fc11f2ba467eedf7b081a66fad024
languageName: node
linkType: hard
@@ -25543,10 +24406,17 @@ __metadata:
languageName: node
linkType: hard
-"preact@npm:^10.16.0, preact@npm:^10.24.2":
- version: 10.26.6
- resolution: "preact@npm:10.26.6"
- checksum: 10c0/af07817a24b76c48f0eb49895d2ab49d6e43097355b6f75271a4cab5c2886999968e9eab9331a48f0b7e3477bc16153b08cd1d6a24ebf1acea4016b7054daf29
+"preact@npm:10.24.2":
+ version: 10.24.2
+ resolution: "preact@npm:10.24.2"
+ checksum: 10c0/d1d22c5e1abc10eb8f83501857ef22c54a3fda2d20449d06f5b3c7d5ae812bd702c16c05b672138b8906504f9c893e072e9cebcbcada8cac320edf36265788fb
+ languageName: node
+ linkType: hard
+
+"preact@npm:^10.16.0":
+ version: 10.27.1
+ resolution: "preact@npm:10.27.1"
+ checksum: 10c0/28c2862c94e1d69e81a476068e016aeca25a815874bb52cfbb31c3e78e0ab6799911a51cbdfcc9f8a3c183d81996a015dd7ac9850eaf90f2719d2f2e20d5b56f
languageName: node
linkType: hard
@@ -25574,17 +24444,17 @@ __metadata:
linkType: hard
"prettier-plugin-packagejson@npm:^2.4.12":
- version: 2.5.11
- resolution: "prettier-plugin-packagejson@npm:2.5.11"
+ version: 2.5.19
+ resolution: "prettier-plugin-packagejson@npm:2.5.19"
dependencies:
- sort-package-json: "npm:3.2.0"
- synckit: "npm:0.11.4"
+ sort-package-json: "npm:3.4.0"
+ synckit: "npm:0.11.11"
peerDependencies:
prettier: ">= 1.16.0"
peerDependenciesMeta:
prettier:
optional: true
- checksum: 10c0/ce5e2f0cb1f66603a656d8ecacfccb540eaedce57dd93c059811896f27237a6381a634c4e15e74281f69464e4bad712981289a9ac21fe463bfa08b4586bed4d0
+ checksum: 10c0/288b8658fae8c620d3a7175f64026af8f450f053b8357b86b7d4c697287eae7e706c825d6819959bae1b539103a586f72d8b829574970392d0082f6ec5520d3f
languageName: node
linkType: hard
@@ -25600,7 +24470,7 @@ __metadata:
languageName: node
linkType: hard
-"prettier@npm:3.5.3, prettier@npm:^3.4.2":
+"prettier@npm:3.5.3":
version: 3.5.3
resolution: "prettier@npm:3.5.3"
bin:
@@ -25618,6 +24488,15 @@ __metadata:
languageName: node
linkType: hard
+"prettier@npm:^3.4.2":
+ version: 3.6.2
+ resolution: "prettier@npm:3.6.2"
+ bin:
+ prettier: bin/prettier.cjs
+ checksum: 10c0/488cb2f2b99ec13da1e50074912870217c11edaddedeadc649b1244c749d15ba94e846423d062e2c4c9ae683e2d65f754de28889ba06e697ac4f988d44f45812
+ languageName: node
+ linkType: hard
+
"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0":
version: 29.7.0
resolution: "pretty-format@npm:29.7.0"
@@ -25758,8 +24637,8 @@ __metadata:
linkType: hard
"protobufjs@npm:^7.2.5, protobufjs@npm:^7.3.2":
- version: 7.5.0
- resolution: "protobufjs@npm:7.5.0"
+ version: 7.5.4
+ resolution: "protobufjs@npm:7.5.4"
dependencies:
"@protobufjs/aspromise": "npm:^1.1.2"
"@protobufjs/base64": "npm:^1.1.2"
@@ -25773,18 +24652,18 @@ __metadata:
"@protobufjs/utf8": "npm:^1.1.0"
"@types/node": "npm:>=13.7.0"
long: "npm:^5.0.0"
- checksum: 10c0/21ae56998d04e31ef7f58f49ccf6cd307f06b6257fee8b53016418176a2a03083f781c42907762bfdf632f425b5cd9707bc3f23aa73a9a774292e1b7190e3689
+ checksum: 10c0/913b676109ffb3c05d3d31e03a684e569be91f3bba8613da4a683d69d9dba948daa2afd7d2e7944d1aa6c417890c35d9d9a8883c1160affafb0f9670d59ef722
languageName: node
linkType: hard
"protons-runtime@npm:^5.5.0":
- version: 5.5.0
- resolution: "protons-runtime@npm:5.5.0"
+ version: 5.6.0
+ resolution: "protons-runtime@npm:5.6.0"
dependencies:
uint8-varint: "npm:^2.0.2"
uint8arraylist: "npm:^2.4.3"
uint8arrays: "npm:^5.0.1"
- checksum: 10c0/577588eb47c20136d1d41a1aa2c6ae8bef7d2504cf81e1e2ed15afb3cee97ea0a8743106c83cedd72fa7f4ffeb270d9c9e16479c1ad5ad79879a0b11218baf4d
+ checksum: 10c0/f6961e0ce30d7018b6bf35183384fdf540e58db4b3051342d616bb6a5ffefec0aaca168c5356ce6cf0d6b92cb736149c30f42a7558a76cbb8da9a5ba90827892
languageName: node
linkType: hard
@@ -25805,6 +24684,13 @@ __metadata:
languageName: node
linkType: hard
+"proxy-compare@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "proxy-compare@npm:3.0.1"
+ checksum: 10c0/1e3631ef32603d4de263860ce02d84b48384dce9b62238b2148b3c58a4e4ec5b06644615dcc196a339f73b9695443317099d55a9173e02ce8492088c9330c00b
+ languageName: node
+ linkType: hard
+
"proxy-from-env@npm:^1.1.0":
version: 1.1.0
resolution: "proxy-from-env@npm:1.1.0"
@@ -25827,12 +24713,12 @@ __metadata:
linkType: hard
"pump@npm:^3.0.0":
- version: 3.0.2
- resolution: "pump@npm:3.0.2"
+ version: 3.0.3
+ resolution: "pump@npm:3.0.3"
dependencies:
end-of-stream: "npm:^1.1.0"
once: "npm:^1.3.1"
- checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f
+ checksum: 10c0/ada5cdf1d813065bbc99aa2c393b8f6beee73b5de2890a8754c9f488d7323ffd2ca5f5a0943b48934e3fcbd97637d0337369c3c631aeb9614915db629f1c75c9
languageName: node
linkType: hard
@@ -25925,13 +24811,13 @@ __metadata:
linkType: hard
"query-string@npm:^9.0.0":
- version: 9.1.2
- resolution: "query-string@npm:9.1.2"
+ version: 9.2.2
+ resolution: "query-string@npm:9.2.2"
dependencies:
decode-uri-component: "npm:^0.4.1"
filter-obj: "npm:^5.1.0"
split-on-first: "npm:^3.0.0"
- checksum: 10c0/ead561dd74adddc3013742ab6ef62d7deb8b1b7b79c0471326c4e91d0de27fa03343c98b54b4b4463bdb1d066d041e9d7bfe8033ba8a35dafbaa09b3763d4181
+ checksum: 10c0/2e3cbee52622ac9dd299237d617c922cb2a238e70d58a08eb3ad0be814642578948f58e85376b10bef1c64df04bdde94ca8aad3f319451ee3aba2f553278ed2b
languageName: node
linkType: hard
@@ -26054,22 +24940,22 @@ __metadata:
linkType: hard
"react-hook-form@npm:^7.55.0":
- version: 7.56.2
- resolution: "react-hook-form@npm:7.56.2"
+ version: 7.62.0
+ resolution: "react-hook-form@npm:7.62.0"
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
- checksum: 10c0/9eeca7525c5c0b1356670e7cc77687298c7280a31c99bca396596124371467c310cad22f2c10efd9c75b4570d07740ee1c6ad481d59c1b725c7600767f0a35af
+ checksum: 10c0/451a25a2ddf07be14f690d2ad3f2f970e0b933fd059ef141c6da9e19d0566d739e9d5cc9c482e3533f3fd01d97e658b896a01ce45a1259ad7b0d4638ba0112c6
languageName: node
linkType: hard
"react-i18next@npm:^15.1.0":
- version: 15.5.1
- resolution: "react-i18next@npm:15.5.1"
+ version: 15.7.3
+ resolution: "react-i18next@npm:15.7.3"
dependencies:
- "@babel/runtime": "npm:^7.25.0"
+ "@babel/runtime": "npm:^7.27.6"
html-parse-stringify: "npm:^3.0.1"
peerDependencies:
- i18next: ">= 23.2.3"
+ i18next: ">= 25.4.1"
react: ">= 16.8.0"
typescript: ^5
peerDependenciesMeta:
@@ -26079,7 +24965,7 @@ __metadata:
optional: true
typescript:
optional: true
- checksum: 10c0/448e190beb3338e5e6e48936c82b5e8610fdb54d0b3dafc14c2af76115a6c931eff601c3e4aee00b3d3c1b78d4d7061bbac443fc9bcff786d131e695c79f5822
+ checksum: 10c0/dc3ca1da9accb47f63b2049c94ff7a94ba92d76bad586aca7c2aa3b7a01c2d4e69d4363ff0cfa898cef22b109f2dd49864d6ac94cd9afbac485d44e70ed5a4d6
languageName: node
linkType: hard
@@ -26109,10 +24995,10 @@ __metadata:
languageName: node
linkType: hard
-"react-is@npm:^19.0.0, react-is@npm:^19.1.0":
- version: 19.1.0
- resolution: "react-is@npm:19.1.0"
- checksum: 10c0/b6c6cadd172d5d39f66d493700d137a5545c294a62ce0f8ec793d59794c97d2bed6bad227626f16bd0e90004ed7fdc8ed662a004e6edcf5d2b7ecb6e3040ea6b
+"react-is@npm:^19.0.0, react-is@npm:^19.1.1":
+ version: 19.1.1
+ resolution: "react-is@npm:19.1.1"
+ checksum: 10c0/3dba763fcd69835ae263dcd6727d7ffcc44c1d616f04b7329e67aefdc66a567af4f8dcecdd29454c7a707c968aa1eb85083a83fb616f01675ef25e71cf082f97
languageName: node
linkType: hard
@@ -26171,26 +25057,26 @@ __metadata:
linkType: hard
"react-router-dom@npm:^6.14.1, react-router-dom@npm:^6.22.0, react-router-dom@npm:^6.23.1, react-router-dom@npm:^6.24.1, react-router-dom@npm:^6.4.3":
- version: 6.30.0
- resolution: "react-router-dom@npm:6.30.0"
+ version: 6.30.1
+ resolution: "react-router-dom@npm:6.30.1"
dependencies:
"@remix-run/router": "npm:1.23.0"
- react-router: "npm:6.30.0"
+ react-router: "npm:6.30.1"
peerDependencies:
react: ">=16.8"
react-dom: ">=16.8"
- checksum: 10c0/262954ba894d6a241ceda5f61098f7d6a292d0018a6ebb9c9c67425b7deb6e59b6191a9233a03d38e287e60f7ac3702e9e84c8e20b39a6487698fe088b71e27a
+ checksum: 10c0/e9e1297236b0faa864424ad7d51c392fc6e118595d4dad4cd542fd217c479a81601a81c6266d5801f04f9e154de02d3b094fc22ccb544e755c2eb448fab4ec6b
languageName: node
linkType: hard
-"react-router@npm:6.30.0":
- version: 6.30.0
- resolution: "react-router@npm:6.30.0"
+"react-router@npm:6.30.1":
+ version: 6.30.1
+ resolution: "react-router@npm:6.30.1"
dependencies:
"@remix-run/router": "npm:1.23.0"
peerDependencies:
react: ">=16.8"
- checksum: 10c0/e6f20cf5c47ec057a057a4cfb9a55983d0a5b4b3314d20e07f0a70e59e004f51778d4dac415aee1e4e64db69cc4cd72e5acf8fd60dcf07d909895b8863b0b023
+ checksum: 10c0/0414326f2d8e0c107fb4603cf4066dacba6a1f6f025c6e273f003e177b2f18888aca3de06d9b5522908f0e41de93be1754c37e82aa97b3a269c4742c08e82539
languageName: node
linkType: hard
@@ -26255,7 +25141,7 @@ __metadata:
languageName: node
linkType: hard
-"readable-stream@npm:3, readable-stream@npm:^3.0.0, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0, readable-stream@npm:^3.6.2":
+"readable-stream@npm:3, readable-stream@npm:^3.0.0, readable-stream@npm:^3.0.2, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0, readable-stream@npm:^3.6.2":
version: 3.6.2
resolution: "readable-stream@npm:3.6.2"
dependencies:
@@ -26266,7 +25152,7 @@ __metadata:
languageName: node
linkType: hard
-"readable-stream@npm:^2.2.2, readable-stream@npm:^2.3.3, readable-stream@npm:^2.3.8":
+"readable-stream@npm:^2.3.3, readable-stream@npm:^2.3.8":
version: 2.3.8
resolution: "readable-stream@npm:2.3.8"
dependencies:
@@ -26334,8 +25220,8 @@ __metadata:
linkType: hard
"recharts@npm:^2.13.0-alpha.4, recharts@npm:^2.7.2":
- version: 2.15.3
- resolution: "recharts@npm:2.15.3"
+ version: 2.15.4
+ resolution: "recharts@npm:2.15.4"
dependencies:
clsx: "npm:^2.0.0"
eventemitter3: "npm:^4.0.1"
@@ -26348,7 +25234,7 @@ __metadata:
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/76757605d67a07562bcfb1a4b9a3a0b6b5fed2b84ee5f00813cedf151502969965bf7bd3856eb7e5d60c1d71c7b0d67d9ae2f1ef45676152fcd532abafc501fb
+ checksum: 10c0/45bf1e1f56d881696aa55c1a019f16dee559b46d0024254584424d518e7f2887eb76e8ac22a203d02939fbbeabd2c297fc55c0c5a6534879d60f5caad8a97f37
languageName: node
linkType: hard
@@ -26371,16 +25257,16 @@ __metadata:
linkType: hard
"redis@npm:^4.7.0":
- version: 4.7.0
- resolution: "redis@npm:4.7.0"
+ version: 4.7.1
+ resolution: "redis@npm:4.7.1"
dependencies:
"@redis/bloom": "npm:1.2.0"
- "@redis/client": "npm:1.6.0"
+ "@redis/client": "npm:1.6.1"
"@redis/graph": "npm:1.1.1"
"@redis/json": "npm:1.0.7"
"@redis/search": "npm:1.2.0"
"@redis/time-series": "npm:1.1.0"
- checksum: 10c0/a05632a58adbcaa4566238073cd6d00ed008522d2ef015a31aaef200c184a4eff4fa007c514eda91dda1e1205350b5901d0c7b58824dbfa593feb81a0087bf4d
+ checksum: 10c0/36fc11b7b305e73cafd0a32c5e7070aef72d3a33f2b34f609a1c295afb7d1a022d74eeda96e8d887ef596bbe8ce10811450d02b63175a338d2ff258ff34bd237
languageName: node
linkType: hard
@@ -26656,7 +25542,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@npm:^1.1.6, resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.17.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.4":
+"resolve@npm:^1.1.6, resolve@npm:^1.10.0, resolve@npm:^1.17.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.10, resolve@npm:^1.22.4":
version: 1.22.10
resolution: "resolve@npm:1.22.10"
dependencies:
@@ -26708,7 +25594,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.17.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin":
+"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.17.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.10#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin":
version: 1.22.10
resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d"
dependencies:
@@ -26825,6 +25711,16 @@ __metadata:
languageName: node
linkType: hard
+"ripemd160@npm:=2.0.1":
+ version: 2.0.1
+ resolution: "ripemd160@npm:2.0.1"
+ dependencies:
+ hash-base: "npm:^2.0.0"
+ inherits: "npm:^2.0.1"
+ checksum: 10c0/d4cbb4713c1268bb35e44815b12e3744a952a72b72e6a72110c8f3932227ddf68841110285fe2ed1c04805e2621d85f905deb5f55f9d91fa1bfc0f8081a244e6
+ languageName: node
+ linkType: hard
+
"ripemd160@npm:^2.0.0, ripemd160@npm:^2.0.1":
version: 2.0.2
resolution: "ripemd160@npm:2.0.2"
@@ -26846,31 +25742,31 @@ __metadata:
languageName: node
linkType: hard
-"rollup@npm:^4.34.9":
- version: 4.40.2
- resolution: "rollup@npm:4.40.2"
- dependencies:
- "@rollup/rollup-android-arm-eabi": "npm:4.40.2"
- "@rollup/rollup-android-arm64": "npm:4.40.2"
- "@rollup/rollup-darwin-arm64": "npm:4.40.2"
- "@rollup/rollup-darwin-x64": "npm:4.40.2"
- "@rollup/rollup-freebsd-arm64": "npm:4.40.2"
- "@rollup/rollup-freebsd-x64": "npm:4.40.2"
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.40.2"
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.40.2"
- "@rollup/rollup-linux-arm64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-arm64-musl": "npm:4.40.2"
- "@rollup/rollup-linux-loongarch64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-riscv64-musl": "npm:4.40.2"
- "@rollup/rollup-linux-s390x-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-x64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-x64-musl": "npm:4.40.2"
- "@rollup/rollup-win32-arm64-msvc": "npm:4.40.2"
- "@rollup/rollup-win32-ia32-msvc": "npm:4.40.2"
- "@rollup/rollup-win32-x64-msvc": "npm:4.40.2"
- "@types/estree": "npm:1.0.7"
+"rollup@npm:^4.34.9, rollup@npm:^4.43.0":
+ version: 4.49.0
+ resolution: "rollup@npm:4.49.0"
+ dependencies:
+ "@rollup/rollup-android-arm-eabi": "npm:4.49.0"
+ "@rollup/rollup-android-arm64": "npm:4.49.0"
+ "@rollup/rollup-darwin-arm64": "npm:4.49.0"
+ "@rollup/rollup-darwin-x64": "npm:4.49.0"
+ "@rollup/rollup-freebsd-arm64": "npm:4.49.0"
+ "@rollup/rollup-freebsd-x64": "npm:4.49.0"
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.49.0"
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.49.0"
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-arm64-musl": "npm:4.49.0"
+ "@rollup/rollup-linux-loongarch64-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-ppc64-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-riscv64-musl": "npm:4.49.0"
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-x64-gnu": "npm:4.49.0"
+ "@rollup/rollup-linux-x64-musl": "npm:4.49.0"
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.49.0"
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.49.0"
+ "@rollup/rollup-win32-x64-msvc": "npm:4.49.0"
+ "@types/estree": "npm:1.0.8"
fsevents: "npm:~2.3.2"
dependenciesMeta:
"@rollup/rollup-android-arm-eabi":
@@ -26895,7 +25791,7 @@ __metadata:
optional: true
"@rollup/rollup-linux-loongarch64-gnu":
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu":
+ "@rollup/rollup-linux-ppc64-gnu":
optional: true
"@rollup/rollup-linux-riscv64-gnu":
optional: true
@@ -26917,7 +25813,7 @@ __metadata:
optional: true
bin:
rollup: dist/bin/rollup
- checksum: 10c0/cbe9b766891da74fbf7c3b50420bb75102e5c59afc0ea45751f7e43a581d2cd93367763f521f820b72e341cf1f6b9951fbdcd3be67a1b0aa774b754525a8b9c7
+ checksum: 10c0/ca950eb0fb550c40e0a06e9bb4f17c3b7097a3684152327569d9b20891e704ea8b20764b26d54442fc1eb00615923a191bb928087a7e23e5fa8c3c00e06680e4
languageName: node
linkType: hard
@@ -26987,7 +25883,7 @@ __metadata:
languageName: node
linkType: hard
-"rxjs@npm:^7.2.0, rxjs@npm:^7.5.5, rxjs@npm:^7.8.1":
+"rxjs@npm:7.8.2, rxjs@npm:^7.2.0, rxjs@npm:^7.5.5, rxjs@npm:^7.8.1":
version: 7.8.2
resolution: "rxjs@npm:7.8.2"
dependencies:
@@ -27059,8 +25955,8 @@ __metadata:
linkType: hard
"sass@npm:^1.89.2":
- version: 1.89.2
- resolution: "sass@npm:1.89.2"
+ version: 1.91.0
+ resolution: "sass@npm:1.91.0"
dependencies:
"@parcel/watcher": "npm:^2.4.1"
chokidar: "npm:^4.0.0"
@@ -27071,7 +25967,7 @@ __metadata:
optional: true
bin:
sass: sass.js
- checksum: 10c0/752ccc7581b0c6395f63918116c20924e99943a86d79e94f5c4a0d41b1e981fe1f0ecd1ee82fff21496f81dbc91f68fb35a498166562ec8ec53e7aad7c3dbd9d
+ checksum: 10c0/5be1c98f7a618cb5f90b62f63d2aa0f78f9bf369c93ec7cd9880752a26b0ead19aa63cc341e8a26ce6c74d080baa5705f1685dff52fe6a3f28a7828ae50182b6
languageName: node
linkType: hard
@@ -27178,10 +26074,10 @@ __metadata:
languageName: node
linkType: hard
-"secure-json-parse@npm:^2.4.0":
- version: 2.7.0
- resolution: "secure-json-parse@npm:2.7.0"
- checksum: 10c0/f57eb6a44a38a3eeaf3548228585d769d788f59007454214fab9ed7f01fbf2e0f1929111da6db28cf0bcc1a2e89db5219a59e83eeaec3a54e413a0197ce879e4
+"secure-json-parse@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "secure-json-parse@npm:4.0.0"
+ checksum: 10c0/1a298cf00e1de91e833cee5eb406d6e77fb2f7eca9bef3902047d49e7f5d3e6c21b5de61ff73466c831e716430bfe87d732a6e645a7dabb5f1e8a8e4d3e15eb4
languageName: node
linkType: hard
@@ -27194,7 +26090,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:7.7.2":
+"semver@npm:7.7.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1":
version: 7.7.2
resolution: "semver@npm:7.7.2"
bin:
@@ -27212,15 +26108,6 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1":
- version: 7.7.1
- resolution: "semver@npm:7.7.1"
- bin:
- semver: bin/semver.js
- checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958
- languageName: node
- linkType: hard
-
"send@npm:0.19.0":
version: 0.19.0
resolution: "send@npm:0.19.0"
@@ -27389,14 +26276,15 @@ __metadata:
linkType: hard
"sha.js@npm:^2.4.0, sha.js@npm:^2.4.11, sha.js@npm:^2.4.8":
- version: 2.4.11
- resolution: "sha.js@npm:2.4.11"
+ version: 2.4.12
+ resolution: "sha.js@npm:2.4.12"
dependencies:
- inherits: "npm:^2.0.1"
- safe-buffer: "npm:^5.0.1"
+ inherits: "npm:^2.0.4"
+ safe-buffer: "npm:^5.2.1"
+ to-buffer: "npm:^1.2.0"
bin:
- sha.js: ./bin.js
- checksum: 10c0/b7a371bca8821c9cc98a0aeff67444a03d48d745cb103f17228b96793f455f0eb0a691941b89ea1e60f6359207e36081d9be193252b0f128e0daf9cfea2815a5
+ sha.js: bin.js
+ checksum: 10c0/9d36bdd76202c8116abbe152a00055ccd8a0099cb28fc17c01fa7bb2c8cffb9ca60e2ab0fe5f274ed6c45dc2633d8c39cf7ab050306c231904512ba9da4d8ab1
languageName: node
linkType: hard
@@ -27433,10 +26321,10 @@ __metadata:
languageName: node
linkType: hard
-"shell-quote@npm:^1.8.1":
- version: 1.8.2
- resolution: "shell-quote@npm:1.8.2"
- checksum: 10c0/85fdd44f2ad76e723d34eb72c753f04d847ab64e9f1f10677e3f518d0e5b0752a176fd805297b30bb8c3a1556ebe6e77d2288dbd7b7b0110c7e941e9e9c20ce1
+"shell-quote@npm:1.8.3":
+ version: 1.8.3
+ resolution: "shell-quote@npm:1.8.3"
+ checksum: 10c0/bee87c34e1e986cfb4c30846b8e6327d18874f10b535699866f368ade11ea4ee45433d97bf5eada22c4320c27df79c3a6a7eb1bf3ecfc47f2c997d9e5e2672fd
languageName: node
linkType: hard
@@ -27522,23 +26410,24 @@ __metadata:
languageName: node
linkType: hard
-"simplebar-core@npm:^1.3.0":
- version: 1.3.0
- resolution: "simplebar-core@npm:1.3.0"
+"simplebar-core@npm:^1.3.2":
+ version: 1.3.2
+ resolution: "simplebar-core@npm:1.3.2"
dependencies:
lodash: "npm:^4.17.21"
- checksum: 10c0/c8aa86a402e9a13ffb7a65d75851d400345f109f092f8c23c546bd3e451a7c63d84784fc3bb1c15283cd05ece2ccddd28025f42db0b50aa00db385d8afa7f5e6
+ lodash-es: "npm:^4.17.21"
+ checksum: 10c0/a4844edac50099b30abb60e85f0852ebbcbfbe47e4b67e682f57f21449b08d06a3ac2432db7db5a6bcf571c3ce74d2a418da22f467909587ab295a33b6b551e3
languageName: node
linkType: hard
"simplebar-react@npm:^3.2.5":
- version: 3.3.0
- resolution: "simplebar-react@npm:3.3.0"
+ version: 3.3.2
+ resolution: "simplebar-react@npm:3.3.2"
dependencies:
- simplebar-core: "npm:^1.3.0"
+ simplebar-core: "npm:^1.3.2"
peerDependencies:
react: ">=16.8.0"
- checksum: 10c0/ad07ac2b239f7372af48f92ad01b82a7e6465fcd1c43da9f5d12edb26cba81a55c87badd2cffac4aa8aa769da56c05b4e2eb5de19fec52588ca57f87d1f6202b
+ checksum: 10c0/1ccc2fbfef3659c6ebd6ee9eaa9cffa3c5179e5cf825351335928673ff5f715042f71e05fa3f5813ab1b6fe947536a52050667e149023975c2dcf4287d705292
languageName: node
linkType: hard
@@ -27638,12 +26527,12 @@ __metadata:
linkType: hard
"socks@npm:^2.8.3":
- version: 2.8.4
- resolution: "socks@npm:2.8.4"
+ version: 2.8.7
+ resolution: "socks@npm:2.8.7"
dependencies:
- ip-address: "npm:^9.0.5"
+ ip-address: "npm:^10.0.1"
smart-buffer: "npm:^4.2.0"
- checksum: 10c0/00c3271e233ccf1fb83a3dd2060b94cc37817e0f797a93c560b9a7a86c4a0ec2961fb31263bdd24a3c28945e24868b5f063cd98744171d9e942c513454b50ae5
+ checksum: 10c0/2805a43a1c4bcf9ebf6e018268d87b32b32b06fbbc1f9282573583acc155860dc361500f89c73bfbb157caa1b4ac78059eac0ef15d1811eb0ca75e0bdadbc9d2
languageName: node
linkType: hard
@@ -27727,9 +26616,9 @@ __metadata:
languageName: node
linkType: hard
-"sort-package-json@npm:3.2.0":
- version: 3.2.0
- resolution: "sort-package-json@npm:3.2.0"
+"sort-package-json@npm:3.4.0":
+ version: 3.4.0
+ resolution: "sort-package-json@npm:3.4.0"
dependencies:
detect-indent: "npm:^7.0.1"
detect-newline: "npm:^4.0.1"
@@ -27740,7 +26629,7 @@ __metadata:
tinyglobby: "npm:^0.2.12"
bin:
sort-package-json: cli.js
- checksum: 10c0/14c210c6f07ae326cebd006a9d5bbe76951d7689124806abc70a668124cd380e0488be0a351b22274e5e5a8862255e70c9c985fc9fe512e9c2a78a51218601bc
+ checksum: 10c0/1adb7860eee770fa51ac1c810c2fa2483ab47bf150d1fc2437ef28314ee928142a51245ba22aac8a8c662f431609fc633d404bcdd93acbf54d5a056253741218
languageName: node
linkType: hard
@@ -27829,9 +26718,9 @@ __metadata:
linkType: hard
"spdx-license-ids@npm:^3.0.0":
- version: 3.0.21
- resolution: "spdx-license-ids@npm:3.0.21"
- checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411
+ version: 3.0.22
+ resolution: "spdx-license-ids@npm:3.0.22"
+ checksum: 10c0/4a85e44c2ccfc06eebe63239193f526508ebec1abc7cf7bca8ee43923755636234395447c2c87f40fb672cf580a9c8e684513a676bfb2da3d38a4983684bbb38
languageName: node
linkType: hard
@@ -27865,13 +26754,6 @@ __metadata:
languageName: node
linkType: hard
-"sprintf-js@npm:^1.1.3":
- version: 1.1.3
- resolution: "sprintf-js@npm:1.1.3"
- checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec
- languageName: node
- linkType: hard
-
"sprintf-js@npm:~1.0.2":
version: 1.0.3
resolution: "sprintf-js@npm:1.0.3"
@@ -27880,9 +26762,9 @@ __metadata:
linkType: hard
"sql-highlight@npm:^6.0.0":
- version: 6.0.0
- resolution: "sql-highlight@npm:6.0.0"
- checksum: 10c0/f79998ad298d90eeefbbbc2a3b6424defda5ff1252259fa701466ac830224da598aca6ee97b84fd56948bb5d4d671ee59d3096fe6402013a66c646ec481139eb
+ version: 6.1.0
+ resolution: "sql-highlight@npm:6.1.0"
+ checksum: 10c0/9614f4608bfde8ea7bf9b2fe9233dcc99a619c91cbc3f5cd85a6fb5ad4b2177f4ac8ca4a0191f4243ff8aea3b6f2a1229efc88635298269e0049b2ac08bde263
languageName: node
linkType: hard
@@ -27943,13 +26825,20 @@ __metadata:
languageName: node
linkType: hard
-"statuses@npm:2.0.1, statuses@npm:^2.0.1":
+"statuses@npm:2.0.1":
version: 2.0.1
resolution: "statuses@npm:2.0.1"
checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0
languageName: node
linkType: hard
+"statuses@npm:^2.0.1":
+ version: 2.0.2
+ resolution: "statuses@npm:2.0.2"
+ checksum: 10c0/a9947d98ad60d01f6b26727570f3bcceb6c8fa789da64fe6889908fe2e294d57503b14bf2b5af7605c2d36647259e856635cd4c49eab41667658ec9d0080ec3f
+ languageName: node
+ linkType: hard
+
"std-env@npm:^3.9.0":
version: 3.9.0
resolution: "std-env@npm:3.9.0"
@@ -28179,7 +27068,7 @@ __metadata:
languageName: node
linkType: hard
-"string.prototype.trimend@npm:^1.0.8, string.prototype.trimend@npm:^1.0.9":
+"string.prototype.trimend@npm:^1.0.9":
version: 1.0.9
resolution: "string.prototype.trimend@npm:1.0.9"
dependencies:
@@ -28300,6 +27189,13 @@ __metadata:
languageName: node
linkType: hard
+"strip-json-comments@npm:^5.0.2":
+ version: 5.0.3
+ resolution: "strip-json-comments@npm:5.0.3"
+ checksum: 10c0/daaf20b29f69fb51112698f4a9a662490dbb78d5baf6127c75a0a83c2ac6c078a8c0f74b389ad5e0519d6fc359c4a57cb9971b1ae201aef62ce45a13247791e0
+ languageName: node
+ linkType: hard
+
"strip-json-comments@npm:~2.0.1":
version: 2.0.1
resolution: "strip-json-comments@npm:2.0.1"
@@ -28307,6 +27203,15 @@ __metadata:
languageName: node
linkType: hard
+"strip-literal@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "strip-literal@npm:3.0.0"
+ dependencies:
+ js-tokens: "npm:^9.0.1"
+ checksum: 10c0/d81657f84aba42d4bbaf2a677f7e7f34c1f3de5a6726db8bc1797f9c0b303ba54d4660383a74bde43df401cf37cce1dff2c842c55b077a4ceee11f9e31fba828
+ languageName: node
+ linkType: hard
+
"stripe@npm:^17.7.0":
version: 17.7.0
resolution: "stripe@npm:17.7.0"
@@ -28317,20 +27222,26 @@ __metadata:
languageName: node
linkType: hard
-"strnum@npm:^1.0.5, strnum@npm:^1.1.1":
+"strnum@npm:^1.1.1":
version: 1.1.2
resolution: "strnum@npm:1.1.2"
checksum: 10c0/a0fce2498fa3c64ce64a40dada41beb91cabe3caefa910e467dc0518ef2ebd7e4d10f8c2202a6104f1410254cae245066c0e94e2521fb4061a5cb41831952392
languageName: node
linkType: hard
+"strnum@npm:^2.1.0":
+ version: 2.1.1
+ resolution: "strnum@npm:2.1.1"
+ checksum: 10c0/1f9bd1f9b4c68333f25c2b1f498ea529189f060cd50aa59f1876139c994d817056de3ce57c12c970f80568d75df2289725e218bd9e3cdf73cd1a876c9c102733
+ languageName: node
+ linkType: hard
+
"strtok3@npm:^10.2.0":
- version: 10.2.2
- resolution: "strtok3@npm:10.2.2"
+ version: 10.3.4
+ resolution: "strtok3@npm:10.3.4"
dependencies:
"@tokenizer/token": "npm:^0.3.0"
- peek-readable: "npm:^7.0.0"
- checksum: 10c0/0d13a7fee7d773693b9e23c53429a032beb1d0ba9ab1cef3b5f3968c2c65f5c292a54af2b54c8e55abd210544e786a2369c8c241c68bb7d80b0ae5b207e4afd9
+ checksum: 10c0/277ab69e417f4545e364ffaf9d560c991f531045dbace32d77b5c822cccd76a608b782785a2c60595274288d4d32dced184a5c21dc20348791da697127dc69a8
languageName: node
linkType: hard
@@ -28342,8 +27253,8 @@ __metadata:
linkType: hard
"styled-components@npm:^6.1.11":
- version: 6.1.17
- resolution: "styled-components@npm:6.1.17"
+ version: 6.1.19
+ resolution: "styled-components@npm:6.1.19"
dependencies:
"@emotion/is-prop-valid": "npm:1.2.2"
"@emotion/unitless": "npm:0.8.1"
@@ -28357,7 +27268,7 @@ __metadata:
peerDependencies:
react: ">= 16.8.0"
react-dom: ">= 16.8.0"
- checksum: 10c0/87f35173c5fc2291ddba7ed8224d19fe6872d056a577f55fe130248f5ea23e5c48c012e881fa1ad93df60b56a12c1c2d553f628e204f090189221734927e50b0
+ checksum: 10c0/8d20427a5debe54bfa3b55f79af2a3577551ed7f1d1cd34df986b73fd01ac519f9081b7737cc1f76e12fbc483fa50551e55be0bc984296e623cc6a2364697cd8
languageName: node
linkType: hard
@@ -28382,6 +27293,22 @@ __metadata:
languageName: node
linkType: hard
+"supports-color@npm:8.1.1, supports-color@npm:^8, supports-color@npm:^8.0.0, supports-color@npm:^8.1.1":
+ version: 8.1.1
+ resolution: "supports-color@npm:8.1.1"
+ dependencies:
+ has-flag: "npm:^4.0.0"
+ checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89
+ languageName: node
+ linkType: hard
+
+"supports-color@npm:^10.0.0":
+ version: 10.2.0
+ resolution: "supports-color@npm:10.2.0"
+ checksum: 10c0/a240dbbc52dbdfc9b727a74e30c9a661cb7dd610ee662ae15de332f4993f172f284e57237e03a44abf48587ee142695aa7b25daee73c93a9c356f89dfba7d492
+ languageName: node
+ linkType: hard
+
"supports-color@npm:^3.1.0":
version: 3.2.3
resolution: "supports-color@npm:3.2.3"
@@ -28409,22 +27336,6 @@ __metadata:
languageName: node
linkType: hard
-"supports-color@npm:^8, supports-color@npm:^8.0.0, supports-color@npm:^8.1.1":
- version: 8.1.1
- resolution: "supports-color@npm:8.1.1"
- dependencies:
- has-flag: "npm:^4.0.0"
- checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89
- languageName: node
- linkType: hard
-
-"supports-color@npm:^9.4.0":
- version: 9.4.0
- resolution: "supports-color@npm:9.4.0"
- checksum: 10c0/6c24e6b2b64c6a60e5248490cfa50de5924da32cf09ae357ad8ebbf305cc5d2717ba705a9d4cb397d80bbf39417e8fdc8d7a0ce18bd0041bf7b5b456229164e4
- languageName: node
- linkType: hard
-
"supports-preserve-symlinks-flag@npm:^1.0.0":
version: 1.0.0
resolution: "supports-preserve-symlinks-flag@npm:1.0.0"
@@ -28447,21 +27358,21 @@ __metadata:
linkType: hard
"swiper@npm:^11.1.3":
- version: 11.2.6
- resolution: "swiper@npm:11.2.6"
- checksum: 10c0/36ba63e2d1c5045f647f0f07b3a25c164393fb89b17db63f57fa9f776eb61bc5cb2c34634f80cf69caaddc209a174d0cd7be23c580785534569ea4a098b3a42c
+ version: 11.2.10
+ resolution: "swiper@npm:11.2.10"
+ checksum: 10c0/b7e3a7c79d92ccc62af77744edc376c9aefc771a0abd50c4adf07b5e3450b5da9ca7f84f5809e275ff65e1bc9d4500d930628e84a76fc7f2db403291c69b7fac
languageName: node
linkType: hard
"swr@npm:^2.2.4":
- version: 2.3.3
- resolution: "swr@npm:2.3.3"
+ version: 2.3.6
+ resolution: "swr@npm:2.3.6"
dependencies:
dequal: "npm:^2.0.3"
use-sync-external-store: "npm:^1.4.0"
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/882fc8291912860e0c50eae3470ebf0cd58b0144cb12adcc4b14c5cef913ea06479043830508d8b0b3d4061d99ad8dd52485c9c879fbd4e9b893484e6d8da9e3
+ checksum: 10c0/9534f350982e36a3ae0a13da8c0f7da7011fc979e77f306e60c4e5db0f9b84f17172c44f973441ba56bb684b69b0d9838ab40011a6b6b3e32d0cd7f3d5405f99
languageName: node
linkType: hard
@@ -28479,22 +27390,12 @@ __metadata:
languageName: node
linkType: hard
-"synckit@npm:0.11.4, synckit@npm:^0.11.0":
- version: 0.11.4
- resolution: "synckit@npm:0.11.4"
- dependencies:
- "@pkgr/core": "npm:^0.2.3"
- tslib: "npm:^2.8.1"
- checksum: 10c0/dd2965a37c93c0b652bf07b1fd8d1639a803b65cf34c0cb1b827b8403044fc3b09ec87f681d922a324825127ee95b2e0394e7caccb502f407892d63e903c5276
- languageName: node
- linkType: hard
-
-"synckit@npm:^0.11.7":
- version: 0.11.8
- resolution: "synckit@npm:0.11.8"
+"synckit@npm:0.11.11, synckit@npm:^0.11.7":
+ version: 0.11.11
+ resolution: "synckit@npm:0.11.11"
dependencies:
- "@pkgr/core": "npm:^0.2.4"
- checksum: 10c0/a1de5131ee527512afcaafceb2399b2f3e63678e56b831e1cb2dc7019c972a8b654703a3b94ef4166868f87eb984ea252b467c9d9e486b018ec2e6a55c24dfd8
+ "@pkgr/core": "npm:^0.2.9"
+ checksum: 10c0/f0761495953d12d94a86edf6326b3a565496c72f9b94c02549b6961fb4d999f4ca316ce6b3eb8ed2e4bfc5056a8de65cda0bd03a233333a35221cd2fdc0e196b
languageName: node
linkType: hard
@@ -28524,9 +27425,9 @@ __metadata:
linkType: hard
"tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1":
- version: 2.2.1
- resolution: "tapable@npm:2.2.1"
- checksum: 10c0/bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9
+ version: 2.2.3
+ resolution: "tapable@npm:2.2.3"
+ checksum: 10c0/e57fd8e2d756c317f8726a1bec8f2c904bc42e37fcbd4a78211daeab89f42c734b6a20e61774321f47be9a421da628a0c78b62d36c5ed186f4d5232d09ae15f2
languageName: node
linkType: hard
@@ -28617,16 +27518,16 @@ __metadata:
linkType: hard
"terser@npm:^5.31.1":
- version: 5.39.0
- resolution: "terser@npm:5.39.0"
+ version: 5.43.1
+ resolution: "terser@npm:5.43.1"
dependencies:
"@jridgewell/source-map": "npm:^0.3.3"
- acorn: "npm:^8.8.2"
+ acorn: "npm:^8.14.0"
commander: "npm:^2.20.0"
source-map-support: "npm:~0.5.20"
bin:
terser: bin/terser
- checksum: 10c0/83326545ea1aecd6261030568b6191ccfa4cb6aa61d9ea41746a52479f50017a78b77e4725fbbc207c5df841ffa66a773c5ac33636e95c7ab94fe7e0379ae5c7
+ checksum: 10c0/9cd3fa09ea6bcb79eb71995216b8bef0651b18c5c3877535fc699a77e1ab43b140a4da5811ac9baeb654fa9ec939b17324092f0f0bdb19c402e101e3db946986
languageName: node
linkType: hard
@@ -28726,17 +27627,7 @@ __metadata:
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.6":
- version: 0.2.13
- resolution: "tinyglobby@npm:0.2.13"
- dependencies:
- fdir: "npm:^6.4.4"
- picomatch: "npm:^4.0.2"
- checksum: 10c0/ef07dfaa7b26936601d3f6d999f7928a4d1c6234c5eb36896bb88681947c0d459b7ebe797022400e555fe4b894db06e922b95d0ce60cb05fd827a0a66326b18c
- languageName: node
- linkType: hard
-
-"tinyglobby@npm:^0.2.14":
+"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.6":
version: 0.2.14
resolution: "tinyglobby@npm:0.2.14"
dependencies:
@@ -28746,10 +27637,10 @@ __metadata:
languageName: node
linkType: hard
-"tinypool@npm:^1.0.2":
- version: 1.0.2
- resolution: "tinypool@npm:1.0.2"
- checksum: 10c0/31ac184c0ff1cf9a074741254fe9ea6de95026749eb2b8ec6fd2b9d8ca94abdccda731f8e102e7f32e72ed3b36d32c6975fd5f5523df3f1b6de6c3d8dfd95e63
+"tinypool@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "tinypool@npm:1.1.1"
+ checksum: 10c0/bf26727d01443061b04fa863f571016950888ea994ba0cd8cba3a1c51e2458d84574341ab8dbc3664f1c3ab20885c8cf9ff1cc4b18201f04c2cde7d317fff69b
languageName: node
linkType: hard
@@ -28760,10 +27651,10 @@ __metadata:
languageName: node
linkType: hard
-"tinyspy@npm:^3.0.2":
- version: 3.0.2
- resolution: "tinyspy@npm:3.0.2"
- checksum: 10c0/55ffad24e346622b59292e097c2ee30a63919d5acb7ceca87fc0d1c223090089890587b426e20054733f97a58f20af2c349fb7cc193697203868ab7ba00bcea0
+"tinyspy@npm:^4.0.3":
+ version: 4.0.3
+ resolution: "tinyspy@npm:4.0.3"
+ checksum: 10c0/0a92a18b5350945cc8a1da3a22c9ad9f4e2945df80aaa0c43e1b3a3cfb64d8501e607ebf0305e048e3c3d3e0e7f8eb10cea27dc17c21effb73e66c4a3be36373
languageName: node
linkType: hard
@@ -28804,9 +27695,9 @@ __metadata:
linkType: hard
"tmp@npm:^0.2.0":
- version: 0.2.3
- resolution: "tmp@npm:0.2.3"
- checksum: 10c0/3e809d9c2f46817475b452725c2aaa5d11985cf18d32a7a970ff25b568438e2c076c2e8609224feef3b7923fa9749b74428e3e634f6b8e520c534eef2fd24125
+ version: 0.2.5
+ resolution: "tmp@npm:0.2.5"
+ checksum: 10c0/cee5bb7d674bb4ba3ab3f3841c2ca7e46daeb2109eec395c1ec7329a91d52fcb21032b79ac25161a37b2565c4858fefab927af9735926a113ef7bac9091a6e0e
languageName: node
linkType: hard
@@ -28817,6 +27708,17 @@ __metadata:
languageName: node
linkType: hard
+"to-buffer@npm:^1.2.0":
+ version: 1.2.1
+ resolution: "to-buffer@npm:1.2.1"
+ dependencies:
+ isarray: "npm:^2.0.5"
+ safe-buffer: "npm:^5.2.1"
+ typed-array-buffer: "npm:^1.0.3"
+ checksum: 10c0/bbf07a2a7d6ff9e3ffe503c689176c7149cf3ec25887ce7c4aa5c4841a8845cc71121cd7b4a4769957f823b3f31dbf6b1be6e0a5955798ad864bf2245ee8b5e4
+ languageName: node
+ linkType: hard
+
"to-regex-range@npm:^5.0.1":
version: 5.0.1
resolution: "to-regex-range@npm:5.0.1"
@@ -28841,12 +27743,13 @@ __metadata:
linkType: hard
"token-types@npm:^6.0.0":
- version: 6.0.0
- resolution: "token-types@npm:6.0.0"
+ version: 6.1.1
+ resolution: "token-types@npm:6.1.1"
dependencies:
+ "@borewit/text-codec": "npm:^0.1.0"
"@tokenizer/token": "npm:^0.3.0"
ieee754: "npm:^1.2.1"
- checksum: 10c0/5bf5eba51d63f71f301659ff70ce10ca43e7038364883437d8b4541cc98377e3e56109b11720e25fe51047014efaccdff90eaf6de9a78270483578814b838ab9
+ checksum: 10c0/e2405e7789d41693a09c478b53c47ffadd735a5f4c826d9885787d022ab10e26cc4a67b03593285748bf3b0c0237e0ea2ab268abcb953ea314727201d0f6504d
languageName: node
linkType: hard
@@ -28882,7 +27785,7 @@ __metadata:
languageName: node
linkType: hard
-"tree-kill@npm:1.2.2, tree-kill@npm:^1.2.2":
+"tree-kill@npm:1.2.2":
version: 1.2.2
resolution: "tree-kill@npm:1.2.2"
bin:
@@ -29199,7 +28102,7 @@ __metadata:
languageName: node
linkType: hard
-"type-is@npm:^1.6.4, type-is@npm:~1.6.18":
+"type-is@npm:^1.6.18, type-is@npm:~1.6.18":
version: 1.6.18
resolution: "type-is@npm:1.6.18"
dependencies:
@@ -29303,28 +28206,28 @@ __metadata:
linkType: hard
"typedoc-plugin-markdown@npm:^4.2.3":
- version: 4.6.3
- resolution: "typedoc-plugin-markdown@npm:4.6.3"
+ version: 4.8.1
+ resolution: "typedoc-plugin-markdown@npm:4.8.1"
peerDependencies:
typedoc: 0.28.x
- checksum: 10c0/5242ef2869bfb6dfbe6b3dbe655be8cb1147ed5f17fa3639ed7643ce889534ef27dfb91170f34fd52a83bf89bdb568a5a7a7ad148bbf0b5785cabc7c81dbcb2d
+ checksum: 10c0/8db5ff54982fb5337f1c91f3c851d46eb7cd4b425810cbcfcbbe498a468e716a08afcf40f8f803fc23e0124ad519ab6651da15ccf18269d36857ccf8c66bd8b5
languageName: node
linkType: hard
"typedoc@npm:^0.28.7":
- version: 0.28.7
- resolution: "typedoc@npm:0.28.7"
+ version: 0.28.11
+ resolution: "typedoc@npm:0.28.11"
dependencies:
- "@gerrit0/mini-shiki": "npm:^3.7.0"
+ "@gerrit0/mini-shiki": "npm:^3.9.0"
lunr: "npm:^2.3.9"
markdown-it: "npm:^14.1.0"
minimatch: "npm:^9.0.5"
yaml: "npm:^2.8.0"
peerDependencies:
- typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x
+ typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x
bin:
typedoc: bin/typedoc
- checksum: 10c0/30c942fa286c62898e5b2dd7750af80abb89684f4286bfbdf4009fb495cb8cfd65afbb793370d294c5d62e97c525789c2aae4bfd8ed29f5faa1dc49dcf4bf9c4
+ checksum: 10c0/554494b287345c30f37417bee4afa4de495bb00639e898a078a6a3a91a08849347471d418162afaebf45a162c7b4fb20ef821fb18698ae4273fcd3e512a508f3
languageName: node
linkType: hard
@@ -29338,8 +28241,8 @@ __metadata:
linkType: hard
"typeorm@npm:^0.3.25":
- version: 0.3.25
- resolution: "typeorm@npm:0.3.25"
+ version: 0.3.26
+ resolution: "typeorm@npm:0.3.26"
dependencies:
"@sqltools/formatter": "npm:^1.2.5"
ansis: "npm:^3.17.0"
@@ -29357,9 +28260,8 @@ __metadata:
yargs: "npm:^17.7.2"
peerDependencies:
"@google-cloud/spanner": ^5.18.0 || ^6.0.0 || ^7.0.0
- "@sap/hana-client": ^2.12.25
- better-sqlite3: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0
- hdb-pool: ^0.1.6
+ "@sap/hana-client": ^2.14.22
+ better-sqlite3: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0
ioredis: ^5.0.4
mongodb: ^5.8.0 || ^6.0.0
mssql: ^9.1.1 || ^10.0.1 || ^11.0.1
@@ -29368,7 +28270,7 @@ __metadata:
pg: ^8.5.1
pg-native: ^3.0.0
pg-query-stream: ^4.0.0
- redis: ^3.1.1 || ^4.0.0
+ redis: ^3.1.1 || ^4.0.0 || ^5.0.14
reflect-metadata: ^0.1.14 || ^0.2.0
sql.js: ^1.4.0
sqlite3: ^5.0.3
@@ -29381,8 +28283,6 @@ __metadata:
optional: true
better-sqlite3:
optional: true
- hdb-pool:
- optional: true
ioredis:
optional: true
mongodb:
@@ -29413,50 +28313,22 @@ __metadata:
typeorm: cli.js
typeorm-ts-node-commonjs: cli-ts-node-commonjs.js
typeorm-ts-node-esm: cli-ts-node-esm.js
- checksum: 10c0/f0b52e451003713aba83a96bce5ee942c7f3ae236ee2e241b7872a19a3e3ac7ac24c91f3c279606678838c360de3c25a8156239b047f7980b0ba2b7ba6f73152
- languageName: node
- linkType: hard
-
-"typescript-eslint@npm:^8.33.0":
- version: 8.33.0
- resolution: "typescript-eslint@npm:8.33.0"
- dependencies:
- "@typescript-eslint/eslint-plugin": "npm:8.33.0"
- "@typescript-eslint/parser": "npm:8.33.0"
- "@typescript-eslint/utils": "npm:8.33.0"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/a07b87ed2e4ff71edfc641f0073192e7eb8a169adb3ee99a05370310d73698e92814e56cec760d13f9a180687ac3dd3ba9536461ec9a110ad2543f60950e8c8d
- languageName: node
- linkType: hard
-
-"typescript-eslint@npm:^8.35.1":
- version: 8.35.1
- resolution: "typescript-eslint@npm:8.35.1"
- dependencies:
- "@typescript-eslint/eslint-plugin": "npm:8.35.1"
- "@typescript-eslint/parser": "npm:8.35.1"
- "@typescript-eslint/utils": "npm:8.35.1"
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.9.0"
- checksum: 10c0/17781138f59c241658db96f793b745883e427bc48530cec2e81ad0a7941b557ddd2eede290d2c3d254f23d59a36ab1bf2cd1e705797e0db36d0ccd61c1a4299e
+ checksum: 10c0/a09ed0609a5799718bc837450b84593f6a64e6698e0662162eee2f7f12591ad9cb6f9173b42ae1d16f784d1ea09712c6e886481f4a3bdc7f851402cfde54e65a
languageName: node
linkType: hard
-"typescript-eslint@npm:^8.39.1":
- version: 8.39.1
- resolution: "typescript-eslint@npm:8.39.1"
+"typescript-eslint@npm:^8.33.0, typescript-eslint@npm:^8.35.1, typescript-eslint@npm:^8.39.1":
+ version: 8.41.0
+ resolution: "typescript-eslint@npm:8.41.0"
dependencies:
- "@typescript-eslint/eslint-plugin": "npm:8.39.1"
- "@typescript-eslint/parser": "npm:8.39.1"
- "@typescript-eslint/typescript-estree": "npm:8.39.1"
- "@typescript-eslint/utils": "npm:8.39.1"
+ "@typescript-eslint/eslint-plugin": "npm:8.41.0"
+ "@typescript-eslint/parser": "npm:8.41.0"
+ "@typescript-eslint/typescript-estree": "npm:8.41.0"
+ "@typescript-eslint/utils": "npm:8.41.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: ">=4.8.4 <6.0.0"
- checksum: 10c0/4070729621c20f8a9bad3df13fb8ac175609a57d046c155df785d474c2926d3e506f0bd5e762be7e2aacd03839c9c9a2015ad087086cee5838c486b9bf46b27b
+ checksum: 10c0/e141ffaf0332053483526a31e68755fe1438f6367571f39e67e32c0e15d509e8678adab2020597720b0307360493724d8dcf60d0620611d7e1e209d7f952cfe9
languageName: node
linkType: hard
@@ -29470,17 +28342,7 @@ __metadata:
languageName: node
linkType: hard
-"typescript@npm:^5.5.4, typescript@npm:^5.6.3, typescript@npm:^5.8.3":
- version: 5.8.3
- resolution: "typescript@npm:5.8.3"
- bin:
- tsc: bin/tsc
- tsserver: bin/tsserver
- checksum: 10c0/5f8bb01196e542e64d44db3d16ee0e4063ce4f3e3966df6005f2588e86d91c03e1fb131c2581baf0fb65ee79669eea6e161cd448178986587e9f6844446dbb48
- languageName: node
- linkType: hard
-
-"typescript@npm:^5.9.2":
+"typescript@npm:^5.5.4, typescript@npm:^5.6.3, typescript@npm:^5.8.3, typescript@npm:^5.9.2":
version: 5.9.2
resolution: "typescript@npm:5.9.2"
bin:
@@ -29500,17 +28362,7 @@ __metadata:
languageName: node
linkType: hard
-"typescript@patch:typescript@npm%3A^5.5.4#optional!builtin, typescript@patch:typescript@npm%3A^5.6.3#optional!builtin, typescript@patch:typescript@npm%3A^5.8.3#optional!builtin":
- version: 5.8.3
- resolution: "typescript@patch:typescript@npm%3A5.8.3#optional!builtin::version=5.8.3&hash=5786d5"
- bin:
- tsc: bin/tsc
- tsserver: bin/tsserver
- checksum: 10c0/39117e346ff8ebd87ae1510b3a77d5d92dae5a89bde588c747d25da5c146603a99c8ee588c7ef80faaf123d89ed46f6dbd918d534d641083177d5fac38b8a1cb
- languageName: node
- linkType: hard
-
-"typescript@patch:typescript@npm%3A^5.9.2#optional!builtin":
+"typescript@patch:typescript@npm%3A^5.5.4#optional!builtin, typescript@patch:typescript@npm%3A^5.6.3#optional!builtin, typescript@patch:typescript@npm%3A^5.8.3#optional!builtin, typescript@patch:typescript@npm%3A^5.9.2#optional!builtin":
version: 5.9.2
resolution: "typescript@patch:typescript@npm%3A5.9.2#optional!builtin::version=5.9.2&hash=5786d5"
bin:
@@ -29577,9 +28429,9 @@ __metadata:
linkType: hard
"uint8array-extras@npm:^1.4.0":
- version: 1.4.0
- resolution: "uint8array-extras@npm:1.4.0"
- checksum: 10c0/eaffd3388634b7e5e1496073b878dd19136043137d3e7e0d2a453e37f566a5a551e640819e1a6596c6df9b9d1f7b70884cc29db6a357bdd424811f3598d504dd
+ version: 1.5.0
+ resolution: "uint8array-extras@npm:1.5.0"
+ checksum: 10c0/0e74641ac7dadb02eadefc1ccdadba6010e007757bda824960de3c72bbe2b04e6d3af75648441f412148c4103261d54fcb60be45a2863beb76643a55fddba3bd
languageName: node
linkType: hard
@@ -29659,6 +28511,13 @@ __metadata:
languageName: node
linkType: hard
+"undici-types@npm:~7.10.0":
+ version: 7.10.0
+ resolution: "undici-types@npm:7.10.0"
+ checksum: 10c0/8b00ce50e235fe3cc601307f148b5e8fb427092ee3b23e8118ec0a5d7f68eca8cee468c8fc9f15cbb2cf2a3797945ebceb1cbd9732306a1d00e0a9b6afa0f635
+ languageName: node
+ linkType: hard
+
"undici@npm:7.9.0":
version: 7.9.0
resolution: "undici@npm:7.9.0"
@@ -29676,9 +28535,9 @@ __metadata:
linkType: hard
"undici@npm:^6.11.1":
- version: 6.21.2
- resolution: "undici@npm:6.21.2"
- checksum: 10c0/799bbc02b77dda9b6b12d56d2620a3a4d4cf087908d6a548acc3ce32f21b5c27467f75c2c4b30fab281daf341210be3d685e8fe99854288de541715ae5735027
+ version: 6.21.3
+ resolution: "undici@npm:6.21.3"
+ checksum: 10c0/294da109853fad7a6ef5a172ad0ca3fb3f1f60cf34703d062a5ec967daf69ad8c03b52e6d536c5cba3bb65615769bf08e5b30798915cbccdddaca01045173dda
languageName: node
linkType: hard
@@ -29786,90 +28645,29 @@ __metadata:
languageName: node
linkType: hard
-"unrs-resolver@npm:^1.6.2":
- version: 1.7.2
- resolution: "unrs-resolver@npm:1.7.2"
- dependencies:
- "@unrs/resolver-binding-darwin-arm64": "npm:1.7.2"
- "@unrs/resolver-binding-darwin-x64": "npm:1.7.2"
- "@unrs/resolver-binding-freebsd-x64": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.2"
- "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.2"
- "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.2"
- "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.2"
- napi-postinstall: "npm:^0.2.2"
- dependenciesMeta:
- "@unrs/resolver-binding-darwin-arm64":
- optional: true
- "@unrs/resolver-binding-darwin-x64":
- optional: true
- "@unrs/resolver-binding-freebsd-x64":
- optional: true
- "@unrs/resolver-binding-linux-arm-gnueabihf":
- optional: true
- "@unrs/resolver-binding-linux-arm-musleabihf":
- optional: true
- "@unrs/resolver-binding-linux-arm64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-arm64-musl":
- optional: true
- "@unrs/resolver-binding-linux-ppc64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-riscv64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-riscv64-musl":
- optional: true
- "@unrs/resolver-binding-linux-s390x-gnu":
- optional: true
- "@unrs/resolver-binding-linux-x64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-x64-musl":
- optional: true
- "@unrs/resolver-binding-wasm32-wasi":
- optional: true
- "@unrs/resolver-binding-win32-arm64-msvc":
- optional: true
- "@unrs/resolver-binding-win32-ia32-msvc":
- optional: true
- "@unrs/resolver-binding-win32-x64-msvc":
- optional: true
- checksum: 10c0/c293db95c59b08e33f3bfb00042120fb90fd5448bd1790cd2dc779a13eb6062dddf04a91b72c73d3635b0c539552435675ce816fa52e66bb0cd7b7e5a2f6399c
- languageName: node
- linkType: hard
-
-"unrs-resolver@npm:^1.7.11":
- version: 1.11.0
- resolution: "unrs-resolver@npm:1.11.0"
- dependencies:
- "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.0"
- "@unrs/resolver-binding-android-arm64": "npm:1.11.0"
- "@unrs/resolver-binding-darwin-arm64": "npm:1.11.0"
- "@unrs/resolver-binding-darwin-x64": "npm:1.11.0"
- "@unrs/resolver-binding-freebsd-x64": "npm:1.11.0"
- "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.0"
- "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.0"
- "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.0"
- "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.0"
- "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.0"
- "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.0"
- "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.0"
- "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.0"
- "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.0"
- "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.0"
- "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.0"
- "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.0"
- "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.0"
- "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.0"
+"unrs-resolver@npm:^1.6.2, unrs-resolver@npm:^1.7.11":
+ version: 1.11.1
+ resolution: "unrs-resolver@npm:1.11.1"
+ dependencies:
+ "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1"
+ "@unrs/resolver-binding-android-arm64": "npm:1.11.1"
+ "@unrs/resolver-binding-darwin-arm64": "npm:1.11.1"
+ "@unrs/resolver-binding-darwin-x64": "npm:1.11.1"
+ "@unrs/resolver-binding-freebsd-x64": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1"
+ "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1"
+ "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1"
+ "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1"
+ "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1"
+ "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1"
napi-postinstall: "npm:^0.3.0"
dependenciesMeta:
"@unrs/resolver-binding-android-arm-eabi":
@@ -29910,20 +28708,20 @@ __metadata:
optional: true
"@unrs/resolver-binding-win32-x64-msvc":
optional: true
- checksum: 10c0/5883c0621e3a57f21426092a99783ecd88e795493a0ab013a10013ddd8fe355d67a88ac37a7e8ae0f3617d52e7f688b95d9b2807ac605b22c174a8bd6d85fc04
+ checksum: 10c0/c91b112c71a33d6b24e5c708dab43ab80911f2df8ee65b87cd7a18fb5af446708e98c4b415ca262026ad8df326debcc7ca6a801b2935504d87fd6f0b9d70dce1
languageName: node
linkType: hard
"unstorage@npm:^1.9.0":
- version: 1.16.0
- resolution: "unstorage@npm:1.16.0"
+ version: 1.17.0
+ resolution: "unstorage@npm:1.17.0"
dependencies:
anymatch: "npm:^3.1.3"
chokidar: "npm:^4.0.3"
destr: "npm:^2.0.5"
- h3: "npm:^1.15.2"
+ h3: "npm:^1.15.4"
lru-cache: "npm:^10.4.3"
- node-fetch-native: "npm:^1.6.6"
+ node-fetch-native: "npm:^1.6.7"
ofetch: "npm:^1.4.1"
ufo: "npm:^1.6.1"
peerDependencies:
@@ -29935,10 +28733,11 @@ __metadata:
"@azure/storage-blob": ^12.26.0
"@capacitor/preferences": ^6.0.3 || ^7.0.0
"@deno/kv": ">=0.9.0"
- "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0
+ "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
"@planetscale/database": ^1.19.0
"@upstash/redis": ^1.34.3
"@vercel/blob": ">=0.27.1"
+ "@vercel/functions": ^2.2.12
"@vercel/kv": ^1.0.1
aws4fetch: ^1.0.20
db0: ">=0.2.1"
@@ -29970,6 +28769,8 @@ __metadata:
optional: true
"@vercel/blob":
optional: true
+ "@vercel/functions":
+ optional: true
"@vercel/kv":
optional: true
aws4fetch:
@@ -29982,7 +28783,7 @@ __metadata:
optional: true
uploadthing:
optional: true
- checksum: 10c0/f719a6483fd71d0a6d4f2e98ec29721c352618c4f3641f96d0c703866dc13cda071e8afda5a68bac4e7d3880c8eece0edb2057e96ce0ac4fb649998611430a09
+ checksum: 10c0/ebb7e37bb42de3ec1961ca36526367b0e5fe660716eb2879915a5adeaf28a87c4a6b1f7088c5f96390188a4f10e305fee58c35b75254966f31b96041a39ce1af
languageName: node
linkType: hard
@@ -30030,9 +28831,9 @@ __metadata:
linkType: hard
"urlpattern-polyfill@npm:^10.0.0":
- version: 10.0.0
- resolution: "urlpattern-polyfill@npm:10.0.0"
- checksum: 10c0/43593f2a89bd54f2d5b5105ef4896ac5c5db66aef723759fbd15cd5eb1ea6cdae9d112e257eda9bbc3fb0cd90be6ac6e9689abe4ca69caa33114f42a27363531
+ version: 10.1.0
+ resolution: "urlpattern-polyfill@npm:10.1.0"
+ checksum: 10c0/5b124fd8d0ae920aa2a48b49a7a3b9ad1643b5ce7217b808fb6877826e751cabc01897fd4c85cd1989c4e729072b63aad5c3ba1c1325e4433e0d2f6329156bf1
languageName: node
linkType: hard
@@ -30044,11 +28845,11 @@ __metadata:
linkType: hard
"use-debounce@npm:^10.0.2":
- version: 10.0.4
- resolution: "use-debounce@npm:10.0.4"
+ version: 10.0.5
+ resolution: "use-debounce@npm:10.0.5"
peerDependencies:
react: "*"
- checksum: 10c0/73494fc44b2bd58a7ec799a528fc20077c45fe2e94fedff6dcd88d136f7a39f417d77f584d5613aac615ed32aeb2ea393797ae1f7d5b2645eab57cb497a6d0cb
+ checksum: 10c0/8232538aa2e2b1252716ef2918204709f16bd53661b56a3a29ad790bf61bc7cbf3bb1126d888408db276a2b05fa6a941e9452149be14bfe438aa22054ccf4e4a
languageName: node
linkType: hard
@@ -30195,9 +28996,9 @@ __metadata:
linkType: hard
"validator@npm:^13.9.0":
- version: 13.15.0
- resolution: "validator@npm:13.15.0"
- checksum: 10c0/0f13fd7031ac575e8d7828431da8ef5859bac6a38ee65e1d7fdd367dbf1c3d94d95182aecc3183f7fa7a30ff4474bf864d1aff54707620227a2cdbfd36d894c2
+ version: 13.15.15
+ resolution: "validator@npm:13.15.15"
+ checksum: 10c0/f5349d1fbb9cc36f9f6c5dab1880764ddad1d0d2b084e2a71e5964f7de1635d20e406611559df9a3db24828ce775cbee5e3b6dd52f0d555a61939ed7ea5990bd
languageName: node
linkType: hard
@@ -30220,6 +29021,23 @@ __metadata:
languageName: node
linkType: hard
+"valtio@npm:2.1.5":
+ version: 2.1.5
+ resolution: "valtio@npm:2.1.5"
+ dependencies:
+ proxy-compare: "npm:^3.0.1"
+ peerDependencies:
+ "@types/react": ">=18.0.0"
+ react: ">=18.0.0"
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ react:
+ optional: true
+ checksum: 10c0/66bc5027b28af7611c66bf4839860e548c3657d086fa1a76992d07a45d83c5fbe42a351332fe3cf1ef79e34706d4c550dc1a038a3b00933dad1e34f4000009ee
+ languageName: node
+ linkType: hard
+
"value-or-promise@npm:^1.0.11, value-or-promise@npm:^1.0.12":
version: 1.0.12
resolution: "value-or-promise@npm:1.0.12"
@@ -30298,60 +29116,39 @@ __metadata:
languageName: node
linkType: hard
-"viem@npm:2.x, viem@npm:>=2.23.11, viem@npm:^2.1.1, viem@npm:^2.27.0":
- version: 2.29.0
- resolution: "viem@npm:2.29.0"
- dependencies:
- "@noble/curves": "npm:1.8.2"
- "@noble/hashes": "npm:1.7.2"
- "@scure/bip32": "npm:1.6.2"
- "@scure/bip39": "npm:1.5.4"
- abitype: "npm:1.0.8"
- isows: "npm:1.0.6"
- ox: "npm:0.6.9"
- ws: "npm:8.18.1"
- peerDependencies:
- typescript: ">=5.0.4"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/0cc5c71fed5b8833cff69d875a472048969ca35054dc588445dcd0a2f23033d0b2c24e7af80d9cc823555bceece4f956adf2933870ae4e2126f4884d248aadb8
- languageName: node
- linkType: hard
-
-"viem@npm:>=2.29.0, viem@npm:>=2.31.3, viem@npm:^2.31.4":
- version: 2.31.4
- resolution: "viem@npm:2.31.4"
+"viem@npm:2.x, viem@npm:>=2.29.0, viem@npm:>=2.33.3, viem@npm:^2.1.1, viem@npm:^2.27.0, viem@npm:^2.27.2, viem@npm:^2.31.4, viem@npm:^2.31.7":
+ version: 2.36.0
+ resolution: "viem@npm:2.36.0"
dependencies:
- "@noble/curves": "npm:1.9.2"
+ "@noble/curves": "npm:1.9.6"
"@noble/hashes": "npm:1.8.0"
"@scure/bip32": "npm:1.7.0"
"@scure/bip39": "npm:1.6.0"
abitype: "npm:1.0.8"
isows: "npm:1.0.7"
- ox: "npm:0.8.1"
- ws: "npm:8.18.2"
+ ox: "npm:0.9.1"
+ ws: "npm:8.18.3"
peerDependencies:
typescript: ">=5.0.4"
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/cffc1c91b322a683758877c8a39916e984809847082343a297d3d637474b711c30e69fad2547f8e4617e6961797811a628d0fd6c3b4d105a7669d89e205edebc
+ checksum: 10c0/b46e19ffaf85b0e80d168a707d7b295cf58ebefde27cfb8626510dfdf845bcd25c0154a02b488fc545b07397fd880d87543622d2be6973b35ab94012092b512c
languageName: node
linkType: hard
-"vite-node@npm:3.1.3":
- version: 3.1.3
- resolution: "vite-node@npm:3.1.3"
+"vite-node@npm:3.2.4":
+ version: 3.2.4
+ resolution: "vite-node@npm:3.2.4"
dependencies:
cac: "npm:^6.7.14"
- debug: "npm:^4.4.0"
+ debug: "npm:^4.4.1"
es-module-lexer: "npm:^1.7.0"
pathe: "npm:^2.0.3"
- vite: "npm:^5.0.0 || ^6.0.0"
+ vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0"
bin:
vite-node: vite-node.mjs
- checksum: 10c0/d69a1e52361bc0af22d1178db61674ef768cfd3c5610733794bb1e7a36af113da287dd89662a1ad57fd4f6c3360ca99678f5428ba837f239df4091d7891f2e4c
+ checksum: 10c0/6ceca67c002f8ef6397d58b9539f80f2b5d79e103a18367288b3f00a8ab55affa3d711d86d9112fce5a7fa658a212a087a005a045eb8f4758947dd99af2a6c6b
languageName: node
linkType: hard
@@ -30368,19 +29165,74 @@ __metadata:
linkType: hard
"vite-plugin-svgr@npm:^4.2.0":
- version: 4.3.0
- resolution: "vite-plugin-svgr@npm:4.3.0"
+ version: 4.5.0
+ resolution: "vite-plugin-svgr@npm:4.5.0"
dependencies:
- "@rollup/pluginutils": "npm:^5.1.3"
+ "@rollup/pluginutils": "npm:^5.2.0"
"@svgr/core": "npm:^8.1.0"
"@svgr/plugin-jsx": "npm:^8.1.0"
peerDependencies:
vite: ">=2.6.0"
- checksum: 10c0/a73f10d319f72cd8c16bf9701cf18170f2300f98c72c6bf939565de0b1e93916bd70c6f5a446dc034b4405c72d382655c7c16be4bd1cbf35bbcde5febf7aeffc
+ checksum: 10c0/3e1959fec626bb4f5a8ec13ff15bc40ffbc1c0ff38149bebe3f37dc2d67ed1f276f129ff7983e06946cf712e19996affd9d6868aa7d20d8921d1fe4449109b55
+ languageName: node
+ linkType: hard
+
+"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0":
+ version: 7.1.3
+ resolution: "vite@npm:7.1.3"
+ dependencies:
+ esbuild: "npm:^0.25.0"
+ fdir: "npm:^6.5.0"
+ fsevents: "npm:~2.3.3"
+ picomatch: "npm:^4.0.3"
+ postcss: "npm:^8.5.6"
+ rollup: "npm:^4.43.0"
+ tinyglobby: "npm:^0.2.14"
+ peerDependencies:
+ "@types/node": ^20.19.0 || >=22.12.0
+ jiti: ">=1.21.0"
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: ">=0.54.8"
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ dependenciesMeta:
+ fsevents:
+ optional: true
+ peerDependenciesMeta:
+ "@types/node":
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+ bin:
+ vite: bin/vite.js
+ checksum: 10c0/a0aa418beab80673dc9a3e9d1fa49472955d6ef9d41a4c9c6bd402953f411346f612864dae267adfb2bb8ceeb894482369316ffae5816c84fd45990e352b727d
languageName: node
linkType: hard
-"vite@npm:^5.0.0 || ^6.0.0, vite@npm:^6.2.4":
+"vite@npm:^6.2.4":
version: 6.3.5
resolution: "vite@npm:6.3.5"
dependencies:
@@ -30436,36 +29288,38 @@ __metadata:
linkType: hard
"vitest@npm:^3.0.9, vitest@npm:^3.1.1":
- version: 3.1.3
- resolution: "vitest@npm:3.1.3"
- dependencies:
- "@vitest/expect": "npm:3.1.3"
- "@vitest/mocker": "npm:3.1.3"
- "@vitest/pretty-format": "npm:^3.1.3"
- "@vitest/runner": "npm:3.1.3"
- "@vitest/snapshot": "npm:3.1.3"
- "@vitest/spy": "npm:3.1.3"
- "@vitest/utils": "npm:3.1.3"
+ version: 3.2.4
+ resolution: "vitest@npm:3.2.4"
+ dependencies:
+ "@types/chai": "npm:^5.2.2"
+ "@vitest/expect": "npm:3.2.4"
+ "@vitest/mocker": "npm:3.2.4"
+ "@vitest/pretty-format": "npm:^3.2.4"
+ "@vitest/runner": "npm:3.2.4"
+ "@vitest/snapshot": "npm:3.2.4"
+ "@vitest/spy": "npm:3.2.4"
+ "@vitest/utils": "npm:3.2.4"
chai: "npm:^5.2.0"
- debug: "npm:^4.4.0"
+ debug: "npm:^4.4.1"
expect-type: "npm:^1.2.1"
magic-string: "npm:^0.30.17"
pathe: "npm:^2.0.3"
+ picomatch: "npm:^4.0.2"
std-env: "npm:^3.9.0"
tinybench: "npm:^2.9.0"
tinyexec: "npm:^0.3.2"
- tinyglobby: "npm:^0.2.13"
- tinypool: "npm:^1.0.2"
+ tinyglobby: "npm:^0.2.14"
+ tinypool: "npm:^1.1.1"
tinyrainbow: "npm:^2.0.0"
- vite: "npm:^5.0.0 || ^6.0.0"
- vite-node: "npm:3.1.3"
+ vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0"
+ vite-node: "npm:3.2.4"
why-is-node-running: "npm:^2.3.0"
peerDependencies:
"@edge-runtime/vm": "*"
"@types/debug": ^4.1.12
"@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
- "@vitest/browser": 3.1.3
- "@vitest/ui": 3.1.3
+ "@vitest/browser": 3.2.4
+ "@vitest/ui": 3.2.4
happy-dom: "*"
jsdom: "*"
peerDependenciesMeta:
@@ -30485,7 +29339,7 @@ __metadata:
optional: true
bin:
vitest: vitest.mjs
- checksum: 10c0/954b3579a2d925606df7f78e367ae64eab52c8c5ba2bb2fed94d335a06c910202a4ce080bb02d8148c8b4782488c6d229e963617be8d0c7da96a1c944dd291d7
+ checksum: 10c0/5bf53ede3ae6a0e08956d72dab279ae90503f6b5a05298a6a5e6ef47d2fd1ab386aaf48fafa61ed07a0ebfe9e371772f1ccbe5c258dd765206a8218bf2eb79eb
languageName: node
linkType: hard
@@ -30529,31 +29383,12 @@ __metadata:
languageName: node
linkType: hard
-"wagmi@npm:^2.14.6":
- version: 2.15.2
- resolution: "wagmi@npm:2.15.2"
- dependencies:
- "@wagmi/connectors": "npm:5.8.1"
- "@wagmi/core": "npm:2.17.1"
- use-sync-external-store: "npm:1.4.0"
- peerDependencies:
- "@tanstack/react-query": ">=5.0.0"
- react: ">=18"
- typescript: ">=5.0.4"
- viem: 2.x
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/f39f49d5c240c2b1dcff5689f4336361ac15230ebe72c5d1de5054d8bd4a893cf69f3cd9f941c60275e3759b7dfd18acfa7ca4c4ef8b4793cb1fa2dde2dc7493
- languageName: node
- linkType: hard
-
-"wagmi@npm:^2.15.6":
- version: 2.15.6
- resolution: "wagmi@npm:2.15.6"
+"wagmi@npm:^2.14.6, wagmi@npm:^2.15.6":
+ version: 2.16.8
+ resolution: "wagmi@npm:2.16.8"
dependencies:
- "@wagmi/connectors": "npm:5.8.5"
- "@wagmi/core": "npm:2.17.3"
+ "@wagmi/connectors": "npm:5.9.8"
+ "@wagmi/core": "npm:2.20.2"
use-sync-external-store: "npm:1.4.0"
peerDependencies:
"@tanstack/react-query": ">=5.0.0"
@@ -30563,7 +29398,7 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/ecdbb177b8a18827e5b0bddcaf3af5147f43662eb85db1964d76f657c89211ee3c56e0565747d175143664a676c43b497d55446a1e31997d50f908f82b3ab472
+ checksum: 10c0/84b59ed7f8df35ba4a2a7f585a57bfbd73219dbaf5f2fd2c0218465613d6a989a7fe51b53963985d870695fb77df753478eb359977bb58d09140eda8db9b520a
languageName: node
linkType: hard
@@ -30577,12 +29412,12 @@ __metadata:
linkType: hard
"watchpack@npm:^2.4.1":
- version: 2.4.2
- resolution: "watchpack@npm:2.4.2"
+ version: 2.4.4
+ resolution: "watchpack@npm:2.4.4"
dependencies:
glob-to-regexp: "npm:^0.4.1"
graceful-fs: "npm:^4.1.2"
- checksum: 10c0/ec60a5f0e9efaeca0102fd9126346b3b2d523e01c34030d3fddf5813a7125765121ebdc2552981136dcd2c852deb1af0b39340f2fcc235f292db5399d0283577
+ checksum: 10c0/6c0901f75ce245d33991225af915eea1c5ae4ba087f3aee2b70dd377d4cacb34bef02a48daf109da9d59b2d31ec6463d924a0d72f8618ae1643dd07b95de5275
languageName: node
linkType: hard
@@ -30596,12 +29431,12 @@ __metadata:
linkType: hard
"weald@npm:^1.0.4":
- version: 1.0.4
- resolution: "weald@npm:1.0.4"
+ version: 1.0.6
+ resolution: "weald@npm:1.0.6"
dependencies:
ms: "npm:^3.0.0-canary.1"
- supports-color: "npm:^9.4.0"
- checksum: 10c0/6f705176549ffa9a8b14c589cc72b0a64d8bae3eed154d133d46e429f7156bc809a10416ea804b80acbf5cb108b144b8a1af20d5a22c60d1c283c69a3bd8233d
+ supports-color: "npm:^10.0.0"
+ checksum: 10c0/5fd25d612012401510cce6ffaf2e2fb022921d5fcdda23e449eda22f234a897c5ef1f9a64719b19468828dbd95b666eeb2cc995fac794dcabdc26cf397928eea
languageName: node
linkType: hard
@@ -30957,9 +29792,9 @@ __metadata:
linkType: hard
"webpack-sources@npm:^3.2.3":
- version: 3.2.3
- resolution: "webpack-sources@npm:3.2.3"
- checksum: 10c0/2ef63d77c4fad39de4a6db17323d75eb92897b32674e97d76f0a1e87c003882fc038571266ad0ef581ac734cbe20952912aaa26155f1905e96ce251adbb1eb4e
+ version: 3.3.3
+ resolution: "webpack-sources@npm:3.3.3"
+ checksum: 10c0/ab732f6933b513ba4d505130418995ddef6df988421fccf3289e53583c6a39e205c4a0739cee98950964552d3006604912679c736031337fb4a9d78d8576ed40
languageName: node
linkType: hard
@@ -31097,7 +29932,7 @@ __metadata:
languageName: node
linkType: hard
-"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18, which-typed-array@npm:^1.1.19, which-typed-array@npm:^1.1.2":
+"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.19, which-typed-array@npm:^1.1.2":
version: 1.1.19
resolution: "which-typed-array@npm:1.1.19"
dependencies:
@@ -31306,9 +30141,9 @@ __metadata:
languageName: node
linkType: hard
-"ws@npm:8.18.1":
- version: 8.18.1
- resolution: "ws@npm:8.18.1"
+"ws@npm:8.18.2":
+ version: 8.18.2
+ resolution: "ws@npm:8.18.2"
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ">=5.0.2"
@@ -31317,13 +30152,13 @@ __metadata:
optional: true
utf-8-validate:
optional: true
- checksum: 10c0/e498965d6938c63058c4310ffb6967f07d4fa06789d3364829028af380d299fe05762961742971c764973dce3d1f6a2633fe8b2d9410c9b52e534b4b882a99fa
+ checksum: 10c0/4b50f67931b8c6943c893f59c524f0e4905bbd183016cfb0f2b8653aa7f28dad4e456b9d99d285bbb67cca4fedd9ce90dfdfaa82b898a11414ebd66ee99141e4
languageName: node
linkType: hard
-"ws@npm:8.18.2, ws@npm:^8, ws@npm:^8.12.0, ws@npm:^8.17.1, ws@npm:^8.18.0":
- version: 8.18.2
- resolution: "ws@npm:8.18.2"
+"ws@npm:8.18.3, ws@npm:^8, ws@npm:^8.12.0, ws@npm:^8.17.1, ws@npm:^8.18.0":
+ version: 8.18.3
+ resolution: "ws@npm:8.18.3"
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ">=5.0.2"
@@ -31332,7 +30167,7 @@ __metadata:
optional: true
utf-8-validate:
optional: true
- checksum: 10c0/4b50f67931b8c6943c893f59c524f0e4905bbd183016cfb0f2b8653aa7f28dad4e456b9d99d285bbb67cca4fedd9ce90dfdfaa82b898a11414ebd66ee99141e4
+ checksum: 10c0/eac918213de265ef7cb3d4ca348b891a51a520d839aa51cdb8ca93d4fa7ff9f6ccb339ccee89e4075324097f0a55157c89fa3f7147bde9d8d7e90335dc087b53
languageName: node
linkType: hard
@@ -31459,7 +30294,7 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:2.8.0, yaml@npm:^2.8.0":
+"yaml@npm:2.8.0":
version: 2.8.0
resolution: "yaml@npm:2.8.0"
bin:
@@ -31475,12 +30310,12 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.2.2, yaml@npm:^2.7.0":
- version: 2.7.1
- resolution: "yaml@npm:2.7.1"
+"yaml@npm:^2.2.2, yaml@npm:^2.7.0, yaml@npm:^2.8.0":
+ version: 2.8.1
+ resolution: "yaml@npm:2.8.1"
bin:
yaml: bin.mjs
- checksum: 10c0/ee2126398ab7d1fdde566b4013b68e36930b9e6d8e68b6db356875c99614c10d678b6f45597a145ff6d63814961221fc305bf9242af8bf7450177f8a68537590
+ checksum: 10c0/7c587be00d9303d2ae1566e03bc5bc7fe978ba0d9bf39cc418c3139d37929dfcb93a230d9749f2cb578b6aa5d9ebebc322415e4b653cb83acd8bc0bc321707f3
languageName: node
linkType: hard
@@ -31520,6 +30355,21 @@ __metadata:
languageName: node
linkType: hard
+"yargs@npm:17.7.2, yargs@npm:^17.3.1, yargs@npm:^17.7.2":
+ version: 17.7.2
+ resolution: "yargs@npm:17.7.2"
+ dependencies:
+ cliui: "npm:^8.0.1"
+ escalade: "npm:^3.1.1"
+ get-caller-file: "npm:^2.0.5"
+ require-directory: "npm:^2.1.1"
+ string-width: "npm:^4.2.3"
+ y18n: "npm:^5.0.5"
+ yargs-parser: "npm:^21.1.1"
+ checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05
+ languageName: node
+ linkType: hard
+
"yargs@npm:^15.3.1":
version: 15.4.1
resolution: "yargs@npm:15.4.1"
@@ -31554,21 +30404,6 @@ __metadata:
languageName: node
linkType: hard
-"yargs@npm:^17.3.1, yargs@npm:^17.7.2":
- version: 17.7.2
- resolution: "yargs@npm:17.7.2"
- dependencies:
- cliui: "npm:^8.0.1"
- escalade: "npm:^3.1.1"
- get-caller-file: "npm:^2.0.5"
- require-directory: "npm:^2.1.1"
- string-width: "npm:^4.2.3"
- y18n: "npm:^5.0.5"
- yargs-parser: "npm:^21.1.1"
- checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05
- languageName: node
- linkType: hard
-
"yn@npm:3.1.1":
version: 3.1.1
resolution: "yn@npm:3.1.1"
@@ -31584,21 +30419,21 @@ __metadata:
linkType: hard
"yoctocolors-cjs@npm:^2.1.2":
- version: 2.1.2
- resolution: "yoctocolors-cjs@npm:2.1.2"
- checksum: 10c0/a0e36eb88fea2c7981eab22d1ba45e15d8d268626e6c4143305e2c1628fa17ebfaa40cd306161a8ce04c0a60ee0262058eab12567493d5eb1409780853454c6f
+ version: 2.1.3
+ resolution: "yoctocolors-cjs@npm:2.1.3"
+ checksum: 10c0/584168ef98eb5d913473a4858dce128803c4a6cd87c0f09e954fa01126a59a33ab9e513b633ad9ab953786ed16efdd8c8700097a51635aafaeed3fef7712fa79
languageName: node
linkType: hard
"yup@npm:^1.6.1":
- version: 1.6.1
- resolution: "yup@npm:1.6.1"
+ version: 1.7.0
+ resolution: "yup@npm:1.7.0"
dependencies:
property-expr: "npm:^2.0.5"
tiny-case: "npm:^1.0.3"
toposort: "npm:^2.0.2"
type-fest: "npm:^2.19.0"
- checksum: 10c0/84c2b53996e8001041239cf2719851719f67063ec7cd843067df73562353216f5ad4f8a222319696882d5a6058e528fade1e463c59d70cbffb41b99cd0d7571b
+ checksum: 10c0/76760553b6813705092735ab1fe0049061545673b7cc9a8e554ef59c09db241888bdcca6c42b58bd0f8a707c1d9665ab1adb75a8e4cf380bfc89f17827f2b182
languageName: node
linkType: hard
@@ -31618,7 +30453,14 @@ __metadata:
languageName: node
linkType: hard
-"zod@npm:^3.21.4, zod@npm:^3.22.4, zod@npm:^3.23.8":
+"zod@npm:^3.21.4":
+ version: 3.25.76
+ resolution: "zod@npm:3.25.76"
+ checksum: 10c0/5718ec35e3c40b600316c5b4c5e4976f7fee68151bc8f8d90ec18a469be9571f072e1bbaace10f1e85cf8892ea12d90821b200e980ab46916a6166a4260a983c
+ languageName: node
+ linkType: hard
+
+"zod@npm:~3.24.4":
version: 3.24.4
resolution: "zod@npm:3.24.4"
checksum: 10c0/ab3112f017562180a41a0f83d870b333677f7d6b77f106696c56894567051b91154714a088149d8387a4f50806a2520efcb666f108cd384a35c236a191186d91
@@ -31646,9 +30488,30 @@ __metadata:
languageName: node
linkType: hard
+"zustand@npm:5.0.3":
+ version: 5.0.3
+ resolution: "zustand@npm:5.0.3"
+ peerDependencies:
+ "@types/react": ">=18.0.0"
+ immer: ">=9.0.6"
+ react: ">=18.0.0"
+ use-sync-external-store: ">=1.2.0"
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ immer:
+ optional: true
+ react:
+ optional: true
+ use-sync-external-store:
+ optional: true
+ checksum: 10c0/dad96c6c123fda088c583d5df6692e9245cd207583078dc15f93d255a67b0f346bad4535545c98852ecde93d254812a0c799579dfde2ab595016b99fbe20e4d5
+ languageName: node
+ linkType: hard
+
"zustand@npm:^4.5.0, zustand@npm:^4.5.4":
- version: 4.5.6
- resolution: "zustand@npm:4.5.6"
+ version: 4.5.7
+ resolution: "zustand@npm:4.5.7"
dependencies:
use-sync-external-store: "npm:^1.2.2"
peerDependencies:
@@ -31662,7 +30525,7 @@ __metadata:
optional: true
react:
optional: true
- checksum: 10c0/5b39aff2ef57e5a8ada647261ec1115697d397be311c51461d9ea81b5b63c6d2c498b960477ad2db72dc21db6aa229a92bdf644f6a8ecf7b1d71df5b4a5e95d3
+ checksum: 10c0/55559e37a82f0c06cadc61cb08f08314c0fe05d6a93815e41e3376130c13db22a5017cbb0cd1f018c82f2dad0051afe3592561d40f980bd4082e32005e8a950c
languageName: node
linkType: hard