Skip to content

Commit ce8bd91

Browse files
authored
bump changeset version (#3828)
1 parent 3477b97 commit ce8bd91

File tree

15 files changed

+56
-45
lines changed

15 files changed

+56
-45
lines changed

.changeset/cozy-poets-go.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/crisp-buckets-agree.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nine-seas-dream.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/shaggy-months-post.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @human-protocol/core
2+
3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- a7ab394: Updated escrow contracts and SDKs to fetch oracle fees from `KVStore` instead of passing fee values during escrow setup. `Escrow.setup(...)` and factory setup flows no longer accept fee arguments, escrow deployments now require a `KVStore` address, and fee validation is enforced on-chain from `KVStore` values, including per-oracle and total fee limits. Added upgrade-safe `EscrowFactory` support for storing and updating the `KVStore` address.
8+
9+
Updated TypeScript and Python SDK escrow setup APIs to match the new contract signatures by removing fee arguments from `setup(...)` and create-and-setup helpers. Existing config fee fields remain optional for backward compatibility but are ignored by setup calls.
10+
11+
Updated SDKs to use a dedicated HMT stats subgraph endpoint for HMT statistics methods and removed `totalAmountPaid` and `averageAmountPerWorker` from `IDailyPayment`.

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@human-protocol/core",
33
"description": "Human Protocol Core Smart Contracts",
4-
"version": "5.0.1",
4+
"version": "6.0.0",
55
"files": [
66
"contracts/**/*.sol",
77
"abis/**/*.json",

packages/sdk/python/human-protocol-sdk/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @human-protocol/python-sdk
22

3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- a7ab394: Updated KV Store utils in sdk to return empty string in case no value in subgraph instead of throwing and error
8+
- a7ab394: Updated escrow contracts and SDKs to fetch oracle fees from `KVStore` instead of passing fee values during escrow setup. `Escrow.setup(...)` and factory setup flows no longer accept fee arguments, escrow deployments now require a `KVStore` address, and fee validation is enforced on-chain from `KVStore` values, including per-oracle and total fee limits. Added upgrade-safe `EscrowFactory` support for storing and updating the `KVStore` address.
9+
10+
Updated TypeScript and Python SDK escrow setup APIs to match the new contract signatures by removing fee arguments from `setup(...)` and create-and-setup helpers. Existing config fee fields remain optional for backward compatibility but are ignored by setup calls.
11+
12+
Updated SDKs to use a dedicated HMT stats subgraph endpoint for HMT statistics methods and removed `totalAmountPaid` and `averageAmountPerWorker` from `IDailyPayment`.
13+
14+
### Patch Changes
15+
16+
- Updated dependencies [a7ab394]
17+
- @human-protocol/core@6.0.0
18+
319
## 6.1.0
420

521
### Minor Changes

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/cancel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,4 @@ def get_cancellation_refund_by_escrow_query():
7070
}}
7171
}}
7272
{cancellation_refund_fragment}
73-
""".format(
74-
cancellation_refund_fragment=cancellation_refund_fragment
75-
)
73+
""".format(cancellation_refund_fragment=cancellation_refund_fragment)

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,7 @@ def get_escrow_query():
9797
}}
9898
}}
9999
{escrow_fragment}
100-
""".format(
101-
escrow_fragment=escrow_fragment
102-
)
100+
""".format(escrow_fragment=escrow_fragment)
103101

104102

105103
def get_status_query(

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/reward.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@
1414
}}
1515
}}
1616
{reward_added_event_fragment}
17-
""".format(
18-
reward_added_event_fragment=reward_added_event_fragment
19-
)
17+
""".format(reward_added_event_fragment=reward_added_event_fragment)

0 commit comments

Comments
 (0)