@superfluid-finance/sdk-core
Version:
SDK Core for building with Superfluid Protocol
39 lines • 1.57 kB
TypeScript
import * as Types from '../../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type TokenStatisticLogsQueryVariables = Types.Exact<{
first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
skip?: Types.InputMaybe<Types.Scalars['Int']['input']>;
orderBy?: Types.InputMaybe<Types.TokenStatisticLog_OrderBy>;
orderDirection?: Types.InputMaybe<Types.OrderDirection>;
where?: Types.InputMaybe<Types.TokenStatisticLog_Filter>;
block?: Types.InputMaybe<Types.Block_Height>;
}>;
export type TokenStatisticLogsQuery = {
tokenStatisticLogs: Array<{
id: string;
timestamp: string;
blockNumber: string;
transactionHash: string;
logIndex: string;
order: string;
triggeredByEventName: string;
totalNumberOfActiveStreams: number;
totalNumberOfClosedStreams: number;
totalNumberOfIndexes: number;
totalNumberOfActiveIndexes: number;
totalSubscriptionsWithUnits: number;
totalApprovedSubscriptions: number;
totalDeposit: string;
totalOutflowRate: string;
totalAmountStreamed: string;
totalAmountTransferred: string;
totalAmountDistributed: string;
totalSupply: string;
token: {
id: string;
symbol: string;
};
}>;
};
export declare const TokenStatisticLogsDocument: DocumentNode<TokenStatisticLogsQuery, TokenStatisticLogsQueryVariables>;
//# sourceMappingURL=tokenStatisticLogs.generated.d.ts.map