/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type ChainTransferAlgoErc20 = { /** * Chain to work with. */ chain: 'ALGO'; /** * Blockchain address to send ERC20 token to */ to: string; /** * Amount to be sent. */ amount: string; /** * assetIndex - asset index uniquely specifying the asset */ contractAddress: string; /** * Private key of sender address. Private key, or signature Id must be present. */ fromPrivateKey: string; }