File tree 6 files changed +2636
-3281
lines changed
6 files changed +2636
-3281
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.0-alpha.12
23
+ - run : /home/runner/.config/.dojo/bin/dojoup -v v1.0.0-alpha.16
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 25
25
},
26
26
"dependencies" : {
27
27
"@dojoengine/recs" : " 2.0.13" ,
28
- "@dojoengine/torii-client" : " 1.0.0-alpha.20 " ,
28
+ "@dojoengine/torii-client" : " workspace:* " ,
29
29
"vitest" : " ^1.6.0"
30
30
}
31
31
}
Original file line number Diff line number Diff line change @@ -122,7 +122,12 @@ export const getEntities = async <S extends Schema>(
122
122
let continueFetching = true ;
123
123
124
124
while ( continueFetching ) {
125
- const entities = await client . getEntities ( { limit, offset, clause } ) ;
125
+ const entities = await client . getEntities ( {
126
+ limit,
127
+ offset,
128
+ clause,
129
+ dont_include_hashed_keys : true ,
130
+ } ) ;
126
131
127
132
if ( logging ) console . log ( `Fetched ${ entities } entities` ) ;
128
133
@@ -160,6 +165,7 @@ export const getEvents = async <S extends Schema>(
160
165
limit,
161
166
offset,
162
167
clause,
168
+ dont_include_hashed_keys : true ,
163
169
} ) ;
164
170
165
171
if ( logging ) console . log ( "entities" , entities ) ;
@@ -226,6 +232,7 @@ export const getEntitiesQuery = async <S extends Schema>(
226
232
limit,
227
233
offset : cursor ,
228
234
clause : clause || undefined ,
235
+ dont_include_hashed_keys : true ,
229
236
} ) ;
230
237
231
238
while ( continueFetching ) {
Original file line number Diff line number Diff line change 4
4
set -ex
5
5
6
6
# Clone the repository
7
- git clone --depth 1 https://github.com/dojoengine/dojo.c dojo.c
7
+ git clone --depth 1 --branch grpc-update https://github.com/dojoengine/dojo.c dojo.c
8
8
cd dojo.c
9
9
10
10
# Build for web (browser)
You can’t perform that action at this time.
0 commit comments