Skip to content

Commit b91017d

Browse files
authored
Merge pull request #1269 from graphprotocol/mde/remove-returns-from-token-lock-wallet
2 parents 2fc082e + d56b36c commit b91017d

File tree

11 files changed

+45
-7
lines changed

11 files changed

+45
-7
lines changed

packages/horizon/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphprotocol/horizon
22

3+
## 1.1.1
4+
5+
### Patch Changes
6+
7+
- remove return types from IGraphTokenLockWalletToolshed
8+
39
## 1.1.0
410

511
### Minor Changes

packages/horizon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/horizon",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"publishConfig": {
55
"access": "public"
66
},

packages/interfaces/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @graphprotocol/interfaces
22

3+
## 0.6.6
4+
5+
### Patch Changes
6+
7+
- fix: rebuild wagmi dist files with correct withdrawDelegated outputs
8+
9+
## 0.6.5
10+
11+
### Patch Changes
12+
13+
- remove return types from IGraphTokenLockWalletToolshed
14+
315
## 0.6.4
416

517
### Patch Changes

packages/interfaces/contracts/toolshed/IGraphTokenLockWalletToolshed.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface IGraphTokenLockWalletToolshed is IGraphTokenLockWallet {
2626
uint32 maxVerifierCut,
2727
uint64 thawingPeriod
2828
) external;
29-
function thaw(address serviceProvider, address verifier, uint256 tokens) external returns (bytes32);
29+
function thaw(address serviceProvider, address verifier, uint256 tokens) external;
3030
function deprovision(address serviceProvider, address verifier, uint256 nThawRequests) external;
3131

3232
// === PROVISION CONFIGURATION ===
@@ -45,5 +45,5 @@ interface IGraphTokenLockWalletToolshed is IGraphTokenLockWallet {
4545
function withdrawDelegated(address serviceProvider, address verifier, uint256 nThawRequests) external;
4646

4747
// === LEGACY DELEGATION MANAGEMENT ===
48-
function withdrawDelegated(address indexer, address __DEPRECATED_delegateToIndexer) external returns (uint256);
48+
function withdrawDelegated(address indexer, address __DEPRECATED_delegateToIndexer) external;
4949
}

packages/interfaces/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/interfaces",
3-
"version": "0.6.4",
3+
"version": "0.6.6",
44
"publishConfig": {
55
"access": "public"
66
},

packages/subgraph-service/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphprotocol/subgraph-service
22

3+
## 1.1.1
4+
5+
### Patch Changes
6+
7+
- remove return types from IGraphTokenLockWalletToolshed
8+
39
## 1.1.0
410

511
### Minor Changes

packages/subgraph-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/subgraph-service",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"publishConfig": {
55
"access": "public"
66
},

packages/token-distribution/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphprotocol/token-distribution
22

3+
## 2.0.1
4+
5+
### Patch Changes
6+
7+
- remove return types from IGraphTokenLockWalletToolshed
8+
39
## 1.2.1
410

511
### Patch Changes

packages/token-distribution/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/token-distribution",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"private": true,
55
"description": "Graph Token Distribution",
66
"author": "Edge & Node",

packages/toolshed/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphprotocol/toolshed
22

3+
## 1.1.2
4+
5+
### Patch Changes
6+
7+
- remove return types from IGraphTokenLockWalletToolshed
8+
- Updated dependencies
9+
- @graphprotocol/interfaces@0.6.5
10+
311
## 1.1.1
412

513
### Patch Changes

0 commit comments

Comments
 (0)