brk-client 0.3.0-beta.4 → 0.3.0-beta.5

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.
Files changed (2) hide show
  1. package/index.js +185 -49
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2303,6 +2303,20 @@ function createAverageBaseCumulativeMaxMedianMinPct10Pct25Pct75Pct90SumPattern(c
2303
2303
  };
2304
2304
  }
2305
2305
 
2306
+ /**
2307
+ * @typedef {Object} AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshSharePattern
2308
+ * @property {BtcCentsSatsUsdPattern} all
2309
+ * @property {BtcCentsSatsUsdPattern} p2a
2310
+ * @property {BtcCentsSatsUsdPattern} p2pk33
2311
+ * @property {BtcCentsSatsUsdPattern} p2pk65
2312
+ * @property {BtcCentsSatsUsdPattern} p2pkh
2313
+ * @property {BtcCentsSatsUsdPattern} p2sh
2314
+ * @property {BtcCentsSatsUsdPattern} p2tr
2315
+ * @property {BtcCentsSatsUsdPattern} p2wpkh
2316
+ * @property {BtcCentsSatsUsdPattern} p2wsh
2317
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5} share
2318
+ */
2319
+
2306
2320
  /**
2307
2321
  * @typedef {Object} IndexPct0Pct1Pct2Pct5Pct95Pct98Pct99ScorePattern
2308
2322
  * @property {SeriesPattern1<StoredI8>} index
@@ -2371,6 +2385,39 @@ function createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6(client, acc) {
2371
2385
  };
2372
2386
  }
2373
2387
 
2388
+ /**
2389
+ * @typedef {Object} AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5
2390
+ * @property {BpsPercentRatioPattern2} all
2391
+ * @property {BpsPercentRatioPattern2} p2a
2392
+ * @property {BpsPercentRatioPattern2} p2pk33
2393
+ * @property {BpsPercentRatioPattern2} p2pk65
2394
+ * @property {BpsPercentRatioPattern2} p2pkh
2395
+ * @property {BpsPercentRatioPattern2} p2sh
2396
+ * @property {BpsPercentRatioPattern2} p2tr
2397
+ * @property {BpsPercentRatioPattern2} p2wpkh
2398
+ * @property {BpsPercentRatioPattern2} p2wsh
2399
+ */
2400
+
2401
+ /**
2402
+ * Create a AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5 pattern node
2403
+ * @param {BrkClientBase} client
2404
+ * @param {string} acc - Accumulated series name
2405
+ * @returns {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5}
2406
+ */
2407
+ function createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5(client, acc) {
2408
+ return {
2409
+ all: createBpsPercentRatioPattern2(client, acc),
2410
+ p2a: createBpsPercentRatioPattern2(client, _p('p2a', acc)),
2411
+ p2pk33: createBpsPercentRatioPattern2(client, _p('p2pk33', acc)),
2412
+ p2pk65: createBpsPercentRatioPattern2(client, _p('p2pk65', acc)),
2413
+ p2pkh: createBpsPercentRatioPattern2(client, _p('p2pkh', acc)),
2414
+ p2sh: createBpsPercentRatioPattern2(client, _p('p2sh', acc)),
2415
+ p2tr: createBpsPercentRatioPattern2(client, _p('p2tr', acc)),
2416
+ p2wpkh: createBpsPercentRatioPattern2(client, _p('p2wpkh', acc)),
2417
+ p2wsh: createBpsPercentRatioPattern2(client, _p('p2wsh', acc)),
2418
+ };
2419
+ }
2420
+
2374
2421
  /**
2375
2422
  * @typedef {Object} AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern4
2376
2423
  * @property {SeriesPattern1<StoredU64>} all
@@ -2604,6 +2651,17 @@ function create_1m1w1y24hBpsPercentRatioPattern(client, acc) {
2604
2651
  };
2605
2652
  }
2606
2653
 
2654
+ /**
2655
+ * @typedef {Object} ActiveInputOutputSpendablePattern
2656
+ * @property {_1m1w1y24hBlockPattern} activeReusedAddrCount
2657
+ * @property {_1m1w1y24hBlockPattern2} activeReusedAddrShare
2658
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} inputFromReusedAddrCount
2659
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7} inputFromReusedAddrShare
2660
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} outputToReusedAddrCount
2661
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7} outputToReusedAddrShare
2662
+ * @property {_1m1w1y24hBpsPercentRatioPattern} spendableOutputToReusedAddrShare
2663
+ */
2664
+
2607
2665
  /**
2608
2666
  * @typedef {Object} CapLossMvrvNetPriceProfitSoprPattern
2609
2667
  * @property {CentsDeltaUsdPattern} cap
@@ -2911,6 +2969,31 @@ function createDeltaDominanceHalfInTotalPattern(client, acc) {
2911
2969
  };
2912
2970
  }
2913
2971
 
2972
+ /**
2973
+ * @typedef {Object} _1m1w1y24hBlockPattern2
2974
+ * @property {SeriesPattern1<StoredF32>} _1m
2975
+ * @property {SeriesPattern1<StoredF32>} _1w
2976
+ * @property {SeriesPattern1<StoredF32>} _1y
2977
+ * @property {SeriesPattern1<StoredF32>} _24h
2978
+ * @property {SeriesPattern18<StoredF32>} block
2979
+ */
2980
+
2981
+ /**
2982
+ * Create a _1m1w1y24hBlockPattern2 pattern node
2983
+ * @param {BrkClientBase} client
2984
+ * @param {string} acc - Accumulated series name
2985
+ * @returns {_1m1w1y24hBlockPattern2}
2986
+ */
2987
+ function create_1m1w1y24hBlockPattern2(client, acc) {
2988
+ return {
2989
+ _1m: createSeriesPattern1(client, _m(acc, 'average_1m')),
2990
+ _1w: createSeriesPattern1(client, _m(acc, 'average_1w')),
2991
+ _1y: createSeriesPattern1(client, _m(acc, 'average_1y')),
2992
+ _24h: createSeriesPattern1(client, _m(acc, 'average_24h')),
2993
+ block: createSeriesPattern18(client, acc),
2994
+ };
2995
+ }
2996
+
2914
2997
  /**
2915
2998
  * @typedef {Object} _1m1w1y24hBlockPattern
2916
2999
  * @property {SeriesPattern1<StoredF32>} _1m
@@ -3991,6 +4074,13 @@ function createCentsSatsUsdPattern(client, acc) {
3991
4074
  };
3992
4075
  }
3993
4076
 
4077
+ /**
4078
+ * @typedef {Object} CountEventsSupplyPattern
4079
+ * @property {FundedTotalPattern} count
4080
+ * @property {ActiveInputOutputSpendablePattern} events
4081
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshSharePattern} supply
4082
+ */
4083
+
3994
4084
  /**
3995
4085
  * @typedef {Object} CumulativeRollingSumPattern
3996
4086
  * @property {SeriesPattern1<StoredU64>} cumulative
@@ -5113,6 +5203,7 @@ function createTransferPattern(client, acc) {
5113
5203
  * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern4} total
5114
5204
  * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} new
5115
5205
  * @property {SeriesTree_Addrs_Reused} reused
5206
+ * @property {SeriesTree_Addrs_Respent} respent
5116
5207
  * @property {SeriesTree_Addrs_Exposed} exposed
5117
5208
  * @property {SeriesTree_Addrs_Delta} delta
5118
5209
  * @property {SeriesTree_Addrs_AvgAmount} avgAmount
@@ -5224,6 +5315,7 @@ function createTransferPattern(client, acc) {
5224
5315
  * @typedef {Object} SeriesTree_Addrs_Reused
5225
5316
  * @property {FundedTotalPattern} count
5226
5317
  * @property {SeriesTree_Addrs_Reused_Events} events
5318
+ * @property {SeriesTree_Addrs_Reused_Supply} supply
5227
5319
  */
