/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type MintMultipleNftKMS = { /** * Chain to work with. */ chain: 'ETH' | 'MATIC' | 'KCS' | 'ONE' | 'KLAY' | 'BSC'; /** * Blockchain address to send NFT token to. */ to: Array; /** * ID of token to be created. */ tokenId: Array; /** * Metadata of the token. See https://eips.ethereum.org/EIPS/eip-721#specification for more details. */ url: Array; /** * List of addresses for every token, where royalty cashback for every transfer of this NFT will be send. Royalties are paid in native blockchain currency, ETH or BSC. */ authorAddresses?: Array>; /** * List of values for every token, which will be paid as a royalty for author of the NFT token with every token transfer. This is exact value in native blockhain currency. */ cashbackValues?: Array>; /** * Address of NFT token */ contractAddress: string; /** * If signatureId is mnemonic-based, this is the index to the specific address from that mnemonic. */ index?: number; /** * Identifier of the private key associated in signing application. Private key, or signature Id must be present. */ signatureId: string; /** * Nonce to be set to Ethereum 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 Gwei. */ gasPrice: string; }; }