/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type BurnNft = { /** * Chain to work with. */ chain: 'ETH' | 'MATIC' | 'KCS' | 'ONE' | 'KLAY' | 'BSC' | 'ALGO'; /** * ID of token to be destroyed. */ tokenId: string; /** * Address of NFT token */ contractAddress: string; /** * Private key of sender address. Private key, or signature Id must be present. */ fromPrivateKey: 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; }; }