@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
12 lines (11 loc) • 348 B
TypeScript
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class UpdateAuctionFee extends PrivateKeyOrSignatureId {
contractAddress: string;
chain: Currency;
auctionFee: number;
nonce?: number;
fee?: Fee;
feeCurrency?: Currency;
}