5228
5320
 
5229
5321
  /**
@@ -5234,26 +5326,43 @@ function createTransferPattern(client, acc) {
5234
5326
  * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} inputFromReusedAddrCount
5235
5327
  * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7} inputFromReusedAddrShare
5236
5328
  * @property {_1m1w1y24hBlockPattern} activeReusedAddrCount
5237
- * @property {SeriesTree_Addrs_Reused_Events_ActiveReusedAddrShare} activeReusedAddrShare
5329
+ * @property {_1m1w1y24hBlockPattern2} activeReusedAddrShare
5238
5330
  */
5239
5331
 
5240
5332
  /**
5241
- * @typedef {Object} SeriesTree_Addrs_Reused_Events_ActiveReusedAddrShare
5242
- * @property {SeriesPattern18<StoredF32>} block
5243
- * @property {SeriesPattern1<StoredF32>} _24h
5244
- * @property {SeriesPattern1<StoredF32>} _1w
5245
- * @property {SeriesPattern1<StoredF32>} _1m
5246
- * @property {SeriesPattern1<StoredF32>} _1y
5333
+ * @typedef {Object} SeriesTree_Addrs_Reused_Supply
5334
+ * @property {BtcCentsSatsUsdPattern} all
5335
+ * @property {BtcCentsSatsUsdPattern} p2pk65
5336
+ * @property {BtcCentsSatsUsdPattern} p2pk33
5337
+ * @property {BtcCentsSatsUsdPattern} p2pkh
5338
+ * @property {BtcCentsSatsUsdPattern} p2sh
5339
+ * @property {BtcCentsSatsUsdPattern} p2wpkh
5340
+ * @property {BtcCentsSatsUsdPattern} p2wsh
5341
+ * @property {BtcCentsSatsUsdPattern} p2tr
5342
+ * @property {BtcCentsSatsUsdPattern} p2a
5343
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5} share
5247
5344
  */
