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