@cubexch/client
Advanced tools
Comparing version 1.1.20 to 1.1.21
@@ -251,9 +251,9 @@ export declare const protobufPackage = "market_data"; | ||
/** 24h open price */ | ||
open: bigint; | ||
open?: bigint | undefined; | ||
/** Latest price */ | ||
close: bigint; | ||
close?: bigint | undefined; | ||
/** 24h low price */ | ||
low: bigint; | ||
low?: bigint | undefined; | ||
/** 24h high price */ | ||
high: bigint; | ||
high?: bigint | undefined; | ||
/** Low 64-bits of the base quantity traded */ | ||
@@ -274,9 +274,9 @@ baseVolumeLo: bigint; | ||
/** Kline open price. */ | ||
open: bigint; | ||
open?: bigint | undefined; | ||
/** Kline close price. */ | ||
close: bigint; | ||
close?: bigint | undefined; | ||
/** Kline high price. */ | ||
high: bigint; | ||
high?: bigint | undefined; | ||
/** Kline low price. */ | ||
low: bigint; | ||
low?: bigint | undefined; | ||
/** Low 64-bits of the base quantity traded. */ | ||
@@ -317,13 +317,13 @@ volumeLo: bigint; | ||
/** The best bid price. */ | ||
bidPrice: bigint; | ||
bidPrice?: bigint | undefined; | ||
/** The total bid quantity at the best bid price. */ | ||
bidQuantity: bigint; | ||
bidQuantity?: bigint | undefined; | ||
/** The best ask price. */ | ||
askPrice: bigint; | ||
askPrice?: bigint | undefined; | ||
/** The total ask quantity at the best ask price. */ | ||
askQuantity: bigint; | ||
askQuantity?: bigint | undefined; | ||
/** The last trade price. */ | ||
lastPrice: bigint; | ||
lastPrice?: bigint | undefined; | ||
/** The 24h open price. */ | ||
rolling24hPrice: bigint; | ||
rolling24hPrice?: bigint | undefined; | ||
} | ||
@@ -330,0 +330,0 @@ /** |
{ | ||
"name": "@cubexch/client", | ||
"version": "1.1.20", | ||
"version": "1.1.21", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "build": "tsc" |
Sorry, the diff of this file is too big to display
397213