@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
14 lines (13 loc) • 391 B
TypeScript
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class ApproveNftTransfer extends PrivateKeyOrSignatureId {
contractAddress: string;
chain: Currency;
spender: string;
isErc721: boolean;
tokenId: string;
feeCurrency?: Currency;
fee?: Fee;
nonce?: number;
}