/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferNftAlgoKMS = { /** * Chain to work with. */ chain: 'ALGO'; /** * Blockchain address to send NFT token from */ from: string; /** * Blockchain address to send NFT token to */ to: string; /** * AssetID of token. */ contractAddress: string; /** * Identifier of the private key associated in signing application. Private key, or signature Id must be present. */ signatureId: string; }