nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
11 lines (10 loc) • 318 B
TypeScript
import type { AuctionHistoryStates } from './AuctionHistoryStates';
export type AuctionHistoryResultClass = {
txHash?: string | null;
bidAmount?: number;
created?: string;
state?: AuctionHistoryStates;
address?: string | null;
returnTxHash?: string | null;
signedAndSubmitted?: boolean;
};