You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 8, 2023. It is now read-only.
exportinterfaceMakerOrder{isOrderAsk: boolean;// true --> ask / false --> bidsigner: string;// signer address of the maker ordercollection: string;// collection addressprice: BigNumberish;tokenId: BigNumberish;// id of the tokenamount: BigNumberish;// amount of tokens to sell/purchase (must be 1 for ERC721, 1+ for ERC1155)strategy: string;// strategy for trade execution (e.g., DutchAuction, StandardSaleForFixedPrice)currency: string;// currency addressnonce: BigNumberish;// order nonce (must be unique unless new maker order is meant to override existing one e.g., lower ask price)startTime: BigNumberish;// startTime in timestampendTime: BigNumberish;// endTime in timestampminPercentageToAsk: BigNumberish;params: any[];// params (e.g., price, target account for private sale)}
But its encoder function seems to be implemented bugly
Describe the bug
The
MakerOrder
is defined here:But its encoder function seems to be implemented bugly
MISSING the type check of
params: any[];
The text was updated successfully, but these errors were encountered: