@superfluid-finance/sdk-core
Version:
SDK Core for building with Superfluid Protocol
35 lines • 1.2 kB
TypeScript
import * as Types from '../../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type StreamsQueryVariables = Types.Exact<{
first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
orderBy?: Types.InputMaybe<Types.Stream_OrderBy>;
orderDirection?: Types.InputMaybe<Types.OrderDirection>;
skip?: Types.InputMaybe<Types.Scalars['Int']['input']>;
where?: Types.InputMaybe<Types.Stream_Filter>;
block?: Types.InputMaybe<Types.Block_Height>;
}>;
export type StreamsQuery = {
streams: Array<{
createdAtBlockNumber: string;
createdAtTimestamp: string;
currentFlowRate: string;
id: string;
streamedUntilUpdatedAt: string;
updatedAtBlockNumber: string;
updatedAtTimestamp: string;
deposit: string;
userData: string;
receiver: {
id: string;
};
sender: {
id: string;
};
token: {
id: string;
symbol: string;
};
}>;
};
export declare const StreamsDocument: DocumentNode<StreamsQuery, StreamsQueryVariables>;
//# sourceMappingURL=streams.generated.d.ts.map