From 526c483ae2d2739add4f9991c5de98d165a8fda1 Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Sat, 13 Dec 2025 21:12:45 -0300 Subject: [PATCH 1/3] fix: remove return types from IGraphTokenLockWalletToolshed --- .../contracts/toolshed/IGraphTokenLockWalletToolshed.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/interfaces/contracts/toolshed/IGraphTokenLockWalletToolshed.sol b/packages/interfaces/contracts/toolshed/IGraphTokenLockWalletToolshed.sol index b412f6eb7..0376d2261 100644 --- a/packages/interfaces/contracts/toolshed/IGraphTokenLockWalletToolshed.sol +++ b/packages/interfaces/contracts/toolshed/IGraphTokenLockWalletToolshed.sol @@ -26,7 +26,7 @@ interface IGraphTokenLockWalletToolshed is IGraphTokenLockWallet { uint32 maxVerifierCut, uint64 thawingPeriod ) external; - function thaw(address serviceProvider, address verifier, uint256 tokens) external returns (bytes32); + function thaw(address serviceProvider, address verifier, uint256 tokens) external; function deprovision(address serviceProvider, address verifier, uint256 nThawRequests) external; // === PROVISION CONFIGURATION === @@ -45,5 +45,5 @@ interface IGraphTokenLockWalletToolshed is IGraphTokenLockWallet { function withdrawDelegated(address serviceProvider, address verifier, uint256 nThawRequests) external; // === LEGACY DELEGATION MANAGEMENT === - function withdrawDelegated(address indexer, address __DEPRECATED_delegateToIndexer) external returns (uint256); + function withdrawDelegated(address indexer, address __DEPRECATED_delegateToIndexer) external; } From e1d3ef47e02c7b1d548443119eaff859b271a7d1 Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Sat, 13 Dec 2025 21:21:06 -0300 Subject: [PATCH 2/3] bump: patch versions --- packages/horizon/CHANGELOG.md | 6 ++++++ packages/horizon/package.json | 2 +- packages/interfaces/CHANGELOG.md | 6 ++++++ packages/interfaces/package.json | 2 +- packages/subgraph-service/CHANGELOG.md | 6 ++++++ packages/subgraph-service/package.json | 2 +- packages/token-distribution/CHANGELOG.md | 6 ++++++ packages/token-distribution/package.json | 2 +- packages/toolshed/CHANGELOG.md | 8 ++++++++ packages/toolshed/package.json | 2 +- 10 files changed, 37 insertions(+), 5 deletions(-) diff --git a/packages/horizon/CHANGELOG.md b/packages/horizon/CHANGELOG.md index 81b96eb18..e3abc621d 100644 --- a/packages/horizon/CHANGELOG.md +++ b/packages/horizon/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphprotocol/horizon +## 1.1.1 + +### Patch Changes + +- remove return types from IGraphTokenLockWalletToolshed + ## 1.1.0 ### Minor Changes diff --git a/packages/horizon/package.json b/packages/horizon/package.json index ed6552b22..ad05c92dd 100644 --- a/packages/horizon/package.json +++ b/packages/horizon/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/horizon", - "version": "1.1.0", + "version": "1.1.1", "publishConfig": { "access": "public" }, diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index c789a377d..c675b77b0 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphprotocol/interfaces +## 0.6.5 + +### Patch Changes + +- remove return types from IGraphTokenLockWalletToolshed + ## 0.6.4 ### Patch Changes diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index b70cc97c5..caa1d9e67 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/interfaces", - "version": "0.6.4", + "version": "0.6.5", "publishConfig": { "access": "public" }, diff --git a/packages/subgraph-service/CHANGELOG.md b/packages/subgraph-service/CHANGELOG.md index 57a2ae8aa..b6ee7eb9b 100644 --- a/packages/subgraph-service/CHANGELOG.md +++ b/packages/subgraph-service/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphprotocol/subgraph-service +## 1.1.1 + +### Patch Changes + +- remove return types from IGraphTokenLockWalletToolshed + ## 1.1.0 ### Minor Changes diff --git a/packages/subgraph-service/package.json b/packages/subgraph-service/package.json index a3db13843..25f7b08c8 100644 --- a/packages/subgraph-service/package.json +++ b/packages/subgraph-service/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/subgraph-service", - "version": "1.1.0", + "version": "1.1.1", "publishConfig": { "access": "public" }, diff --git a/packages/token-distribution/CHANGELOG.md b/packages/token-distribution/CHANGELOG.md index 2809305b6..cdeb23293 100644 --- a/packages/token-distribution/CHANGELOG.md +++ b/packages/token-distribution/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphprotocol/token-distribution +## 2.0.1 + +### Patch Changes + +- remove return types from IGraphTokenLockWalletToolshed + ## 1.2.1 ### Patch Changes diff --git a/packages/token-distribution/package.json b/packages/token-distribution/package.json index 21019d6e6..5936fb0a9 100644 --- a/packages/token-distribution/package.json +++ b/packages/token-distribution/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/token-distribution", - "version": "2.0.0", + "version": "2.0.1", "private": true, "description": "Graph Token Distribution", "author": "Edge & Node", diff --git a/packages/toolshed/CHANGELOG.md b/packages/toolshed/CHANGELOG.md index c460496fb..3eaa879ea 100644 --- a/packages/toolshed/CHANGELOG.md +++ b/packages/toolshed/CHANGELOG.md @@ -1,5 +1,13 @@ # @graphprotocol/toolshed +## 1.1.2 + +### Patch Changes + +- remove return types from IGraphTokenLockWalletToolshed +- Updated dependencies + - @graphprotocol/interfaces@0.6.5 + ## 1.1.1 ### Patch Changes diff --git a/packages/toolshed/package.json b/packages/toolshed/package.json index a3e71a78f..21cce3491 100644 --- a/packages/toolshed/package.json +++ b/packages/toolshed/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/toolshed", - "version": "1.1.1", + "version": "1.1.2", "publishConfig": { "access": "public" }, From d56b36cea248e4fade6b897fa54c69e3956dc851 Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Sun, 14 Dec 2025 18:04:24 -0300 Subject: [PATCH 3/3] chore: release @graphprotocol/interfaces@0.6.6 --- packages/interfaces/CHANGELOG.md | 6 ++++++ packages/interfaces/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/interfaces/CHANGELOG.md b/packages/interfaces/CHANGELOG.md index c675b77b0..67576913a 100644 --- a/packages/interfaces/CHANGELOG.md +++ b/packages/interfaces/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphprotocol/interfaces +## 0.6.6 + +### Patch Changes + +- fix: rebuild wagmi dist files with correct withdrawDelegated outputs + ## 0.6.5 ### Patch Changes diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index caa1d9e67..9d5b1fdc0 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/interfaces", - "version": "0.6.5", + "version": "0.6.6", "publishConfig": { "access": "public" },