@@ -88,6 +88,11 @@ export type AddUnconfirmedEventsOutput = {
8888 quoteToken ?: Maybe < QuoteToken > ;
8989} ;
9090
91+ export type AddUserAchievementInput = {
92+ quantity : Scalars [ 'Int' ] [ 'input' ] ;
93+ userId : Scalars [ 'String' ] [ 'input' ] ;
94+ } ;
95+
9196export enum AlertRecurrence {
9297 Indefinite = 'INDEFINITE' ,
9398 Once = 'ONCE'
@@ -127,6 +132,8 @@ export type BalancesInput = {
127132 cursor ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
128133 /** Optional token specifically request the balance for */
129134 filterToken ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
135+ /** If set to true, native tokens in the response, they will have the id: native:<networkId> */
136+ includeNative ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
130137 /** The ID of the wallet (`walletAddress:networkId`). */
131138 walletId : Scalars [ 'String' ] [ 'input' ] ;
132139} ;
@@ -765,6 +772,8 @@ export type EnhancedToken = {
765772 * @deprecated Use the TokenInfo type
766773 */
767774 explorerData ?: Maybe < ExplorerTokenData > ;
775+ /** Whether or not the token is freezable */
776+ freezable ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
768777 /** The ID of the token (`address:networkId`). */
769778 id : Scalars [ 'String' ] [ 'output' ] ;
770779 /**
@@ -786,6 +795,8 @@ export type EnhancedToken = {
786795 info ?: Maybe < TokenInfo > ;
787796 /** Whether the token has been flagged as a scam. */
788797 isScam ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
798+ /** Whether or not the token is mintable */
799+ mintable ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
789800 /** The token name. For example, `ApeCoin`. */
790801 name ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
791802 /** The network ID the token is deployed on. */
@@ -4368,6 +4379,7 @@ export type OnBarsUpdatedResponse = {
43684379export type OnPricesUpdatedInput = {
43694380 address : Scalars [ 'String' ] [ 'input' ] ;
43704381 networkId : Scalars [ 'Int' ] [ 'input' ] ;
4382+ sourcePairAddress ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
43714383} ;
43724384
43734385/** Response returned by `onBarsUpdated`. */
@@ -6503,6 +6515,10 @@ export type ReferralsPayoutData = {
65036515 tokenAmountPaid : Scalars [ 'String' ] [ 'output' ] ;
65046516} ;
65056517
6518+ export type RemoveUserAchievementInput = {
6519+ userId : Scalars [ 'String' ] [ 'input' ] ;
6520+ } ;
6521+
65066522/** Price data for each supported resolution. */
65076523export type ResolutionBarData = {
65086524 __typename ?: 'ResolutionBarData' ;
@@ -6991,6 +7007,7 @@ export type SubscriptionOnPairMetadataUpdatedArgs = {
69917007export type SubscriptionOnPriceUpdatedArgs = {
69927008 address ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
69937009 networkId ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
7010+ sourcePairAddress ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
69947011} ;
69957012
69967013
@@ -7380,6 +7397,8 @@ export type TokenFilters = {
73807397 change24 ?: InputMaybe < NumberFilter > ;
73817398 /** The unix timestamp for the creation of the token's first pair. */
73827399 createdAt ?: InputMaybe < NumberFilter > ;
7400+ /** The address of the creator of the token */
7401+ creatorAddress ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
73837402 /** The list of exchange contract addresses to filter by. */
73847403 exchangeAddress ?: InputMaybe < Array < InputMaybe < Scalars [ 'String' ] [ 'input' ] > > > ;
73857404 /** The list of exchange contract IDs to filter by. Applied in conjunction with `network` filter using an OR condition. When used together, the query returns results that match either the specified exchanges or the specified network. */
0 commit comments