File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @quest-chains/sdk" ,
33 "description" : " An SDK for building applications on top of Quest Chains" ,
4- "version" : " 0.2.8 " ,
4+ "version" : " 0.2.9 " ,
55 "license" : " GPL-3.0" ,
66 "main" : " dist/index.js" ,
77 "typings" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ export type UserBadges = {
66 name ?: string | null | undefined ;
77 description ?: string | null | undefined ;
88 imageUrl ?: string | null | undefined ;
9- tokenAddress ? : string | null | undefined ;
10- tokenId ? : string | null | undefined ;
11- questChain ? : {
9+ tokenAddress : string | null | undefined ;
10+ tokenId : string | null | undefined ;
11+ questChain : {
1212 address : string | null | undefined ;
13+ slug ?: string | null | undefined ;
1314 } ;
1415 } [ ] ;
1516 chainId : string ;
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ query BadgesForUser($address: ID!) {
117117 tokenId
118118 questChain {
119119 address
120+ slug
120121 }
121122 }
122123 }
You can’t perform that action at this time.
0 commit comments