/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type DeployErc721 = { /** * Name of the ERC721 token */ name: string; /** * Symbol of the ERC721 token */ symbol: string; /** * Private key of Ethereum account address, from which gas for deployment of ERC721 will be paid. 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; }; }