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