Skip to content

Commit

Permalink
Merge pull request #5 from hypercerts-org/chore/deprecate-goerli
Browse files Browse the repository at this point in the history
(chore): deprecate goerli
  • Loading branch information
Jipperism authored Jan 8, 2024
2 parents bfee3a4 + 88cc90c commit ee86d14
Show file tree
Hide file tree
Showing 11 changed files with 7,855 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
/.idea/inspectionProfiles/Project_Default.xml
/.idea/.gitignore
/.idea/demo-apps.iml
/.idea/modules.xml
/.idea/vcs.xml
2 changes: 1 addition & 1 deletion apps/nextjs-hypercerts/app/hooks/useHypercertClient.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HypercertClient } from "@hypercerts-org/sdk";

const useHypercertClient = () => {
const client = new HypercertClient({ chain: { id: 5 } });
const client = new HypercertClient({ chain: { id: 11155111 } });

return { client };
};
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-hypercerts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "next lint"
},
"dependencies": {
"@hypercerts-org/sdk": "1.0.0",
"@hypercerts-org/sdk": "1.2.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"next": "13.4.19",
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-ts-hypercerts/app/hooks/useHypercertClient.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HypercertClient } from "@hypercerts-org/sdk";

const useHypercertClient = () => {
const client = new HypercertClient({ chain: { id: 5 } });
const client = new HypercertClient({ chain: { id: 11155111 } });

return { client };
};
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-ts-hypercerts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "next lint"
},
"dependencies": {
"@hypercerts-org/sdk": "1.0.0",
"@hypercerts-org/sdk": "1.2.0",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
Expand Down
2 changes: 1 addition & 1 deletion apps/server-http/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/server-http/dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/server-http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"parcel-bundler": "^1.12.5"
},
"dependencies": {
"@hypercerts-org/sdk": "1.0.0"
"@hypercerts-org/sdk": "1.2.0"
}
}
2 changes: 1 addition & 1 deletion apps/server-http/src/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const http = require("http");
const sdk = require("@hypercerts-org/sdk");

const client = new sdk.HypercertClient({ chain: { id: 5 } });
const client = new sdk.HypercertClient({ chain: { id: 11155111 } });

const content = async () => {
const { config } = client;
Expand Down
Loading

0 comments on commit ee86d14

Please sign in to comment.