@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
15 lines (14 loc) • 409 B
TypeScript
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class InvokeAuctionOperation extends PrivateKeyOrSignatureId {
contractAddress: string;
chain: Currency;
id: string;
bidValue: string;
amount: string;
bidder?: string;
nonce?: number;
fee?: Fee;
feeCurrency?: Currency;
}