@medialane/sdk 0.6.8 → 0.6.9
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/README.md +62 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -549,6 +549,8 @@ interface CreateListingIntentParams {
|
|
|
549
549
|
price: string;
|
|
550
550
|
endTime: number;
|
|
551
551
|
salt?: string;
|
|
552
|
+
/** Number of units to list — required for ERC-1155, omit for ERC-721. */
|
|
553
|
+
amount?: string;
|
|
552
554
|
}
|
|
553
555
|
interface MakeOfferIntentParams {
|
|
554
556
|
offerer: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -549,6 +549,8 @@ interface CreateListingIntentParams {
|
|
|
549
549
|
price: string;
|
|
550
550
|
endTime: number;
|
|
551
551
|
salt?: string;
|
|
552
|
+
/** Number of units to list — required for ERC-1155, omit for ERC-721. */
|
|
553
|
+
amount?: string;
|
|
552
554
|
}
|
|
553
555
|
interface MakeOfferIntentParams {
|
|
554
556
|
offerer: string;
|