/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type VerifySolanaNFTKMS = { /** * The blockchain to work with */ chain: 'SOL'; /** * The blockchain address of the NFT to verify */ nftAddress: string; /** * The blockchain address of the NFT collection where the NFT should be verified in. The collection must be a sized collection that was introduced in Version 1.3 of the Metaplex Token Metadata program. */ collectionAddress: string; /** * The blockchain address of the collection verifier on behalf of whom the transaction will be originated. The transaction fee will be paid from this address. */ from: string; /** * Identifier of the private key associated in signing application. Private key, or signature Id must be present. */ signatureId: string; }