/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferKlaytnBlockchain = { /** * Additional data, that can be passed to blockchain transaction as data property. Only for KLAY transactions. */ data?: string; /** * Nonce to be set to Klaytn transaction. If not present, last known nonce will be used. */ nonce?: number; /** * Blockchain address to send assets */ to: string; /** * Currency to transfer from Klaytn Blockchain Account. ERC20 tokens USDC and USDT are available only for mainnet use. */ currency: 'KLAY' | 'USDC_KLAY' | 'USDT_KLAY'; /** * Custom defined fee. If not present, it will be calculated automatically. */ fee?: { /** * Gas limit for transaction in gas price. */ gasLimit: string; /** * Gas price in Gpeb. */ gasPrice: string; }; /** * Amount to be sent in Ether. */ amount: string; /** * Private key of sender address. Private key, or signature Id must be present. */ fromPrivateKey: string; }