UNPKG

@superfluid-finance/sdk-core

Version:
30 lines 1.37 kB
import * as Types from '../../schema.generated'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type TokenStatisticsQueryVariables = Types.Exact<{ first?: Types.InputMaybe<Types.Scalars['Int']['input']>; orderBy?: Types.InputMaybe<Types.TokenStatistic_OrderBy>; orderDirection?: Types.InputMaybe<Types.OrderDirection>; skip?: Types.InputMaybe<Types.Scalars['Int']['input']>; where?: Types.InputMaybe<Types.TokenStatistic_Filter>; block?: Types.InputMaybe<Types.Block_Height>; }>; export type TokenStatisticsQuery = { tokenStatistics: Array<{ id: string; totalAmountDistributedUntilUpdatedAt: string; totalAmountStreamedUntilUpdatedAt: string; totalAmountTransferredUntilUpdatedAt: string; totalApprovedSubscriptions: number; totalNumberOfActiveIndexes: number; totalNumberOfActiveStreams: number; totalNumberOfIndexes: number; totalNumberOfClosedStreams: number; totalOutflowRate: string; totalSubscriptionsWithUnits: number; totalSupply: string; updatedAtTimestamp: string; updatedAtBlockNumber: string; }>; }; export declare const TokenStatisticsDocument: DocumentNode<TokenStatisticsQuery, TokenStatisticsQueryVariables>; //# sourceMappingURL=tokenStatistics.generated.d.ts.map