/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferKlay20Blockchain = { /** * Blockchain address to send ERC20 token to */ to: string; /** * Amount to be sent. */ amount: string; /** * Address of ERC20 token */ contractAddress: string; /** * Number of decimal points that ERC20 token has. */ digits: number; /** * Private key of sender address. Private key, or signature Id must be present. */ fromPrivateKey: string; /** * Nonce to be set to Klaytn transaction. If not present, last known nonce will be used. */ nonce?: number; /** * 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; }; }