@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 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
@@ -212,6 +212,7 @@ var Pool = z.object({
212
212
  priceChange24H: z.number(),
213
213
  tickSpacing: z.number(),
214
214
  feeRate: z.number(),
215
+ olpFeeRate: z.nullable(z.number()),
215
216
  protocolFeeRate: z.number(),
216
217
  liquidity: z.coerce.bigint(),
217
218
  sqrtPrice: z.coerce.bigint(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crypticdot/defituna-api",
3
- "version": "1.1.45",
3
+ "version": "1.1.46",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",