5248
5345
 
5249
5346
  /**
5250
- * @typedef {Object} SeriesTree_Addrs_Exposed
5347
+ * @typedef {Object} SeriesTree_Addrs_Respent
5251
5348
  * @property {FundedTotalPattern} count
5252
- * @property {SeriesTree_Addrs_Exposed_Supply} supply
5349
+ * @property {SeriesTree_Addrs_Respent_Events} events
5350
+ * @property {SeriesTree_Addrs_Respent_Supply} supply
5253
5351
  */
5254
5352
 
5255
5353
  /**
5256
- * @typedef {Object} SeriesTree_Addrs_Exposed_Supply
5354
+ * @typedef {Object} SeriesTree_Addrs_Respent_Events
5355
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} outputToReusedAddrCount
5356
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7} outputToReusedAddrShare
5357
+ * @property {_1m1w1y24hBpsPercentRatioPattern} spendableOutputToReusedAddrShare
5358
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6} inputFromReusedAddrCount
5359
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7} inputFromReusedAddrShare
5360
+ * @property {_1m1w1y24hBlockPattern} activeReusedAddrCount
5361
+ * @property {_1m1w1y24hBlockPattern2} activeReusedAddrShare
5362
+ */
5363
+
5364
+ /**
5365
+ * @typedef {Object} SeriesTree_Addrs_Respent_Supply
5257
5366
  * @property {BtcCentsSatsUsdPattern} all
5258
5367
  * @property {BtcCentsSatsUsdPattern} p2pk65
5259
5368
  * @property {BtcCentsSatsUsdPattern} p2pk33
@@ -5263,20 +5372,27 @@ function createTransferPattern(client, acc) {
5263
5372
  * @property {BtcCentsSatsUsdPattern} p2wsh
5264
5373
  * @property {BtcCentsSatsUsdPattern} p2tr
5265
5374
  * @property {BtcCentsSatsUsdPattern} p2a
5266
- * @property {SeriesTree_Addrs_Exposed_Supply_Share} share
5375
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5} share
5267
5376
  */
5268
5377
 
5269
5378
  /**
5270
- * @typedef {Object} SeriesTree_Addrs_Exposed_Supply_Share
5271
- * @property {BpsPercentRatioPattern2} all
5272
- * @property {BpsPercentRatioPattern2} p2pk65
5273
- * @property {BpsPercentRatioPattern2} p2pk33
5274
- * @property {BpsPercentRatioPattern2} p2pkh
5275
- * @property {BpsPercentRatioPattern2} p2sh
5276
- * @property {BpsPercentRatioPattern2} p2wpkh
5277
- * @property {BpsPercentRatioPattern2} p2wsh
5278
- * @property {BpsPercentRatioPattern2} p2tr
5279
- * @property {BpsPercentRatioPattern2} p2a
5379
+ * @typedef {Object} SeriesTree_Addrs_Exposed
5380
+ * @property {FundedTotalPattern} count
5381
+ * @property {SeriesTree_Addrs_Exposed_Supply} supply
5382
+ */
5383
+
5384
+ /**
5385
+ * @typedef {Object} SeriesTree_Addrs_Exposed_Supply
5386
+ * @property {BtcCentsSatsUsdPattern} all
5387
+ * @property {BtcCentsSatsUsdPattern} p2pk65
5388
+ * @property {BtcCentsSatsUsdPattern} p2pk33
5389
+ * @property {BtcCentsSatsUsdPattern} p2pkh
5390
+ * @property {BtcCentsSatsUsdPattern} p2sh
5391
+ * @property {BtcCentsSatsUsdPattern} p2wpkh
5392
+ * @property {BtcCentsSatsUsdPattern} p2wsh
5393
+ * @property {BtcCentsSatsUsdPattern} p2tr
5394
+ * @property {BtcCentsSatsUsdPattern} p2a
5395
+ * @property {AllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5} share
5280
5396
  */
