trac-msb 0.1.68 → 0.1.69

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.
@@ -1 +1 @@
1
- 01ae3c8c76417b33f257d186fa147c6dd653699f376526e3f455ddc222cf53a7
1
+ 5e07f9cc48eba8db76709560f875f686a831401595167e4fe5147f00842bc72b
package/msb.mjs CHANGED
@@ -3,8 +3,10 @@ import {MainSettlementBus} from './src/index.js';
3
3
  const opts = {
4
4
  stores_directory : 'stores/',
5
5
  store_name : typeof process !== "undefined" ? process.argv[2] : Pear.config.args[0],
6
- bootstrap: '19a12e9bdaf1cd9ae8169fd87f3d6d63d441c046e37e2ac6c3c36bcb87c59019',
7
- channel: '0000tracnetworkmainsettlementbus',
6
+ bootstrap: '0768953b234c79eccc6306fdcba2d7c1f0b05b9af6815a3502e96a83a8878ff7',
7
+ channel: '00abtracnetworkmainsettlementbus',
8
+ disable_rate_limit : true,
9
+ enable_txlogs : true
8
10
  };
9
11
 
10
12
  const msb = new MainSettlementBus(opts);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trac-msb",
3
3
  "main": "msb.mjs",
4
- "version": "0.1.68",
4
+ "version": "0.1.69",
5
5
  "pear": {
6
6
  "name": "trac-msb",
7
7
  "type": "terminal"
@@ -13,14 +13,14 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "autobase": "7.6.3",
16
+ "hypercore": "11.6.3",
17
+ "corestore": "7.4.2",
16
18
  "b4a": "1.6.7",
17
19
  "bare-readline": "1.0.7",
18
20
  "bare-tty": "5.0.2",
19
21
  "compact-encoding": "^2.16.0",
20
- "corestore": "7.4.1",
21
22
  "fastest-validator": "1.19.0",
22
23
  "hyperbee": "2.24.2",
23
- "hypercore": "11.6.2",
24
24
  "hypercore-crypto": "3.4.0",
25
25
  "hyperdht": "6.20.5",
26
26
  "hyperswarm": "4.11.5",
@@ -40,7 +40,7 @@ export const MAX_PEERS = 128;
40
40
  export const MAX_PARALLEL = 128;
41
41
  export const MAX_SERVER_CONNECTIONS = 64;
42
42
  export const MAX_CLIENT_CONNECTIONS = 64;
43
- export const UPDATER_INTERVAL = 10_000;
43
+ export const UPDATER_INTERVAL = 1_000;
44
44
 
45
45
  const constants = {
46
46
  EntryType,