Skip to content

Commit 8f21cdb

Browse files
committed
fix: type issue with GNS on toolshed
Signed-off-by: Tomás Migone <tomas@edgeandnode.com>
1 parent a7c9646 commit 8f21cdb

File tree

8 files changed

+26
-8
lines changed

8 files changed

+26
-8
lines changed

packages/hardhat-graph-protocol/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# hardhat-graph-protocol
22

3+
## 0.1.21
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @graphprotocol/toolshed@0.5.4
9+
310
## 0.1.20
411

512
### Patch Changes

packages/hardhat-graph-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hardhat-graph-protocol",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"publishConfig": {
55
"access": "public"
66
},

packages/horizon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"hardhat": "^2.22.18",
5656
"hardhat-contract-sizer": "^2.10.0",
5757
"hardhat-gas-reporter": "^1.0.8",
58-
"hardhat-graph-protocol": "workspace:^0.1.20",
58+
"hardhat-graph-protocol": "workspace:^0.1.21",
5959
"hardhat-secure-accounts": "^1.0.5",
6060
"lint-staged": "^15.2.2",
6161
"prettier": "^3.2.5",

packages/subgraph-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"hardhat": "^2.22.18",
5757
"hardhat-contract-sizer": "^2.10.0",
5858
"hardhat-gas-reporter": "^1.0.8",
59-
"hardhat-graph-protocol": "workspace:^0.1.20",
59+
"hardhat-graph-protocol": "workspace:^0.1.21",
6060
"hardhat-secure-accounts": "^1.0.5",
6161
"json5": "^2.2.3",
6262
"lint-staged": "^15.2.2",

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+
## 0.5.4
4+
5+
### Patch Changes
6+
7+
- Fix type issue with GNS
8+
- @graphprotocol/horizon@0.3.3
9+
- @graphprotocol/subgraph-service@0.3.5
10+
311
## 0.5.3
412

513
### Patch Changes

packages/toolshed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/toolshed",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"publishConfig": {
55
"access": "public"
66
},
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
import type {
22
IDisputeManager,
33
IL2CurationToolshed,
4-
IL2GNS,
54
IServiceRegistryToolshed,
65
} from '@graphprotocol/subgraph-service'
76

7+
import {
8+
L2GNS,
9+
} from '../horizon'
10+
811
// These are just type re-declarations to keep naming conventions consistent
912
export {
1013
IL2CurationToolshed as L2Curation,
11-
IL2GNS as L2GNS,
14+
L2GNS,
1215
IDisputeManager as LegacyDisputeManager,
1316
IServiceRegistryToolshed as LegacyServiceRegistry,
1417
}

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)