@superfluid-finance/sdk-core
Version:
SDK Core for building with Superfluid Protocol
23 lines • 834 B
TypeScript
import * as Types from '../schema.generated';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type GetTokensQueryVariables = Types.Exact<{
where?: Types.Token_Filter;
skip?: Types.Scalars['Int']['input'];
first?: Types.Scalars['Int']['input'];
orderBy?: Types.Token_OrderBy;
orderDirection?: Types.OrderDirection;
}>;
export type GetTokensQuery = {
result: Array<{
id: string;
createdAtTimestamp: string;
createdAtBlockNumber: string;
name: string;
symbol: string;
isListed: boolean;
isNativeAssetSuperToken: boolean;
underlyingAddress: string;
}>;
};
export declare const GetTokensDocument: DocumentNode<GetTokensQuery, GetTokensQueryVariables>;
//# sourceMappingURL=getTokens.generated.d.ts.map