UNPKG

@superfluid-finance/sdk-core

Version:
31 lines 1.18 kB
import * as Types from '../../schema.generated'; import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type FlowOperatorsQueryVariables = Types.Exact<{ first?: Types.InputMaybe<Types.Scalars['Int']['input']>; orderBy?: Types.InputMaybe<Types.FlowOperator_OrderBy>; orderDirection?: Types.InputMaybe<Types.OrderDirection>; skip?: Types.InputMaybe<Types.Scalars['Int']['input']>; where?: Types.InputMaybe<Types.FlowOperator_Filter>; block?: Types.InputMaybe<Types.Block_Height>; }>; export type FlowOperatorsQuery = { flowOperators: Array<{ id: string; createdAtTimestamp: string; createdAtBlockNumber: string; updatedAtBlockNumber: string; updatedAtTimestamp: string; flowOperator: string; flowRateAllowanceRemaining: string; permissions: number; allowance: string; sender: { id: string; }; token: { id: string; }; }>; }; export declare const FlowOperatorsDocument: DocumentNode<FlowOperatorsQuery, FlowOperatorsQueryVariables>; //# sourceMappingURL=flowOperators.generated.d.ts.map