Skip to content

Commit 4b5f654

Browse files
committed
feat: update package name
1 parent bd4bebd commit 4b5f654

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A collection of tools for interacting with the The Graph.
55
## Installing
66

77
```sh
8-
npm install @geogenesis/sdk
8+
npm install @graphprotocol/grc-20
99
```
1010

1111
## Overview
@@ -52,7 +52,7 @@ When writing data, these ops are grouped into a logical set called an "Edit." An
5252
Entities throughout The Graph are referenced via globally unique identifiers. The SDK exposes APIs for creating these IDs.
5353

5454
```ts
55-
import { ID } from 'geogenesis/sdk';
55+
import { ID } from 'graphprotocol/grc-20';
5656

5757
const newId = ID.make();
5858
```
@@ -69,7 +69,7 @@ import {
6969
Relation,
7070
type SetTripleOp,
7171
Triple,
72-
} from '@geogenesis/sdk';
72+
} from '@graphprotocol/grc-20';
7373

7474
const setTripleOp: SetTripleOp = Triple.make({
7575
entityId: 'id of entity',
@@ -103,7 +103,7 @@ Currently the indexer only supports reading from the [Lighthouse gateway](https:
103103
Additionally, the indexer expects that IPFS CIDs be prefixed with `ipfs://` so it knows how to process it correctly.
104104

105105
```ts
106-
import { EditProposal } from '@geogenesis/sdk/proto';
106+
import { EditProposal } from '@graphprotocol/grc-20/proto';
107107

108108
const binaryEncodedEdit = EditProposal.make({
109109
name: 'Edit name',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/grc-20",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"license": "MIT",
55
"module": "./dist/index.js",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)