Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
167 changes: 166 additions & 1 deletion src/resources/graphql.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "firstHeldTimestamp",
"description": "The time that this address first held a token",
"args": [],
"type": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "shiftedBalance",
"description": "The balance held by the wallet, adjusted by the number of decimals in the token.",
Expand Down Expand Up @@ -2187,6 +2199,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "publishingType",
"description": null,
"type": {
"kind": "ENUM",
"name": "PublishingType",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "retrySettings",
"description": null,
Expand Down Expand Up @@ -2361,6 +2385,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "publishingType",
"description": null,
"type": {
"kind": "ENUM",
"name": "PublishingType",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "retrySettings",
"description": null,
Expand Down Expand Up @@ -2535,6 +2571,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "publishingType",
"description": null,
"type": {
"kind": "ENUM",
"name": "PublishingType",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "retrySettings",
"description": null,
Expand Down Expand Up @@ -2709,6 +2757,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "publishingType",
"description": null,
"type": {
"kind": "ENUM",
"name": "PublishingType",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "retrySettings",
"description": null,
Expand Down Expand Up @@ -7611,6 +7671,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "sort",
"description": "The attribute to sort the list on",
"type": {
"kind": "INPUT_OBJECT",
"name": "HoldersInputSort",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "tokenId",
"description": "The ID of the token (`tokenAddress:networkId`).",
Expand All @@ -7632,6 +7704,41 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
"name": "HoldersInputSort",
"description": null,
"fields": null,
"inputFields": [
{
"name": "attribute",
"description": "The attribute to sort the list on",
"type": {
"kind": "ENUM",
"name": "HoldersSortAttribute",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "direction",
"description": "The direction to apply to the ranking attribute.",
"type": {
"kind": "ENUM",
"name": "RankingDirection",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "HoldersResponse",
Expand Down Expand Up @@ -7711,6 +7818,29 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
"name": "HoldersSortAttribute",
"description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
"name": "BALANCE",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "DATE",
"description": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"possibleTypes": null
},
{
"kind": "ENUM",
"name": "HoldersStatus",
Expand Down Expand Up @@ -33240,6 +33370,29 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
"name": "PublishingType",
"description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
"name": "BATCH",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "SINGLE",
"description": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "Query",
Expand Down Expand Up @@ -43300,7 +43453,7 @@
},
{
"name": "marketCap",
"description": "The market cap of circulating supply.",
"description": "The fully diluted market cap. For circulating market cap multiply `token { info { circulatingSupply } }` by `priceUSD`.",
"args": [],
"type": {
"kind": "SCALAR",
Expand Down Expand Up @@ -46930,6 +47083,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "publishingType",
"description": null,
"args": [],
"type": {
"kind": "ENUM",
"name": "PublishingType",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "retrySettings",
"description": null,
Expand Down
28 changes: 27 additions & 1 deletion src/resources/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ export type Balance = {
__typename?: 'Balance';
/** The balance held by the wallet. */
balance: Scalars['String']['output'];
/** The time that this address first held a token */
firstHeldTimestamp?: Maybe<Scalars['Int']['output']>;
/** The balance held by the wallet, adjusted by the number of decimals in the token. */
shiftedBalance: Scalars['Float']['output'];
/** The ID of the token (`tokenAddress:networkId`). */
Expand Down Expand Up @@ -359,6 +361,7 @@ export type CreateNftEventWebhookArgs = {
conditions: NftEventWebhookConditionInput;
groupId?: InputMaybe<Scalars['String']['input']>;
name: Scalars['String']['input'];
publishingType?: InputMaybe<PublishingType>;
retrySettings?: InputMaybe<RetrySettingsInput>;
securityToken: Scalars['String']['input'];
};
Expand All @@ -375,6 +378,7 @@ export type CreatePriceWebhookArgs = {
conditions: PriceEventWebhookConditionInput;
groupId?: InputMaybe<Scalars['String']['input']>;
name: Scalars['String']['input'];
publishingType?: InputMaybe<PublishingType>;
retrySettings?: InputMaybe<RetrySettingsInput>;
securityToken: Scalars['String']['input'];
};
Expand All @@ -391,6 +395,7 @@ export type CreateRawTransactionWebhookArgs = {
conditions: RawTransactionWebhookConditionInput;
groupId?: InputMaybe<Scalars['String']['input']>;
name: Scalars['String']['input'];
publishingType?: InputMaybe<PublishingType>;
retrySettings?: InputMaybe<RetrySettingsInput>;
securityToken: Scalars['String']['input'];
};
Expand All @@ -407,6 +412,7 @@ export type CreateTokenPairEventWebhookArgs = {
conditions: TokenPairEventWebhookConditionInput;
groupId?: InputMaybe<Scalars['String']['input']>;
name: Scalars['String']['input'];
publishingType?: InputMaybe<PublishingType>;
retrySettings?: InputMaybe<RetrySettingsInput>;
securityToken: Scalars['String']['input'];
};
Expand Down Expand Up @@ -1260,10 +1266,19 @@ export enum GraphQlNftPoolVariant {
export type HoldersInput = {
/** A cursor for use in pagination. */
cursor?: InputMaybe<Scalars['String']['input']>;
/** The attribute to sort the list on */
sort?: InputMaybe<HoldersInputSort>;
/** The ID of the token (`tokenAddress:networkId`). */
tokenId: Scalars['String']['input'];
};

export type HoldersInputSort = {
/** The attribute to sort the list on */
attribute?: InputMaybe<HoldersSortAttribute>;
/** The direction to apply to the ranking attribute. */
direction?: InputMaybe<RankingDirection>;
};

export type HoldersResponse = {
__typename?: 'HoldersResponse';
/** the unique count of holders for the token. */
Expand All @@ -1276,6 +1291,11 @@ export type HoldersResponse = {
status: HoldersStatus;
};

export enum HoldersSortAttribute {
Balance = 'BALANCE',
Date = 'DATE'
}

export enum HoldersStatus {
Disabled = 'DISABLED',
Enabled = 'ENABLED'
Expand Down Expand Up @@ -5566,6 +5586,11 @@ export type PrimePoolWithdrawData = {
userPrimeRewardDebt: Scalars['String']['output'];
};

export enum PublishingType {
Batch = 'BATCH',
Single = 'SINGLE'
}

export type Query = {
__typename?: 'Query';
/** Get the active short-lived api token for this api key by the short-lived token */
Expand Down Expand Up @@ -7038,7 +7063,7 @@ export type TokenFilterResult = {
low12?: Maybe<Scalars['String']['output']>;
/** The lowest price in USD in the past 24 hours. */
low24?: Maybe<Scalars['String']['output']>;
/** The market cap of circulating supply. */
/** The fully diluted market cap. For circulating market cap multiply `token { info { circulatingSupply } }` by `priceUSD`. */
marketCap?: Maybe<Scalars['String']['output']>;
/** Metadata for the token's top pair. */
pair?: Maybe<Pair>;
Expand Down Expand Up @@ -7629,6 +7654,7 @@ export type Webhook = {
groupId?: Maybe<Scalars['String']['output']>;
id: Scalars['String']['output'];
name: Scalars['String']['output'];
publishingType?: Maybe<PublishingType>;
retrySettings?: Maybe<RetrySettings>;
status: Scalars['String']['output'];
webhookType: WebhookType;
Expand Down
Loading