Skip to content

Commit 2b789f7

Browse files
committed
Updates
1 parent 94b8d81 commit 2b789f7

19 files changed

+6613
-44567
lines changed

Diff for: context/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import { RuntimeCompositeDefinition } from "@composedb/types";
88
/**
99
* Configure ceramic Client & create context.
1010
*/
11-
const ceramic = new CeramicClient("http://24.199.76.25:7007"
11+
const ceramic = new CeramicClient("http://localhost:7007"
1212
);
1313

1414
const composeClient = new ComposeClient({
15-
ceramic: "http://24.199.76.25:7007",
15+
ceramic: "http://localhost:7007",
1616
// cast our definition as a RuntimeCompositeDefinition
1717
definition: definition as RuntimeCompositeDefinition,
1818
});

Diff for: package-lock.json

+6,595-29,578
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"@composedb/types": "^0.5.0",
6767
"@datamodels/identity-profile-basic": "^0.2.0",
6868
"@glazed/types": "^0.2.0",
69-
"@types/node": "^20.5.7",
69+
"@types/node": "^17.0.15",
7070
"@types/react": "^18.0.0",
7171
"autoprefixer": "^10.4.13",
7272
"key-did-provider-ed25519": "^3.0.2",

Diff for: pages/api/composeCreate/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import { fromString } from "uint8arrays/from-string";
99
import { definition } from "../../../src/__generated__/definition.js";
1010
import { RuntimeCompositeDefinition } from "@composedb/types";
1111

12-
const ceramic = new CeramicClient("http://24.199.76.25:7007");
12+
const ceramic = new CeramicClient("http://localhost:7007");
1313
const composeClient = new ComposeClient({
14-
ceramic: "http://24.199.76.25:7007",
14+
ceramic: "http://localhost:7007",
1515
definition: definition as RuntimeCompositeDefinition,
1616
});
1717

Diff for: pages/api/composeTime/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import { fromString } from "uint8arrays/from-string";
99
import { definition } from "../../../src/__generated__/definition.js";
1010
import { RuntimeCompositeDefinition } from "@composedb/types";
1111

12-
const ceramic = new CeramicClient("http://24.199.76.25:7007");
12+
const ceramic = new CeramicClient("http://localhost:7007");
1313
const composeClient = new ComposeClient({
14-
ceramic: "http://24.199.76.25:7007",
14+
ceramic: "http://localhost:7007",
1515
definition: definition as RuntimeCompositeDefinition,
1616
});
1717

Diff for: pages/api/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import type { NextApiRequest, NextApiResponse } from 'next';
44

55
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
66
try {
7-
console.log("FUCK GOD")
87
const { data } = await axios.post(
98
'https://us-central1-nfts-apis.cloudfunctions.net/createroom',
109
{

Diff for: pages/hello.tsx

Whitespace-only changes.

Diff for: scripts/composites.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Ed25519Provider } from "key-did-provider-ed25519";
1616
import { getResolver } from "key-did-resolver";
1717
import { fromString } from "uint8arrays/from-string";
1818

19-
const ceramic = new CeramicClient("http://24.199.76.25:7007");
19+
const ceramic = new CeramicClient("http://localhost:7007");
2020

2121
/**
2222
* @param {Ora} spinner - to provide progress status.

Diff for: scripts/graphiql.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { serveEncodedDefinition } from "@composedb/devtools-node";
44
* Runs GraphiQL server to view & query composites.
55
*/
66
const server = await serveEncodedDefinition({
7-
ceramicURL: "http://24.199.76.25:7007",
7+
ceramicURL: "http://localhost:70077",
88
graphiql: true,
99
path: "./src/__generated__/definition.json",
1010
port: 5001,

Diff for: src/__generated__/BasicProfile.json

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/__generated__/CourseDetails.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/__generated__/CourseXReviews.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/__generated__/DaoData.json

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)