Skip to content

Commit

Permalink
return tokeninfo for user badges
Browse files Browse the repository at this point in the history
  • Loading branch information
dan13ram committed Mar 2, 2023
1 parent 6c71b32 commit 085ccc7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@quest-chains/sdk",
"description": "An SDK for building applications on top of Quest Chains",
"version": "0.2.7",
"version": "0.2.8",
"license": "GPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/badgesForUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export type UserBadges = {
name?: string | null | undefined;
description?: string | null | undefined;
imageUrl?: string | null | undefined;
tokenAddress?: string | null | undefined;
tokenId?: string | null | undefined;
questChain?: {
address: string | null | undefined;
};
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ query BadgesForUser($address: ID!) {
name
description
imageUrl
tokenAddress
tokenId
questChain {
address
}
Expand Down

0 comments on commit 085ccc7

Please sign in to comment.