@net-protocol/bazaar 0.1.11 → 0.1.13
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 +21 -6
- package/dist/index.d.ts +21 -6
- package/dist/index.js +49 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +49 -9
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.mts +1 -1
- package/dist/react.d.ts +1 -1
- package/dist/react.js +48 -8
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +49 -9
- package/dist/react.mjs.map +1 -1
- package/dist/{types-DTYGArF-.d.mts → types-DC9OwxWx.d.mts} +4 -4
- package/dist/{types-DTYGArF-.d.ts → types-DC9OwxWx.d.ts} +4 -4
- package/package.json +1 -1
|
@@ -80,8 +80,8 @@ interface Erc20Offer {
|
|
|
80
80
|
pricePerTokenWei: bigint;
|
|
81
81
|
/** Total price in native currency (formatted) */
|
|
82
82
|
price: number;
|
|
83
|
-
/** Price per token in native currency (formatted) */
|
|
84
|
-
pricePerToken:
|
|
83
|
+
/** Price per token in native currency (formatted string for full decimal precision) */
|
|
84
|
+
pricePerToken: string;
|
|
85
85
|
/** Currency symbol (e.g., "eth", "hype") */
|
|
86
86
|
currency: string;
|
|
87
87
|
/** Expiration timestamp in seconds */
|
|
@@ -111,8 +111,8 @@ interface Erc20Listing {
|
|
|
111
111
|
pricePerTokenWei: bigint;
|
|
112
112
|
/** Total price in native currency (formatted) */
|
|
113
113
|
price: number;
|
|
114
|
-
/** Price per token in native currency (formatted) */
|
|
115
|
-
pricePerToken:
|
|
114
|
+
/** Price per token in native currency (formatted string for full decimal precision) */
|
|
115
|
+
pricePerToken: string;
|
|
116
116
|
/** Currency symbol (e.g., "eth", "hype") */
|
|
117
117
|
currency: string;
|
|
118
118
|
/** Expiration timestamp in seconds */
|
|
@@ -80,8 +80,8 @@ interface Erc20Offer {
|
|
|
80
80
|
pricePerTokenWei: bigint;
|
|
81
81
|
/** Total price in native currency (formatted) */
|
|
82
82
|
price: number;
|
|
83
|
-
/** Price per token in native currency (formatted) */
|
|
84
|
-
pricePerToken:
|
|
83
|
+
/** Price per token in native currency (formatted string for full decimal precision) */
|
|
84
|
+
pricePerToken: string;
|
|
85
85
|
/** Currency symbol (e.g., "eth", "hype") */
|
|
86
86
|
currency: string;
|
|
87
87
|
/** Expiration timestamp in seconds */
|
|
@@ -111,8 +111,8 @@ interface Erc20Listing {
|
|
|
111
111
|
pricePerTokenWei: bigint;
|
|
112
112
|
/** Total price in native currency (formatted) */
|
|
113
113
|
price: number;
|
|
114
|
-
/** Price per token in native currency (formatted) */
|
|
115
|
-
pricePerToken:
|
|
114
|
+
/** Price per token in native currency (formatted string for full decimal precision) */
|
|
115
|
+
pricePerToken: string;
|
|
116
116
|
/** Currency symbol (e.g., "eth", "hype") */
|
|
117
117
|
currency: string;
|
|
118
118
|
/** Expiration timestamp in seconds */
|
package/package.json
CHANGED