File tree Expand file tree Collapse file tree 22 files changed +23
-28
lines changed
example-vanillajs-phaser-recs/src/dojo
example-vite-experimental-sdk/src
example-vite-grpc-playground/src
example-vite-kitchen-sink/src
example-vite-phaser-sdk/src
example-vite-react-app-recs/src/dojo
example-vite-react-phaser-recs/src/dojo/generated
example-vite-react-pwa-recs/src/dojo/generated
example-vite-react-sql/src
example-vite-react-threejs-recs/src/dojo/generated
example-vite-svelte-recs/src/dojo
example-vue-app-recs/src/dojo/generated Expand file tree Collapse file tree 22 files changed +23
-28
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ global.WorkerGlobalScope = global;
27
27
const sdk = await init ( {
28
28
client : {
29
29
toriiUrl : dojoConfig . toriiUrl ,
30
- relayUrl : "/ip4/127.0.0.1/tcp/9092/ws" ,
31
30
worldAddress : dojoConfig . manifest . world . address ,
32
31
} ,
33
32
domain : {
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export async function setup({ ...config }: Config) {
24
24
try {
25
25
toriiClient = await torii . createClient ( {
26
26
toriiUrl : config . toriiUrl ,
27
- relayUrl : "" ,
28
27
worldAddress : config . manifest . world . address || "" ,
29
28
} ) ;
30
29
} catch ( e ) {
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ async function main() {
13
13
const sdk = await init ( {
14
14
client : {
15
15
toriiUrl : dojoConfig . toriiUrl ,
16
- relayUrl : dojoConfig . relayUrl ,
17
16
worldAddress : dojoConfig . manifest . world . address ,
18
17
} ,
19
18
domain : {
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ async function main() {
9
9
const sdk = await init ( {
10
10
client : {
11
11
toriiUrl : dojoConfig . toriiUrl ,
12
- relayUrl : dojoConfig . relayUrl ,
13
12
worldAddress : dojoConfig . manifest . world . address ,
14
13
} ,
15
14
domain : {
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ async function main() {
18
18
const sdk = await init < SchemaType > ( {
19
19
client : {
20
20
toriiUrl : env . VITE_TORII_URL ,
21
- relayUrl : env . VITE_RELAY_URL ,
22
21
worldAddress : dojoConfig . manifest . world . address ,
23
22
} ,
24
23
domain : {
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ async function main() {
38
38
const sdk = await init < SchemaType > ( {
39
39
client : {
40
40
toriiUrl : dojoConfig . toriiUrl ,
41
- relayUrl : dojoConfig . relayUrl ,
42
41
worldAddress : dojoConfig . manifest . world . address ,
43
42
} ,
44
43
domain : {
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ export async function setup({ ...config }: DojoConfig) {
18
18
// Initialize Torii client for interacting with the Dojo network
19
19
const toriiClient = new torii . ToriiClient ( {
20
20
toriiUrl : config . toriiUrl ,
21
- relayUrl : "" ,
22
21
worldAddress : config . manifest . world . address || "" ,
23
22
} ) ;
24
23
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export async function setup({ ...config }: DojoConfig) {
15
15
// torii client
16
16
const toriiClient = new torii . ToriiClient ( {
17
17
toriiUrl : config . toriiUrl ,
18
- relayUrl : config . relayUrl ,
19
18
worldAddress : config . manifest . world . address || "" ,
20
19
} ) ;
21
20
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export async function setup({ ...config }: DojoConfig) {
17
17
// torii client
18
18
const toriiClient = new torii . ToriiClient ( {
19
19
toriiUrl : config . toriiUrl ,
20
- relayUrl : config . relayUrl ,
21
20
worldAddress : config . manifest . world . address || "" ,
22
21
} ) ;
23
22
You can’t perform that action at this time.
0 commit comments