/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type BidOnAuction = { /** * Blockchain to work with. */ chain: 'ETH' | 'ONE' | 'BSC' | 'KLAY' | 'MATIC'; /** * Address of the marketplace smart contract. */ contractAddress: string; /** * Optional address of the ERC20 token, which will be used as a selling currency of the NFT. */ erc20Address?: string; /** * In case of the ERC20 auction, it's possible to bid on behalf of someone else. This value is the address of the bidder, which should approve spending of the ERC20 tokens for the Auction contract. This could be used for a bidding from the custodial wallet address. */ bidder?: string; /** * ID of the auction. */ id: string; /** * Amount of the assets to be bid. This must include auction fee. */ bidValue?: 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; }; }