@superfluid-finance/sdk-core
Version:
SDK Core for building with Superfluid Protocol
17 lines • 579 B
TypeScript
import * as Types from '../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type MetaQueryVariables = Types.Exact<{
block?: Types.InputMaybe<Types.Block_Height>;
}>;
export type MetaQuery = {
_meta?: {
deployment: string;
hasIndexingErrors: boolean;
block: {
number: number;
hash?: string | undefined;
};
} | undefined;
};
export declare const MetaDocument: DocumentNode<MetaQuery, MetaQueryVariables>;
//# sourceMappingURL=meta.generated.d.ts.map