@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
17 lines (16 loc) • 506 B
TypeScript
import { ContractType } from './ContractType';
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class TransferFromCustodialAddress extends PrivateKeyOrSignatureId {
custodialAddress: string;
chain: Currency;
tokenAddress: string;
contractType: ContractType;
recipient: string;
amount: string;
tokenId: string;
nonce?: number;
fee?: Fee;
feeCurrency?: Currency;
}