@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
15 lines (14 loc) • 420 B
TypeScript
import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class GenerateCustodialAddressBatch extends PrivateKeyOrSignatureId {
chain: Currency;
batchCount: number;
owner: string;
nonce?: number;
fee?: Fee;
feeCurrency?: Currency;
from?: string;
feeLimit?: number;
feesCovered?: boolean;
}