Bid
type Bid = {  auctionId: string;  bidAmount: string;  bidAmountCurrencyValue: {    decimals: number;    displayValue: string;    name: string;    symbol: string;    value: BigNumber;  };  bidderAddress: string;  currencyContractAddress: string;};
The id of the auction.
type auctionId = string;
The amount of coins offered per token.
type bidAmount = string;
 The CurrencyValue  of the listing. Useful for displaying the price information.
type bidAmountCurrencyValue = {  decimals: number;  displayValue: string;  name: string;  symbol: string;  value: BigNumber;};
The address of the buyer who made the offer.
type bidderAddress = string;
The currency contract address of the offer token.
type currencyContractAddress = string;