@superfluid-finance/sdk-core
Version:
SDK Core for building with Superfluid Protocol
40 lines • 1.38 kB
TypeScript
import * as Types from '../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type GetIndexesQueryVariables = Types.Exact<{
where?: Types.Index_Filter;
skip?: Types.Scalars['Int']['input'];
first?: Types.Scalars['Int']['input'];
orderBy?: Types.Index_OrderBy;
orderDirection?: Types.OrderDirection;
}>;
export type GetIndexesQuery = {
result: Array<{
id: string;
createdAtTimestamp: string;
createdAtBlockNumber: string;
updatedAtTimestamp: string;
updatedAtBlockNumber: string;
indexId: string;
indexValue: string;
totalSubscriptionsWithUnits: number;
totalUnitsPending: string;
totalUnitsApproved: string;
totalUnits: string;
totalAmountDistributedUntilUpdatedAt: string;
token: {
id: string;
createdAtTimestamp: string;
createdAtBlockNumber: string;
name: string;
symbol: string;
isListed: boolean;
isNativeAssetSuperToken: boolean;
underlyingAddress: string;
};
publisher: {
id: string;
};
}>;
};
export declare const GetIndexesDocument: DocumentNode<GetIndexesQuery, GetIndexesQueryVariables>;
//# sourceMappingURL=getIndexes.generated.d.ts.map