File tree Expand file tree Collapse file tree 4 files changed +2634
-3279
lines changed
Expand file tree Collapse file tree 4 files changed +2634
-3279
lines changed Original file line number Diff line number Diff line change 2525 },
2626 "dependencies" : {
2727 "@dojoengine/recs" : " 2.0.13" ,
28- "@dojoengine/torii-client" : " 1.0.0-alpha.20 " ,
28+ "@dojoengine/torii-client" : " workspace:* " ,
2929 "vitest" : " ^1.6.0"
3030 }
3131}
Original file line number Diff line number Diff line change @@ -122,7 +122,12 @@ export const getEntities = async <S extends Schema>(
122122 let continueFetching = true ;
123123
124124 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+ } ) ;
126131
127132 if ( logging ) console . log ( `Fetched ${ entities } entities` ) ;
128133
@@ -160,6 +165,7 @@ export const getEvents = async <S extends Schema>(
160165 limit,
161166 offset,
162167 clause,
168+ dont_include_hashed_keys : true ,
163169 } ) ;
164170
165171 if ( logging ) console . log ( "entities" , entities ) ;
@@ -226,6 +232,7 @@ export const getEntitiesQuery = async <S extends Schema>(
226232 limit,
227233 offset : cursor ,
228234 clause : clause || undefined ,
235+ dont_include_hashed_keys : true ,
229236 } ) ;
230237
231238 while ( continueFetching ) {
Original file line number Diff line number Diff line change 44set -ex
55
66# 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
88cd dojo.c
99
1010# Build for web (browser)
You can’t perform that action at this time.
0 commit comments