@crypticdot/defituna-api 1.1.45 → 1.1.46
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -381,6 +381,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
381
381
|
priceChange24H: z.ZodNumber;
|
|
382
382
|
tickSpacing: z.ZodNumber;
|
|
383
383
|
feeRate: z.ZodNumber;
|
|
384
|
+
olpFeeRate: z.ZodNullable<z.ZodNumber>;
|
|
384
385
|
protocolFeeRate: z.ZodNumber;
|
|
385
386
|
liquidity: z.ZodBigInt;
|
|
386
387
|
sqrtPrice: z.ZodBigInt;
|
|
@@ -484,6 +485,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
484
485
|
priceChange24H: number;
|
|
485
486
|
tickSpacing: number;
|
|
486
487
|
feeRate: number;
|
|
488
|
+
olpFeeRate: number | null;
|
|
487
489
|
protocolFeeRate: number;
|
|
488
490
|
liquidity: bigint;
|
|
489
491
|
sqrtPrice: bigint;
|
|
@@ -519,6 +521,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
519
521
|
priceChange24H: number;
|
|
520
522
|
tickSpacing: number;
|
|
521
523
|
feeRate: number;
|
|
524
|
+
olpFeeRate: number | null;
|
|
522
525
|
protocolFeeRate: number;
|
|
523
526
|
liquidity: bigint;
|
|
524
527
|
sqrtPrice: bigint;
|
package/dist/index.d.ts
CHANGED
|
@@ -381,6 +381,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
381
381
|
priceChange24H: z.ZodNumber;
|
|
382
382
|
tickSpacing: z.ZodNumber;
|
|
383
383
|
feeRate: z.ZodNumber;
|
|
384
|
+
olpFeeRate: z.ZodNullable<z.ZodNumber>;
|
|
384
385
|
protocolFeeRate: z.ZodNumber;
|
|
385
386
|
liquidity: z.ZodBigInt;
|
|
386
387
|
sqrtPrice: z.ZodBigInt;
|
|
@@ -484,6 +485,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
484
485
|
priceChange24H: number;
|
|
485
486
|
tickSpacing: number;
|
|
486
487
|
feeRate: number;
|
|
488
|
+
olpFeeRate: number | null;
|
|
487
489
|
protocolFeeRate: number;
|
|
488
490
|
liquidity: bigint;
|
|
489
491
|
sqrtPrice: bigint;
|
|
@@ -519,6 +521,7 @@ declare const Pool$1: z.ZodObject<{
|
|
|
519
521
|
priceChange24H: number;
|
|
520
522
|
tickSpacing: number;
|
|
521
523
|
feeRate: number;
|
|
524
|
+
olpFeeRate: number | null;
|
|
522
525
|
protocolFeeRate: number;
|
|
523
526
|
liquidity: bigint;
|
|
524
527
|
sqrtPrice: bigint;
|
package/dist/index.js
CHANGED
|
@@ -247,6 +247,7 @@ var Pool = import_zod.z.object({
|
|
|
247
247
|
priceChange24H: import_zod.z.number(),
|
|
248
248
|
tickSpacing: import_zod.z.number(),
|
|
249
249
|
feeRate: import_zod.z.number(),
|
|
250
|
+
olpFeeRate: import_zod.z.nullable(import_zod.z.number()),
|
|
250
251
|
protocolFeeRate: import_zod.z.number(),
|
|
251
252
|
liquidity: import_zod.z.coerce.bigint(),
|
|
252
253
|
sqrtPrice: import_zod.z.coerce.bigint(),
|
package/dist/index.mjs
CHANGED