UNPKG

@superfluid-finance/sdk-core

Version:
35 lines 1.37 kB
import * as Types from '../../schema.generated'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type PoolDistributorsQueryVariables = Types.Exact<{ first?: Types.InputMaybe<Types.Scalars['Int']['input']>; skip?: Types.InputMaybe<Types.Scalars['Int']['input']>; orderBy?: Types.InputMaybe<Types.PoolDistributor_OrderBy>; orderDirection?: Types.InputMaybe<Types.OrderDirection>; where?: Types.InputMaybe<Types.PoolDistributor_Filter>; block?: Types.InputMaybe<Types.Block_Height>; }>; export type PoolDistributorsQuery = { poolDistributors: Array<{ createdAtTimestamp: string; createdAtBlockNumber: string; updatedAtTimestamp: string; updatedAtBlockNumber: string; totalBuffer: string; totalAmountInstantlyDistributedUntilUpdatedAt: string; totalAmountFlowedDistributedUntilUpdatedAt: string; totalAmountDistributedUntilUpdatedAt: string; id: string; flowRate: string; account: { id: string; }; pool: { id: string; token: { id: string; }; }; }>; }; export declare const PoolDistributorsDocument: DocumentNode<PoolDistributorsQuery, PoolDistributorsQueryVariables>; //# sourceMappingURL=poolDistributors.generated.d.ts.map