Skip to content

Commit 989c381

Browse files
committed
chore: bump dojo.c to get latest publishMessage endpoint
1 parent d58f2a3 commit 989c381

File tree

22 files changed

+23
-28
lines changed

22 files changed

+23
-28
lines changed

.changeset/wild-trees-admire.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
"@dojoengine/torii-wasm": patch
3+
"@dojoengine/core": patch
4+
"@dojoengine/sdk": patch
5+
"@dojoengine/create-burner": patch
6+
"@dojoengine/create-dojo": patch
7+
"@dojoengine/predeployed-connector": patch
8+
"@dojoengine/react": patch
9+
"@dojoengine/state": patch
10+
"@dojoengine/torii-client": patch
11+
"@dojoengine/utils": patch
12+
"@dojoengine/utils-wasm": patch
13+
---
14+
15+
chore: bump dojo.c to get latest publishMessage endpoint

examples/example-node-worker/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ global.WorkerGlobalScope = global;
2727
const sdk = await init({
2828
client: {
2929
toriiUrl: dojoConfig.toriiUrl,
30-
relayUrl: "/ip4/127.0.0.1/tcp/9092/ws",
3130
worldAddress: dojoConfig.manifest.world.address,
3231
},
3332
domain: {

examples/example-vanillajs-phaser-recs/src/dojo/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export async function setup({ ...config }: Config) {
2424
try {
2525
toriiClient = await torii.createClient({
2626
toriiUrl: config.toriiUrl,
27-
relayUrl: "",
2827
worldAddress: config.manifest.world.address || "",
2928
});
3029
} catch (e) {

examples/example-vite-experimental-sdk/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ async function main() {
1313
const sdk = await init({
1414
client: {
1515
toriiUrl: dojoConfig.toriiUrl,
16-
relayUrl: dojoConfig.relayUrl,
1716
worldAddress: dojoConfig.manifest.world.address,
1817
},
1918
domain: {

examples/example-vite-grpc-playground/src/main.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ async function main() {
99
const sdk = await init({
1010
client: {
1111
toriiUrl: dojoConfig.toriiUrl,
12-
relayUrl: dojoConfig.relayUrl,
1312
worldAddress: dojoConfig.manifest.world.address,
1413
},
1514
domain: {

examples/example-vite-kitchen-sink/src/main.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ async function main() {
1818
const sdk = await init<SchemaType>({
1919
client: {
2020
toriiUrl: env.VITE_TORII_URL,
21-
relayUrl: env.VITE_RELAY_URL,
2221
worldAddress: dojoConfig.manifest.world.address,
2322
},
2423
domain: {

examples/example-vite-phaser-sdk/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ async function main() {
3838
const sdk = await init<SchemaType>({
3939
client: {
4040
toriiUrl: dojoConfig.toriiUrl,
41-
relayUrl: dojoConfig.relayUrl,
4241
worldAddress: dojoConfig.manifest.world.address,
4342
},
4443
domain: {

examples/example-vite-react-app-recs/src/dojo/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export async function setup({ ...config }: DojoConfig) {
1818
// Initialize Torii client for interacting with the Dojo network
1919
const toriiClient = new torii.ToriiClient({
2020
toriiUrl: config.toriiUrl,
21-
relayUrl: "",
2221
worldAddress: config.manifest.world.address || "",
2322
});
2423

examples/example-vite-react-phaser-recs/src/dojo/generated/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export async function setup({ ...config }: DojoConfig) {
1515
// torii client
1616
const toriiClient = new torii.ToriiClient({
1717
toriiUrl: config.toriiUrl,
18-
relayUrl: config.relayUrl,
1918
worldAddress: config.manifest.world.address || "",
2019
});
2120

examples/example-vite-react-pwa-recs/src/dojo/generated/setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export async function setup({ ...config }: DojoConfig) {
1717
// torii client
1818
const toriiClient = new torii.ToriiClient({
1919
toriiUrl: config.toriiUrl,
20-
relayUrl: config.relayUrl,
2120
worldAddress: config.manifest.world.address || "",
2221
});
2322

0 commit comments

Comments
 (0)