@net-protocol/bazaar 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.mts +3 -3
- package/dist/react.d.ts +3 -3
- package/dist/react.js +4 -4
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +4 -4
- package/dist/react.mjs.map +1 -1
- package/dist/{types-DDHh9yJB.d.mts → types-CfGfQTJL.d.mts} +2 -2
- package/dist/{types-DDHh9yJB.d.ts → types-CfGfQTJL.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -253,8 +253,8 @@ interface GetListingsOptions {
|
|
|
253
253
|
* Options for fetching collection offers
|
|
254
254
|
*/
|
|
255
255
|
interface GetCollectionOffersOptions {
|
|
256
|
-
/** NFT collection address */
|
|
257
|
-
nftAddress
|
|
256
|
+
/** NFT collection address (optional - if omitted, fetches recent offers across all collections) */
|
|
257
|
+
nftAddress?: `0x${string}`;
|
|
258
258
|
/** Exclude offers from this address */
|
|
259
259
|
excludeMaker?: `0x${string}`;
|
|
260
260
|
/** Maximum number of messages to fetch (default: 100) */
|
|
@@ -253,8 +253,8 @@ interface GetListingsOptions {
|
|
|
253
253
|
* Options for fetching collection offers
|
|
254
254
|
*/
|
|
255
255
|
interface GetCollectionOffersOptions {
|
|
256
|
-
/** NFT collection address */
|
|
257
|
-
nftAddress
|
|
256
|
+
/** NFT collection address (optional - if omitted, fetches recent offers across all collections) */
|
|
257
|
+
nftAddress?: `0x${string}`;
|
|
258
258
|
/** Exclude offers from this address */
|
|
259
259
|
excludeMaker?: `0x${string}`;
|
|
260
260
|
/** Maximum number of messages to fetch (default: 100) */
|
package/package.json
CHANGED