/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferErc20KMS = { /** * Sender account ID */ senderAccountId: string; /** * Blockchain address to send ERC20 token to */ address: string; /** * Amount to be sent. */ amount: string; /** * Compliance check, if withdrawal is not compliant, it will not be processed. */ compliant?: boolean; /** * ERC20 symbol. Required only for calls. */ currency?: string; /** * Gas limit for transaction in gas price. If not set, automatic calculation will be used. */ gasLimit?: string; /** * Gas price in Gwei. If not set, automatic calculation will be used. */ gasPrice?: string; /** * Identifier of the mnemonic / private key associated in signing application. * When hash identifies mnemonic, index must be present to represent specific account to pay from. * Private key, mnemonic or signature Id must be present. * */ signatureId: string; /** * Derivation index of sender address. */ index?: number; /** * Nonce to be set to Ethereum transaction. If not present, last known nonce will be used. */ nonce?: number; /** * Identifier of the payment, shown for created Transaction within Tatum sender account. */ paymentId?: string; /** * Note visible to owner of withdrawing account */ senderNote?: string; }