@net-protocol/bazaar 0.1.6 → 0.1.7
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 +50 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +50 -11
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.mts +5 -4
- package/dist/react.d.ts +5 -4
- package/dist/react.js +52 -13
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +52 -13
- package/dist/react.mjs.map +1 -1
- package/dist/{types-BwfAmxpu.d.mts → types-5kMf461x.d.mts} +2 -2
- package/dist/{types-BwfAmxpu.d.ts → types-5kMf461x.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -234,8 +234,8 @@ interface CreateCollectionOfferParams {
|
|
|
234
234
|
* Options for fetching listings
|
|
235
235
|
*/
|
|
236
236
|
interface GetListingsOptions {
|
|
237
|
-
/** NFT collection address */
|
|
238
|
-
nftAddress
|
|
237
|
+
/** NFT collection address (optional - if omitted, fetches recent listings across all collections) */
|
|
238
|
+
nftAddress?: `0x${string}`;
|
|
239
239
|
/** Exclude listings from this address */
|
|
240
240
|
excludeMaker?: `0x${string}`;
|
|
241
241
|
/** Only include listings from this address */
|
|
@@ -234,8 +234,8 @@ interface CreateCollectionOfferParams {
|
|
|
234
234
|
* Options for fetching listings
|
|
235
235
|
*/
|
|
236
236
|
interface GetListingsOptions {
|
|
237
|
-
/** NFT collection address */
|
|
238
|
-
nftAddress
|
|
237
|
+
/** NFT collection address (optional - if omitted, fetches recent listings across all collections) */
|
|
238
|
+
nftAddress?: `0x${string}`;
|
|
239
239
|
/** Exclude listings from this address */
|
|
240
240
|
excludeMaker?: `0x${string}`;
|
|
241
241
|
/** Only include listings from this address */
|
package/package.json
CHANGED