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
* Buy item for metadata bid should either be ERC721 or ERC1155 collection item
15
+
*/
16
+
buy: Array<AssetCollectionItem>;
17
+
/**
18
+
* Buy fees should only include maker marketplace fees and should be no more than two entries as more entires will incur more gas. It is best practice to have this as few as possible.
19
+
*/
20
+
fees: Array<Fee>;
21
+
/**
22
+
* Time after which the Order is considered expired
23
+
*/
24
+
end_at: string;
25
+
protocol_data: ProtocolData;
26
+
/**
27
+
* A random value added to the create Order request
28
+
*/
29
+
salt: string;
30
+
/**
31
+
* Sell item for metadata bid should be an ERC20 item
32
+
*/
33
+
sell: Array<ERC20Item>;
34
+
/**
35
+
* Digital signature generated by the user for the specific Order
36
+
*/
37
+
signature: string;
38
+
/**
39
+
* Time after which Order is considered active
40
+
*/
41
+
start_at: string;
42
+
/**
43
+
* The metadata_id (stack_id) that NFTs must have to fulfil this bid
0 commit comments