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