brk-client 0.3.1 → 0.3.3
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/index.js +10 -10
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5193,7 +5193,7 @@ function createTransferPattern(client, acc) {
|
|
|
5193
5193
|
* @property {SeriesTree_Investing} investing
|
|
5194
5194
|
* @property {SeriesTree_Market} market
|
|
5195
5195
|
* @property {SeriesTree_Pools} pools
|
|
5196
|
-
* @property {
|
|
5196
|
+
* @property {SeriesTree_Price} price
|
|
5197
5197
|
* @property {SeriesTree_Supply} supply
|
|
5198
5198
|
* @property {SeriesTree_Cohorts} cohorts
|
|
5199
5199
|
*/
|
|
@@ -6725,14 +6725,14 @@ function createTransferPattern(client, acc) {
|
|
|
6725
6725
|
*/
|
|
6726
6726
|
|
|
6727
6727
|
/**
|
|
6728
|
-
* @typedef {Object}
|
|
6729
|
-
* @property {
|
|
6730
|
-
* @property {
|
|
6731
|
-
* @property {
|
|
6728
|
+
* @typedef {Object} SeriesTree_Price
|
|
6729
|
+
* @property {SeriesTree_Price_Split} split
|
|
6730
|
+
* @property {SeriesTree_Price_Ohlc} ohlc
|
|
6731
|
+
* @property {SeriesTree_Price_Spot} spot
|
|
6732
6732
|
*/
|
|
6733
6733
|
|
|
6734
6734
|
/**
|
|
6735
|
-
* @typedef {Object}
|
|
6735
|
+
* @typedef {Object} SeriesTree_Price_Split
|
|
6736
6736
|
* @property {CentsSatsUsdPattern3} open
|
|
6737
6737
|
* @property {CentsSatsUsdPattern3} high
|
|
6738
6738
|
* @property {CentsSatsUsdPattern3} low
|
|
@@ -6740,14 +6740,14 @@ function createTransferPattern(client, acc) {
|
|
|
6740
6740
|
*/
|
|
6741
6741
|
|
|
6742
6742
|
/**
|
|
6743
|
-
* @typedef {Object}
|
|
6743
|
+
* @typedef {Object} SeriesTree_Price_Ohlc
|
|
6744
6744
|
* @property {SeriesPattern2<OHLCDollars>} usd
|
|
6745
6745
|
* @property {SeriesPattern2<OHLCCents>} cents
|
|
6746
6746
|
* @property {SeriesPattern2<OHLCSats>} sats
|
|
6747
6747
|
*/
|
|
6748
6748
|
|
|
6749
6749
|
/**
|
|
6750
|
-
* @typedef {Object}
|
|
6750
|
+
* @typedef {Object} SeriesTree_Price_Spot
|
|
6751
6751
|
* @property {SeriesPattern1<Dollars>} usd
|
|
6752
6752
|
* @property {SeriesPattern1<Cents>} cents
|
|
6753
6753
|
* @property {SeriesPattern1<Sats>} sats
|
|
@@ -7579,7 +7579,7 @@ function createTransferPattern(client, acc) {
|
|
|
7579
7579
|
* @extends BrkClientBase
|
|
7580
7580
|
*/
|
|
7581
7581
|
class BrkClient extends BrkClientBase {
|
|
7582
|
-
VERSION = "v0.3.
|
|
7582
|
+
VERSION = "v0.3.3";
|
|
7583
7583
|
|
|
7584
7584
|
INDEXES = /** @type {const} */ ([
|
|
7585
7585
|
"minute10",
|
|
@@ -9863,7 +9863,7 @@ class BrkClient extends BrkClientBase {
|
|
|
9863
9863
|
noderunners: createBlocksDominancePattern(this, 'noderunners'),
|
|
9864
9864
|
},
|
|
9865
9865
|
},
|
|
9866
|
-
|
|
9866
|
+
price: {
|
|
9867
9867
|
split: {
|
|
9868
9868
|
open: createCentsSatsUsdPattern3(this, 'price_open'),
|
|
9869
9869
|
high: createCentsSatsUsdPattern3(this, 'price_high'),
|
package/package.json
CHANGED