UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

19 lines (18 loc) 494 B
import { Currency } from './Currency'; import { Fee } from './Fee'; import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId'; export declare class CreateAuction extends PrivateKeyOrSignatureId { contractAddress: string; chain: Currency; id: string; nftAddress: string; seller: string; erc20Address?: string; endedAt: number; tokenId: string; amount?: string; isErc721: boolean; nonce?: number; fee?: Fee; feeCurrency?: Currency; }