Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @graphprotocol/interfaces

## 0.6.4

### Patch Changes

- yAdd feesProvisionTracker to subgraph service interface

## 0.6.3

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.27;

interface IProvisionTracker {

Check warning on line 4 in packages/interfaces/contracts/toolshed/internal/IProvisionTracker.sol

View workflow job for this annotation

GitHub Actions / Lint Files

Missing @notice tag in contract 'IProvisionTracker'

Check warning on line 4 in packages/interfaces/contracts/toolshed/internal/IProvisionTracker.sol

View workflow job for this annotation

GitHub Actions / Lint Files

Missing @author tag in contract 'IProvisionTracker'

Check warning on line 4 in packages/interfaces/contracts/toolshed/internal/IProvisionTracker.sol

View workflow job for this annotation

GitHub Actions / Lint Files

Missing @title tag in contract 'IProvisionTracker'
// Errors
error ProvisionTrackerInsufficientTokens(uint256 tokensAvailable, uint256 tokensRequired);

/**
* @notice Gets the fees provision tracker
* @param indexer The address of the indexer
* @return The fees provision tracker
*/
function feesProvisionTracker(address indexer) external view returns (uint256);
}
2 changes: 1 addition & 1 deletion packages/interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/interfaces",
"version": "0.6.3",
"version": "0.6.4",
"publishConfig": {
"access": "public"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/toolshed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphprotocol/toolshed

## 1.0.2

### Patch Changes

- yAdd feesProvisionTracker to subgraph service interface
- Updated dependencies
- @graphprotocol/interfaces@0.6.4

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/toolshed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/toolshed",
"version": "1.0.1",
"version": "1.0.2",
"publishConfig": {
"access": "public"
},
Expand Down
Loading