UNPKG

client-aftermath-ts-sdk

Version:
36 lines 753 B
import { SuiAddress, Timestamp } from "../../types"; export interface RateLimit { p: string; m: { GET: { l: number; }; } | { POST: { l: number; }; } | { GET: { l: number; }; POST: { l: number; }; }; } export interface ApiCreateAuthAccountBody { walletAddress: SuiAddress; signature: string; serializedJson: string; } export interface ApiGetAccessTokenBody { walletAddress: SuiAddress; signature: string; serializedJson: string; } export interface ApiGetAccessTokenResponse { accessToken: string; header: string; expirationTimestamp: Timestamp; } //# sourceMappingURL=authTypes.d.ts.map