File tree Expand file tree Collapse file tree 16 files changed +6
-27
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-sdk/src
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 16 files changed +6
-27
lines changed Original file line number Diff line number Diff line change 20
20
run : git submodule update --init --recursive
21
21
22
22
- run : curl -L https://install.dojoengine.org | bash
23
- - run : /home/runner/.config/.dojo/bin/dojoup -v v1.0.10
23
+ - run : /home/runner/.config/.dojo/bin/dojoup -v v1.1.1
24
24
- run : |
25
25
cd worlds/dojo-starter
26
26
/home/runner/.config/.dojo/bin/sozo build
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ export async function setup({ ...config }: Config) {
23
23
let toriiClient = null ;
24
24
try {
25
25
toriiClient = await torii . createClient ( {
26
- rpcUrl : config . rpcUrl ,
27
26
toriiUrl : config . toriiUrl ,
28
27
relayUrl : "" ,
29
28
worldAddress : config . manifest . world . address || "" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ async function main() {
12
12
13
13
const sdk = await init ( {
14
14
client : {
15
- rpcUrl : dojoConfig . rpcUrl ,
16
15
toriiUrl : dojoConfig . toriiUrl ,
17
16
relayUrl : dojoConfig . relayUrl ,
18
17
worldAddress : dojoConfig . manifest . world . address ,
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import { dojoConfig } from "../dojoConfig.ts";
8
8
async function main ( ) {
9
9
const sdk = await init ( {
10
10
client : {
11
- rpcUrl : dojoConfig . rpcUrl ,
12
11
toriiUrl : dojoConfig . toriiUrl ,
13
12
relayUrl : dojoConfig . relayUrl ,
14
13
worldAddress : dojoConfig . manifest . world . address ,
Original file line number Diff line number Diff line change @@ -12,12 +12,11 @@ import { dojoConfig } from "../dojoConfig";
12
12
import { setupWorld } from "./typescript/contracts.gen" ;
13
13
import { SchemaType } from "./typescript/models.gen" ;
14
14
15
- import { env , getRpcUrl } from "@/env" ;
15
+ import { env } from "@/env" ;
16
16
17
17
async function main ( ) {
18
18
const sdk = await init < SchemaType > ( {
19
19
client : {
20
- rpcUrl : getRpcUrl ( ) ,
21
20
toriiUrl : env . VITE_TORII_URL ,
22
21
relayUrl : env . VITE_RELAY_URL ,
23
22
worldAddress : dojoConfig . manifest . world . address ,
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ export const useDojoStore = createDojoStore<SchemaType>();
37
37
async function main ( ) {
38
38
const sdk = await init < SchemaType > ( {
39
39
client : {
40
- rpcUrl : dojoConfig . rpcUrl ,
41
40
toriiUrl : dojoConfig . toriiUrl ,
42
41
relayUrl : dojoConfig . relayUrl ,
43
42
worldAddress : dojoConfig . manifest . world . address ,
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export type SetupResult = Awaited<ReturnType<typeof setup>>;
15
15
export async function setup ( { ...config } : DojoConfig ) {
16
16
// Initialize Torii client for interacting with the Dojo network
17
17
const toriiClient = await torii . createClient ( {
18
- rpcUrl : config . rpcUrl ,
19
18
toriiUrl : config . toriiUrl ,
20
19
relayUrl : "" ,
21
20
worldAddress : config . manifest . world . address || "" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ export type SetupResult = Awaited<ReturnType<typeof setup>>;
13
13
export async function setup ( { ...config } : DojoConfig ) {
14
14
// torii client
15
15
const toriiClient = await torii . createClient ( {
16
- rpcUrl : config . rpcUrl ,
17
16
toriiUrl : config . toriiUrl ,
18
17
relayUrl : config . relayUrl ,
19
18
worldAddress : config . manifest . world . address || "" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export type SetupResult = Awaited<ReturnType<typeof setup>>;
15
15
export async function setup ( { ...config } : DojoConfig ) {
16
16
// torii client
17
17
const toriiClient = await torii . createClient ( {
18
- rpcUrl : config . rpcUrl ,
19
18
toriiUrl : config . toriiUrl ,
20
19
relayUrl : config . relayUrl ,
21
20
worldAddress : config . manifest . world . address || "" ,
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import StarknetProvider from "./starknet-provider.tsx";
22
22
async function main ( ) {
23
23
const sdk = await init < SchemaType > ( {
24
24
client : {
25
- rpcUrl : dojoConfig . rpcUrl ,
26
25
toriiUrl : dojoConfig . toriiUrl ,
27
26
relayUrl : dojoConfig . relayUrl ,
28
27
worldAddress : dojoConfig . manifest . world . address ,
You can’t perform that action at this time.
0 commit comments