@leofcoin/chain 1.7.90 → 1.7.92
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/chain.js +1 -1
- package/exports/browser/{client-Vbt0C3YZ-BSi2TKqM.js → client-BScgNzXE-Vdpk0JDu.js} +30 -8
- package/exports/browser/{messages-BYZZUpuv-MiKV0Pk4.js → messages-B9TrXtD1-B5p-nLLO.js} +1 -1
- package/exports/browser/{node-browser-CsSAehTl.js → node-browser-D4im-c4V.js} +2 -2
- package/exports/browser/node-browser.js +1 -1
- package/exports/chain.js +1 -1
- package/exports/state.d.ts +1 -1
- package/package.json +3 -3
package/exports/browser/chain.js
CHANGED
|
@@ -5026,7 +5026,7 @@ class State extends Contract {
|
|
|
5026
5026
|
if (!localBlock || Number(localBlock.index) < Number(lastBlock.index)) {
|
|
5027
5027
|
// TODO: check if valid
|
|
5028
5028
|
const localIndex = localBlock ? Number(localBlock.index) : 0;
|
|
5029
|
-
const index = lastBlock.index;
|
|
5029
|
+
const index = Number(lastBlock.index);
|
|
5030
5030
|
await this.resolveBlock(lastBlock.hash);
|
|
5031
5031
|
console.log('ok');
|
|
5032
5032
|
let blocksSynced = localIndex > 0 ? (localIndex > index ? localIndex - index + 1 : index + -localIndex + 1) : index + 1;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { L as LittlePubSub } from './node-browser-
|
|
1
|
+
import { L as LittlePubSub } from './node-browser-D4im-c4V.js';
|
|
2
2
|
import './identity-Cn0iQbY3-CeW0giQS.js';
|
|
3
3
|
import './index-DUfUgiQY.js';
|
|
4
4
|
|
|
@@ -42,7 +42,7 @@ class Api {
|
|
|
42
42
|
if (state !== 'open')
|
|
43
43
|
return reject(`coudn't send request to ${client.id}, no open connection found.`);
|
|
44
44
|
request.id = Math.random().toString(36).slice(-12);
|
|
45
|
-
const handler = result => {
|
|
45
|
+
const handler = (result) => {
|
|
46
46
|
if (result && result.error)
|
|
47
47
|
return reject(result.error);
|
|
48
48
|
resolve({ result, id: request.id, handler });
|
|
@@ -62,11 +62,17 @@ class Api {
|
|
|
62
62
|
},
|
|
63
63
|
subscribe: (topic = 'pubsub', cb) => {
|
|
64
64
|
this.subscribe(topic, cb);
|
|
65
|
-
return this.send(client, {
|
|
65
|
+
return this.send(client, {
|
|
66
|
+
url: 'pubsub',
|
|
67
|
+
params: { topic, subscribe: true }
|
|
68
|
+
});
|
|
66
69
|
},
|
|
67
70
|
unsubscribe: (topic = 'pubsub', cb) => {
|
|
68
71
|
this.unsubscribe(topic, cb);
|
|
69
|
-
return this.send(client, {
|
|
72
|
+
return this.send(client, {
|
|
73
|
+
url: 'pubsub',
|
|
74
|
+
params: { topic, unsubscribe: true }
|
|
75
|
+
});
|
|
70
76
|
},
|
|
71
77
|
subscribers: this._pubsub.subscribers
|
|
72
78
|
};
|
|
@@ -75,7 +81,9 @@ class Api {
|
|
|
75
81
|
return {
|
|
76
82
|
uptime: async () => {
|
|
77
83
|
try {
|
|
78
|
-
const { result, id, handler } = await this.request(client, {
|
|
84
|
+
const { result, id, handler } = await this.request(client, {
|
|
85
|
+
url: 'uptime'
|
|
86
|
+
});
|
|
79
87
|
this.unsubscribe(id, handler);
|
|
80
88
|
return result;
|
|
81
89
|
}
|
|
@@ -86,9 +94,11 @@ class Api {
|
|
|
86
94
|
ping: async () => {
|
|
87
95
|
try {
|
|
88
96
|
const now = new Date().getTime();
|
|
89
|
-
const { result, id, handler } = await this.request(client, {
|
|
97
|
+
const { result, id, handler } = await this.request(client, {
|
|
98
|
+
url: 'ping'
|
|
99
|
+
});
|
|
90
100
|
this.unsubscribe(id, handler);
|
|
91
|
-
return
|
|
101
|
+
return Number(result) - now;
|
|
92
102
|
}
|
|
93
103
|
catch (e) {
|
|
94
104
|
throw e;
|
|
@@ -121,6 +131,18 @@ class Api {
|
|
|
121
131
|
catch (e) {
|
|
122
132
|
throw e;
|
|
123
133
|
}
|
|
134
|
+
},
|
|
135
|
+
peers: async (params) => {
|
|
136
|
+
try {
|
|
137
|
+
params.peers = true;
|
|
138
|
+
const requested = { url: 'peernet', params };
|
|
139
|
+
const { result, id, handler } = await this.request(client, requested);
|
|
140
|
+
this.unsubscribe(id, handler);
|
|
141
|
+
return result;
|
|
142
|
+
}
|
|
143
|
+
catch (e) {
|
|
144
|
+
throw e;
|
|
145
|
+
}
|
|
124
146
|
}
|
|
125
147
|
};
|
|
126
148
|
}
|
|
@@ -475,7 +497,7 @@ class Client {
|
|
|
475
497
|
});
|
|
476
498
|
}
|
|
477
499
|
else {
|
|
478
|
-
globalThis.addEventListener('beforeunload',
|
|
500
|
+
globalThis.addEventListener('beforeunload', this.close.bind(this));
|
|
479
501
|
}
|
|
480
502
|
}
|
|
481
503
|
setupStarListeners(star) {
|
|
@@ -8496,7 +8496,7 @@ class Peernet {
|
|
|
8496
8496
|
this.root = options.root;
|
|
8497
8497
|
const { RequestMessage, ResponseMessage, PeerMessage, PeerMessageResponse, PeernetMessage, DHTMessage, DHTMessageResponse, DataMessage, DataMessageResponse, PsMessage, ChatMessage, PeernetFile
|
|
8498
8498
|
// FolderMessageResponse
|
|
8499
|
-
} = await import(/* webpackChunkName: "messages" */ './messages-
|
|
8499
|
+
} = await import(/* webpackChunkName: "messages" */ './messages-B9TrXtD1-B5p-nLLO.js');
|
|
8500
8500
|
/**
|
|
8501
8501
|
* proto Object containing protos
|
|
8502
8502
|
* @type {Object}
|
|
@@ -8590,7 +8590,7 @@ class Peernet {
|
|
|
8590
8590
|
if (this.#starting || this.#started)
|
|
8591
8591
|
return;
|
|
8592
8592
|
this.#starting = true;
|
|
8593
|
-
const importee = await import('./client-
|
|
8593
|
+
const importee = await import('./client-BScgNzXE-Vdpk0JDu.js');
|
|
8594
8594
|
/**
|
|
8595
8595
|
* @access public
|
|
8596
8596
|
* @type {PeernetClient}
|
package/exports/chain.js
CHANGED
|
@@ -1172,7 +1172,7 @@ class State extends Contract {
|
|
|
1172
1172
|
if (!localBlock || Number(localBlock.index) < Number(lastBlock.index)) {
|
|
1173
1173
|
// TODO: check if valid
|
|
1174
1174
|
const localIndex = localBlock ? Number(localBlock.index) : 0;
|
|
1175
|
-
const index = lastBlock.index;
|
|
1175
|
+
const index = Number(lastBlock.index);
|
|
1176
1176
|
await this.resolveBlock(lastBlock.hash);
|
|
1177
1177
|
console.log('ok');
|
|
1178
1178
|
let blocksSynced = localIndex > 0 ? (localIndex > index ? localIndex - index + 1 : index + -localIndex + 1) : index + 1;
|
package/exports/state.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export default class State extends Contract {
|
|
|
38
38
|
hash: string;
|
|
39
39
|
previousHash: string;
|
|
40
40
|
};
|
|
41
|
-
get lastBlockHeight():
|
|
41
|
+
get lastBlockHeight(): Promise<any> | 0;
|
|
42
42
|
getBlock(index: any): Promise<any>;
|
|
43
43
|
getBlocks(from?: any, to?: any): Promise<[]>;
|
|
44
44
|
get totalSize(): number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leofcoin/chain",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.92",
|
|
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.
|
|
58
|
+
"rollup": "^4.46.2",
|
|
59
59
|
"rollup-plugin-modify": "^3.0.0",
|
|
60
60
|
"tape": "^5.9.0",
|
|
61
61
|
"tslib": "^2.8.1"
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@leofcoin/networks": "^1.1.25",
|
|
72
72
|
"@leofcoin/peernet": "^1.1.92",
|
|
73
73
|
"@leofcoin/storage": "^3.5.38",
|
|
74
|
-
"@leofcoin/utils": "^1.1.
|
|
74
|
+
"@leofcoin/utils": "^1.1.40",
|
|
75
75
|
"@leofcoin/workers": "^1.5.27",
|
|
76
76
|
"@vandeurenglenn/base58": "^1.1.9",
|
|
77
77
|
"@vandeurenglenn/easy-worker": "^1.0.2",
|