Skip to content

Commit eaa633a

Browse files
authored
use id from hypergraph (#437)
1 parent 5adc8a6 commit eaa633a

File tree

18 files changed

+48
-27
lines changed

18 files changed

+48
-27
lines changed

apps/connect/CHANGELOG.md

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

3+
## 0.2.1
4+
### Patch Changes
5+
6+
- Updated dependencies [e324e68]
7+
- @graphprotocol/hypergraph@0.4.1
8+
- @graphprotocol/hypergraph-react@0.4.1
9+
310
## 0.2.0
411
### Minor Changes
512

apps/connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "connect",
33
"private": true,
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",

apps/create-hypergraph/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# create-hypergraph
22

3+
## 0.4.2
4+
### Patch Changes
5+
6+
- Update templates to use the Id from @graphprotocol/hypergraph package
7+
38
## 0.4.1
49
### Patch Changes
510

apps/create-hypergraph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-hypergraph",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "CLI toolchain to scaffold a Hypergraph-enabled application with a given template.",
55
"type": "module",
66
"bin": {

apps/create-hypergraph/template-nextjs/app/mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Id } from '@graphprotocol/grc-20';
21
import type { Mapping } from '@graphprotocol/hypergraph';
2+
import { Id } from '@graphprotocol/hypergraph';
33

44
export const mapping: Mapping.Mapping = {
55
Address: {

apps/create-hypergraph/template-nextjs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
},
1616
"type": "module",
1717
"dependencies": {
18-
"@graphprotocol/grc-20": "^0.24.1",
1918
"@graphprotocol/hypergraph": "workspace:*",
2019
"@graphprotocol/hypergraph-react": "workspace:*",
2120
"@radix-ui/react-navigation-menu": "^1.2.13",

apps/create-hypergraph/template-vite-react/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"typecheck": "tsc --noEmit"
1212
},
1313
"dependencies": {
14-
"@graphprotocol/grc-20": "^0.24.1",
1514
"@graphprotocol/hypergraph": "workspace:*",
1615
"@graphprotocol/hypergraph-react": "workspace:*",
1716
"@radix-ui/react-navigation-menu": "^1.2.13",

apps/create-hypergraph/template-vite-react/src/mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Id } from '@graphprotocol/grc-20';
21
import type { Mapping } from '@graphprotocol/hypergraph';
2+
import { Id } from '@graphprotocol/hypergraph';
33

44
export const mapping: Mapping.Mapping = {
55
Address: {

apps/events/src/mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Id } from '@graphprotocol/grc-20';
21
import type { Mapping } from '@graphprotocol/hypergraph';
2+
import { Id } from '@graphprotocol/hypergraph';
33

44
export const mapping: Mapping.Mapping = {
55
Event: {

apps/server/CHANGELOG.md

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

3+
## 0.1.5
4+
### Patch Changes
5+
6+
- Updated dependencies [e324e68]
7+
- @graphprotocol/hypergraph@0.4.1
8+
39
## 0.1.4
410
### Patch Changes
511

0 commit comments

Comments
 (0)