@leofcoin/chain 1.7.76 → 1.7.77

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,5 +1,5 @@
1
- import { F as FormatInterface } from './node-browser-DMmrhyQS.js';
2
- import './identity--VAIVSMm-DTWL357I.js';
1
+ import { F as FormatInterface } from './node-browser-g4r5zC--.js';
2
+ import './identity-Cn0iQbY3-CeW0giQS.js';
3
3
  import './index-DUfUgiQY.js';
4
4
 
5
5
  var proto$b = {
@@ -1,4 +1,4 @@
1
- import { b as base$1, I as Identity, i as index$4, a as index$5, c as base58$1, d as index$3, e as index$2 } from './identity--VAIVSMm-DTWL357I.js';
1
+ import { b as base$1, I as Identity, i as index$4, a as index$5, c as base58$1, d as index$3, e as index$2 } from './identity-Cn0iQbY3-CeW0giQS.js';
2
2
  import { F as FormatInterface$2, T as TransactionMessage, C as ContractMessage, B as BlockMessage, a as BWMessage, b as BWRequestMessage, V as ValidatorMessage } from './index-DUfUgiQY.js';
3
3
 
4
4
  var proto = {
@@ -8495,7 +8495,7 @@ class Peernet {
8495
8495
  this.root = options.root;
8496
8496
  const { RequestMessage, ResponseMessage, PeerMessage, PeerMessageResponse, PeernetMessage, DHTMessage, DHTMessageResponse, DataMessage, DataMessageResponse, PsMessage, ChatMessage, PeernetFile
8497
8497
  // FolderMessageResponse
8498
- } = await import(/* webpackChunkName: "messages" */ './messages-CW17jRdc-Dtrj-vba.js');
8498
+ } = await import(/* webpackChunkName: "messages" */ './messages-CT983-_h-B6UgHloi.js');
8499
8499
  /**
8500
8500
  * proto Object containing protos
8501
8501
  * @type {Object}
@@ -8589,7 +8589,7 @@ class Peernet {
8589
8589
  if (this.#starting || this.#started)
8590
8590
  return;
8591
8591
  this.#starting = true;
8592
- const importee = await import('./client-DD7vhDK_-BdNAdRzV.js');
8592
+ const importee = await import('./client-Db0RyH-f-ZTHffSH0.js');
8593
8593
  /**
8594
8594
  * @access public
8595
8595
  * @type {PeernetClient}
@@ -9078,7 +9078,7 @@ globalThis.Peernet = Peernet;
9078
9078
  var networks = {
9079
9079
  leofcoin: {
9080
9080
  peach: {
9081
- stars: ['wss://star-testnet.leofcoin.org', 'wss://star.leofcoin.org'] // Separate testnet stars
9081
+ stars: ['wss://star.leofcoin.org'] // todo webrtc and bittorent stars
9082
9082
  }
9083
9083
  }
9084
9084
  };
@@ -1,3 +1,3 @@
1
- export { N as default } from './node-browser-DMmrhyQS.js';
2
- import './identity--VAIVSMm-DTWL357I.js';
1
+ export { N as default } from './node-browser-g4r5zC--.js';
2
+ import './identity-Cn0iQbY3-CeW0giQS.js';
3
3
  import './index-DUfUgiQY.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leofcoin/chain",
3
- "version": "1.7.76",
3
+ "version": "1.7.77",
4
4
  "description": "Official javascript implementation",
5
5
  "private": false,
6
6
  "exports": {
@@ -55,7 +55,7 @@
55
55
  "@rollup/plugin-typescript": "^12.1.4",
56
56
  "@types/semver": "^7.7.0",
57
57
  "@vandeurenglenn/debug": "^1.2.6",
58
- "rollup": "^4.44.2",
58
+ "rollup": "^4.45.1",
59
59
  "rollup-plugin-modify": "^3.0.0",
60
60
  "tape": "^5.9.0",
61
61
  "tslib": "^2.8.1"
@@ -69,7 +69,7 @@
69
69
  "@leofcoin/messages": "^1.4.40",
70
70
  "@leofcoin/multi-wallet": "^3.1.8",
71
71
  "@leofcoin/networks": "^1.1.25",
72
- "@leofcoin/peernet": "^1.1.84",
72
+ "@leofcoin/peernet": "^1.1.86",
73
73
  "@leofcoin/storage": "^3.5.38",
74
74
  "@leofcoin/utils": "^1.1.39",
75
75
  "@leofcoin/workers": "^1.5.23",
@@ -1,115 +0,0 @@
1
- import { g as getDefaultExportFromCjs } from './identity--VAIVSMm-DTWL357I.js';
2
-
3
- var global;
4
- var hasRequiredGlobal;
5
-
6
- function requireGlobal () {
7
- if (hasRequiredGlobal) return global;
8
- hasRequiredGlobal = 1;
9
- var naiveFallback = function () {
10
- if (typeof self === "object" && self) return self;
11
- if (typeof window === "object" && window) return window;
12
- throw new Error("Unable to resolve global `this`");
13
- };
14
-
15
- global = (function () {
16
- if (this) return this;
17
-
18
- // Unexpected strict mode (may happen if e.g. bundled into ESM module)
19
-
20
- // Fallback to standard globalThis if available
21
- if (typeof globalThis === "object" && globalThis) return globalThis;
22
-
23
- // Thanks @mathiasbynens -> https://mathiasbynens.be/notes/globalthis
24
- // In all ES5+ engines global object inherits from Object.prototype
25
- // (if you approached one that doesn't please report)
26
- try {
27
- Object.defineProperty(Object.prototype, "__global__", {
28
- get: function () { return this; },
29
- configurable: true
30
- });
31
- } catch (error) {
32
- // Unfortunate case of updates to Object.prototype being restricted
33
- // via preventExtensions, seal or freeze
34
- return naiveFallback();
35
- }
36
- try {
37
- // Safari case (window.__global__ works, but __global__ does not)
38
- if (!__global__) return naiveFallback();
39
- return __global__;
40
- } finally {
41
- delete Object.prototype.__global__;
42
- }
43
- })();
44
- return global;
45
- }
46
-
47
- var version$1 = "1.0.35";
48
- var require$$0 = {
49
- version: version$1};
50
-
51
- var version = require$$0.version;
52
-
53
- var _globalThis;
54
- if (typeof globalThis === 'object') {
55
- _globalThis = globalThis;
56
- } else {
57
- try {
58
- _globalThis = requireGlobal();
59
- } catch (error) {
60
- } finally {
61
- if (!_globalThis && typeof window !== 'undefined') { _globalThis = window; }
62
- if (!_globalThis) { throw new Error('Could not determine global this'); }
63
- }
64
- }
65
-
66
- var NativeWebSocket = _globalThis.WebSocket || _globalThis.MozWebSocket;
67
- var websocket_version = version;
68
-
69
-
70
- /**
71
- * Expose a W3C WebSocket class with just one or two arguments.
72
- */
73
- function W3CWebSocket(uri, protocols) {
74
- var native_instance;
75
-
76
- if (protocols) {
77
- native_instance = new NativeWebSocket(uri, protocols);
78
- }
79
- else {
80
- native_instance = new NativeWebSocket(uri);
81
- }
82
-
83
- /**
84
- * 'native_instance' is an instance of nativeWebSocket (the browser's WebSocket
85
- * class). Since it is an Object it will be returned as it is when creating an
86
- * instance of W3CWebSocket via 'new W3CWebSocket()'.
87
- *
88
- * ECMAScript 5: http://bclary.com/2004/11/07/#a-13.2.2
89
- */
90
- return native_instance;
91
- }
92
- if (NativeWebSocket) {
93
- ['CONNECTING', 'OPEN', 'CLOSING', 'CLOSED'].forEach(function(prop) {
94
- Object.defineProperty(W3CWebSocket, prop, {
95
- get: function() { return NativeWebSocket[prop]; }
96
- });
97
- });
98
- }
99
-
100
- /**
101
- * Module exports.
102
- */
103
- var browser = {
104
- 'w3cwebsocket' : NativeWebSocket ? W3CWebSocket : null,
105
- 'version' : websocket_version
106
- };
107
-
108
- var browser$1 = /*@__PURE__*/getDefaultExportFromCjs(browser);
109
-
110
- var browser$2 = /*#__PURE__*/Object.freeze({
111
- __proto__: null,
112
- default: browser$1
113
- });
114
-
115
- export { browser$2 as b };
@@ -1,25 +0,0 @@
1
- var browser$1 = {};
2
-
3
- browser$1.MediaStream = window.MediaStream;
4
- browser$1.MediaStreamTrack = window.MediaStreamTrack;
5
- browser$1.RTCDataChannel = window.RTCDataChannel;
6
- browser$1.RTCDataChannelEvent = window.RTCDataChannelEvent;
7
- browser$1.RTCDtlsTransport = window.RTCDtlsTransport;
8
- browser$1.RTCIceCandidate = window.RTCIceCandidate;
9
- browser$1.RTCIceTransport = window.RTCIceTransport;
10
- browser$1.RTCPeerConnection = window.RTCPeerConnection;
11
- browser$1.RTCPeerConnectionIceEvent = window.RTCPeerConnectionIceEvent;
12
- browser$1.RTCRtpReceiver = window.RTCRtpReceiver;
13
- browser$1.RTCRtpSender = window.RTCRtpSender;
14
- browser$1.RTCRtpTransceiver = window.RTCRtpTransceiver;
15
- browser$1.RTCSctpTransport = window.RTCSctpTransport;
16
- browser$1.RTCSessionDescription = window.RTCSessionDescription;
17
- browser$1.getUserMedia = window.getUserMedia;
18
- browser$1.mediaDevices = navigator.mediaDevices;
19
-
20
- var browser = /*#__PURE__*/Object.freeze({
21
- __proto__: null,
22
- default: browser$1
23
- });
24
-
25
- export { browser as b };