@leofcoin/chain 1.4.63 → 1.4.64
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/exports/browser/{client-fdce8059-f1c6a54e.js → client-6167d247-17f75c67.js} +5 -3
- package/exports/browser/{index-897eebb9-8412bbb8.js → index-d89d21c8-48afef1d.js} +1 -1
- package/exports/browser/{messages-d4613b80-9bfe9cca.js → messages-865446ee-90970bdb.js} +1 -1
- package/exports/browser/{node-browser-50ab55fa.js → node-browser-4e3729e3.js} +3 -3
- package/exports/browser/node-browser.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as commonjsGlobal, g as getDefaultExportFromCjs } from './node-browser-
|
|
1
|
+
import { c as commonjsGlobal, g as getDefaultExportFromCjs } from './node-browser-4e3729e3.js';
|
|
2
2
|
import './index-640d9f36.js';
|
|
3
3
|
|
|
4
4
|
function commonjsRequire(path) {
|
|
@@ -41079,7 +41079,9 @@ class P2PTClient extends P2PT {
|
|
|
41079
41079
|
});
|
|
41080
41080
|
|
|
41081
41081
|
this.on('msg', async (peer, data, id, from) => {
|
|
41082
|
-
if (!this.#discovered[peer.id]
|
|
41082
|
+
if (!this.#discovered[peer.id] ||
|
|
41083
|
+
this.#discovered[peer.id]?.connected === false ||
|
|
41084
|
+
this.#discovered[peer.id]?.connected === undefined) {
|
|
41083
41085
|
if (this.#que.has(peer.id)) {
|
|
41084
41086
|
const set = this.#que.get(peer.id);
|
|
41085
41087
|
set.add({peer, data, id, from});
|
|
@@ -41087,7 +41089,7 @@ class P2PTClient extends P2PT {
|
|
|
41087
41089
|
} else {
|
|
41088
41090
|
this.#que.set(peer.id, new Set([{peer, data, id, from}]));
|
|
41089
41091
|
}
|
|
41090
|
-
} else if (this.#discovered[peer.id]?.connected) {
|
|
41092
|
+
} else if (this.#discovered[peer.id]?.connected === true) {
|
|
41091
41093
|
this.#discovered[peer.id]?._handleMessage(new Uint8Array(Object.values(data)), id, from);
|
|
41092
41094
|
this.bw.down += data.length || data.byteLength;
|
|
41093
41095
|
}
|
|
@@ -20266,7 +20266,7 @@ class Identity {
|
|
|
20266
20266
|
globalThis.peernet.selectedAccount = new TextDecoder().decode(selected);
|
|
20267
20267
|
}
|
|
20268
20268
|
else {
|
|
20269
|
-
const importee = await import(/* webpackChunkName: "generate-account" */ './index-
|
|
20269
|
+
const importee = await import(/* webpackChunkName: "generate-account" */ './index-d89d21c8-48afef1d.js');
|
|
20270
20270
|
const { identity, accounts } = await importee.default(password, this.network);
|
|
20271
20271
|
await globalThis.accountStore.put('public', JSON.stringify({ walletId: identity.walletId }));
|
|
20272
20272
|
await globalThis.walletStore.put('version', String(1));
|
|
@@ -20437,7 +20437,7 @@ class Peernet {
|
|
|
20437
20437
|
this.root = options.root;
|
|
20438
20438
|
const { RequestMessage, ResponseMessage, PeerMessage, PeerMessageResponse, PeernetMessage, DHTMessage, DHTMessageResponse, DataMessage, DataMessageResponse, PsMessage, ChatMessage, PeernetFile
|
|
20439
20439
|
// FolderMessageResponse
|
|
20440
|
-
} = await import(/* webpackChunkName: "messages" */ './messages-
|
|
20440
|
+
} = await import(/* webpackChunkName: "messages" */ './messages-865446ee-90970bdb.js');
|
|
20441
20441
|
/**
|
|
20442
20442
|
* proto Object containing protos
|
|
20443
20443
|
* @type {Object}
|
|
@@ -20516,7 +20516,7 @@ class Peernet {
|
|
|
20516
20516
|
if (this.#starting || this.#started)
|
|
20517
20517
|
return;
|
|
20518
20518
|
this.#starting = true;
|
|
20519
|
-
const importee = await import('./client-
|
|
20519
|
+
const importee = await import('./client-6167d247-17f75c67.js');
|
|
20520
20520
|
/**
|
|
20521
20521
|
* @access public
|
|
20522
20522
|
* @type {PeernetClient}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { N as default } from './node-browser-
|
|
1
|
+
export { N as default } from './node-browser-4e3729e3.js';
|
|
2
2
|
import './index-640d9f36.js';
|