5281
5397
 
5282
5398
  /**
@@ -7106,7 +7222,7 @@ function createTransferPattern(client, acc) {
7106
7222
  * @extends BrkClientBase
7107
7223
  */
7108
7224
  class BrkClient extends BrkClientBase {
7109
- VERSION = "v0.3.0-beta.4";
7225
+ VERSION = "v0.3.0-beta.5";
7110
7226
 
7111
7227
  INDEXES = /** @type {const} */ ([
7112
7228
  "minute10",
@@ -8631,38 +8747,58 @@ class BrkClient extends BrkClientBase {
8631
8747
  inputFromReusedAddrCount: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6(this, 'input_from_reused_addr_count'),
8632
8748
  inputFromReusedAddrShare: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7(this, 'input_from_reused_addr_share'),
8633
8749
  activeReusedAddrCount: create_1m1w1y24hBlockPattern(this, 'active_reused_addr_count'),
8634
- activeReusedAddrShare: {
8635
- block: createSeriesPattern18(this, 'active_reused_addr_share'),
8636
- _24h: createSeriesPattern1(this, 'active_reused_addr_share_average_24h'),
8637
- _1w: createSeriesPattern1(this, 'active_reused_addr_share_average_1w'),
8638
- _1m: createSeriesPattern1(this, 'active_reused_addr_share_average_1m'),
8639
- _1y: createSeriesPattern1(this, 'active_reused_addr_share_average_1y'),
8640
- },
8750
+ activeReusedAddrShare: create_1m1w1y24hBlockPattern2(this, 'active_reused_addr_share'),
8751
+ },
8752
+ supply: {
8753
+ all: createBtcCentsSatsUsdPattern(this, 'reused_addr_supply'),
8754
+ p2pk65: createBtcCentsSatsUsdPattern(this, 'p2pk65_reused_addr_supply'),
8755
+ p2pk33: createBtcCentsSatsUsdPattern(this, 'p2pk33_reused_addr_supply'),
8756
+ p2pkh: createBtcCentsSatsUsdPattern(this, 'p2pkh_reused_addr_supply'),
8757
+ p2sh: createBtcCentsSatsUsdPattern(this, 'p2sh_reused_addr_supply'),
8758
+ p2wpkh: createBtcCentsSatsUsdPattern(this, 'p2wpkh_reused_addr_supply'),
8759
+ p2wsh: createBtcCentsSatsUsdPattern(this, 'p2wsh_reused_addr_supply'),
8760
+ p2tr: createBtcCentsSatsUsdPattern(this, 'p2tr_reused_addr_supply'),
8761
+ p2a: createBtcCentsSatsUsdPattern(this, 'p2a_reused_addr_supply'),
8762
+ share: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5(this, 'reused_addr_supply_share'),
8763
+ },
8764
+ },
8765
+ respent: {
8766
+ count: createFundedTotalPattern(this, 'respent_addr_count'),
8767
+ events: {
8768
+ outputToReusedAddrCount: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6(this, 'output_to_respent_addr_count'),
8769
+ outputToReusedAddrShare: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7(this, 'output_to_respent_addr_share'),
8770
+ spendableOutputToReusedAddrShare: create_1m1w1y24hBpsPercentRatioPattern(this, 'spendable_output_to_respent_addr_share'),
8771
+ inputFromReusedAddrCount: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern6(this, 'input_from_respent_addr_count'),
8772
+ inputFromReusedAddrShare: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern7(this, 'input_from_respent_addr_share'),
8773
+ activeReusedAddrCount: create_1m1w1y24hBlockPattern(this, 'active_respent_addr_count'),
8774
+ activeReusedAddrShare: create_1m1w1y24hBlockPattern2(this, 'active_respent_addr_share'),
8775
+ },
8776
+ supply: {
8777
+ all: createBtcCentsSatsUsdPattern(this, 'respent_addr_supply'),
8778
+ p2pk65: createBtcCentsSatsUsdPattern(this, 'p2pk65_respent_addr_supply'),
8779
+ p2pk33: createBtcCentsSatsUsdPattern(this, 'p2pk33_respent_addr_supply'),
8780
+ p2pkh: createBtcCentsSatsUsdPattern(this, 'p2pkh_respent_addr_supply'),
8781
+ p2sh: createBtcCentsSatsUsdPattern(this, 'p2sh_respent_addr_supply'),
8782
+ p2wpkh: createBtcCentsSatsUsdPattern(this, 'p2wpkh_respent_addr_supply'),
8783
+ p2wsh: createBtcCentsSatsUsdPattern(this, 'p2wsh_respent_addr_supply'),
8784
+ p2tr: createBtcCentsSatsUsdPattern(this, 'p2tr_respent_addr_supply'),
8785
+ p2a: createBtcCentsSatsUsdPattern(this, 'p2a_respent_addr_supply'),
8786
+ share: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5(this, 'respent_addr_supply_share'),
8641
8787
  },
8642
8788
  },
8643
8789
  exposed: {
8644
8790
  count: createFundedTotalPattern(this, 'exposed_addr_count'),
8645
8791
  supply: {
8646
- all: createBtcCentsSatsUsdPattern(this, 'exposed_supply'),
8647
- p2pk65: createBtcCentsSatsUsdPattern(this, 'p2pk65_exposed_supply'),
8648
- p2pk33: createBtcCentsSatsUsdPattern(this, 'p2pk33_exposed_supply'),
8649
- p2pkh: createBtcCentsSatsUsdPattern(this, 'p2pkh_exposed_supply'),
8650
- p2sh: createBtcCentsSatsUsdPattern(this, 'p2sh_exposed_supply'),
8651
- p2wpkh: createBtcCentsSatsUsdPattern(this, 'p2wpkh_exposed_supply'),
8652
- p2wsh: createBtcCentsSatsUsdPattern(this, 'p2wsh_exposed_supply'),
8653
- p2tr: createBtcCentsSatsUsdPattern(this, 'p2tr_exposed_supply'),
8654
- p2a: createBtcCentsSatsUsdPattern(this, 'p2a_exposed_supply'),
8655
- share: {
8656
- all: createBpsPercentRatioPattern2(this, 'exposed_supply_share'),
8657
- p2pk65: createBpsPercentRatioPattern2(this, 'p2pk65_exposed_supply_share'),
8658
- p2pk33: createBpsPercentRatioPattern2(this, 'p2pk33_exposed_supply_share'),
8659
- p2pkh: createBpsPercentRatioPattern2(this, 'p2pkh_exposed_supply_share'),
8660
- p2sh: createBpsPercentRatioPattern2(this, 'p2sh_exposed_supply_share'),
8661
- p2wpkh: createBpsPercentRatioPattern2(this, 'p2wpkh_exposed_supply_share'),
8662
- p2wsh: createBpsPercentRatioPattern2(this, 'p2wsh_exposed_supply_share'),
8663
- p2tr: createBpsPercentRatioPattern2(this, 'p2tr_exposed_supply_share'),
8664
- p2a: createBpsPercentRatioPattern2(this, 'p2a_exposed_supply_share'),
8665
- },
8792
+ all: createBtcCentsSatsUsdPattern(this, 'exposed_addr_supply'),
8793
+ p2pk65: createBtcCentsSatsUsdPattern(this, 'p2pk65_exposed_addr_supply'),
8794
+ p2pk33: createBtcCentsSatsUsdPattern(this, 'p2pk33_exposed_addr_supply'),
8795
+ p2pkh: createBtcCentsSatsUsdPattern(this, 'p2pkh_exposed_addr_supply'),
8796
+ p2sh: createBtcCentsSatsUsdPattern(this, 'p2sh_exposed_addr_supply'),
8797
+ p2wpkh: createBtcCentsSatsUsdPattern(this, 'p2wpkh_exposed_addr_supply'),
8798
+ p2wsh: createBtcCentsSatsUsdPattern(this, 'p2wsh_exposed_addr_supply'),
8799
+ p2tr: createBtcCentsSatsUsdPattern(this, 'p2tr_exposed_addr_supply'),
8800
+ p2a: createBtcCentsSatsUsdPattern(this, 'p2a_exposed_addr_supply'),
8801
+ share: createAllP2aP2pk33P2pk65P2pkhP2shP2trP2wpkhP2wshPattern5(this, 'exposed_addr_supply_share'),
8666
8802
  },
8667
8803
  },
8668
8804
  delta: {
package/package.json CHANGED
@@ -40,5 +40,5 @@
40
40
  "url": "git+https://github.com/bitcoinresearchkit/brk.git"
41
41
  },
42
42
  "type": "module",
43
- "version": "0.3.0-beta.4"
43
+ "version": "0.3.0-beta.5"
44
44
  }