trac-msb 0.0.30 → 0.0.32

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 (3) hide show
  1. package/msb.mjs +1 -1
  2. package/package.json +5 -4
  3. package/src/index.js +1 -1
package/msb.mjs CHANGED
@@ -2,7 +2,7 @@ import MainSettlementBus from './src/index.js';
2
2
  const opts = {
3
3
  stores_directory : 'stores/',
4
4
  store_name : process.argv[2],
5
- bootstrap: 'fd4e1b1f08606a6a4f0ccfa064f153aa8ecd11ad82861b56ed5a33ac6b87a489',
5
+ bootstrap: 'e442c6aadc8419c2439552ebecc79ffdc993dd816f9d2d6f562eef56e71ab9ba',
6
6
  channel: Buffer.alloc(32).fill('00bptracnetworkmainsettlementbus'),
7
7
  tx : Buffer.alloc(32).fill('bptracnetworkmainsettlementbustx')
8
8
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trac-msb",
3
3
  "main": "src/index.js",
4
- "version": "0.0.30",
4
+ "version": "0.0.32",
5
5
  "pear": {
6
6
  "name": "trac-msb",
7
7
  "type": "terminal"
@@ -12,13 +12,13 @@
12
12
  "test": "brittle test/*.test.js"
13
13
  },
14
14
  "dependencies": {
15
- "autobase": "7.1.1",
15
+ "autobase": "7.0.45",
16
16
  "b4a": "1.6.7",
17
17
  "bare-fs": "4.0.1",
18
+ "bare-readline": "^1.0.7",
18
19
  "brittle": "3.0.0",
19
- "corestore": "7.0.23",
20
+ "corestore": "7.0.22",
20
21
  "debounceify": "1.1.0",
21
- "trac-wallet": "^0.0.3",
22
22
  "hyperbee": "2.23.0",
23
23
  "hypercore": "11.0.48",
24
24
  "hypercore-crypto": "3.4.0",
@@ -29,6 +29,7 @@
29
29
  "protomux-wakeup": "^2.2.1",
30
30
  "ready-resource": "^1.0.0",
31
31
  "safety-catch": "1.0.2",
32
+ "trac-wallet": "^0.0.3",
32
33
  "xache": "1.2.0"
33
34
  },
34
35
  "publishConfig": {
package/src/index.js CHANGED
@@ -4,7 +4,7 @@ import Hyperswarm from 'hyperswarm';
4
4
  import ReadyResource from 'ready-resource';
5
5
  import b4a from 'b4a';
6
6
  import Hyperbee from 'hyperbee';
7
- import readline from 'readline';
7
+ import readline from 'bare-readline';
8
8
  import crypto from 'hypercore-crypto';
9
9
  import { sanitizeTransaction, addWriter } from './functions.js';
10
10
  import w from 'protomux-wakeup';