@parity/product-deploy 0.9.0-rc.2 → 0.9.0-rc.4
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/dist/auth-config.js +3 -3
- package/dist/bug-report.js +4 -4
- package/dist/{chunk-J2VZ5RSS.js → chunk-3OHJVERU.js} +2 -2
- package/dist/{chunk-QS7YU76C.js → chunk-4PVJ2JBZ.js} +10 -1
- package/dist/{chunk-BAGS5SUL.js → chunk-AUYCCEMA.js} +1 -1
- package/dist/{chunk-7FKD6TUT.js → chunk-GSC6N4NN.js} +2 -2
- package/dist/{chunk-3TV4YMYV.js → chunk-JA6JBGRD.js} +19 -7
- package/dist/{chunk-RBHABQDF.js → chunk-QN6YHRQT.js} +1 -1
- package/dist/{chunk-S5RY247Q.js → chunk-RGO4QEQ3.js} +1 -1
- package/dist/{chunk-MOP5QQT7.js → chunk-X22J6KA7.js} +1 -1
- package/dist/{chunk-X7IEFBR2.js → chunk-X5ZAC4HR.js} +2 -2
- package/dist/{chunk-LZZHPY2J.js → chunk-YBD5VLUC.js} +1 -1
- package/dist/chunk-probe.js +3 -3
- package/dist/commands/login.js +9 -9
- package/dist/commands/logout.js +3 -3
- package/dist/commands/whoami.js +3 -3
- package/dist/deploy.js +9 -9
- package/dist/dotns.js +4 -4
- package/dist/index.js +10 -10
- package/dist/manifest/publish.js +10 -10
- package/dist/memory-report.js +2 -2
- package/dist/merkle.js +9 -9
- package/dist/personhood/bootstrap.js +4 -4
- package/dist/personhood/people-client.js +4 -4
- package/dist/pool.d.ts +1 -1
- package/dist/pool.js +1 -1
- package/dist/run-state.js +1 -1
- package/dist/storage-signer.js +9 -9
- package/dist/telemetry.js +2 -2
- package/dist/version-check.js +3 -3
- package/package.json +1 -1
package/dist/auth-config.js
CHANGED
|
@@ -9,9 +9,9 @@ import {
|
|
|
9
9
|
getPeopleChainEndpoints,
|
|
10
10
|
hasPersistedSession,
|
|
11
11
|
resolveBulletinEndpoints
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-X22J6KA7.js";
|
|
13
|
+
import "./chunk-AUYCCEMA.js";
|
|
14
|
+
import "./chunk-RGO4QEQ3.js";
|
|
15
15
|
import "./chunk-GL3U7K2B.js";
|
|
16
16
|
import "./chunk-ZOC4GITL.js";
|
|
17
17
|
export {
|
package/dist/bug-report.js
CHANGED
|
@@ -9,10 +9,10 @@ import {
|
|
|
9
9
|
offerBugReport,
|
|
10
10
|
scrubSecrets,
|
|
11
11
|
setDeployContext
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-X5ZAC4HR.js";
|
|
13
|
+
import "./chunk-YBD5VLUC.js";
|
|
14
|
+
import "./chunk-AUYCCEMA.js";
|
|
15
|
+
import "./chunk-RGO4QEQ3.js";
|
|
16
16
|
export {
|
|
17
17
|
buildCliFlagsSummary,
|
|
18
18
|
buildLabels,
|
|
@@ -6,10 +6,10 @@ import {
|
|
|
6
6
|
resolveDotnsConnectOptions,
|
|
7
7
|
storeDirectory,
|
|
8
8
|
storeFile
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-JA6JBGRD.js";
|
|
10
10
|
import {
|
|
11
11
|
DotNS
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-GSC6N4NN.js";
|
|
13
13
|
import {
|
|
14
14
|
getPopSelfServeConfig,
|
|
15
15
|
loadEnvironments,
|
|
@@ -34,7 +34,16 @@ function isAuthorizationSufficient(auth, currentBlock) {
|
|
|
34
34
|
if (Number(auth.expiration ?? 0) <= currentBlock) return false;
|
|
35
35
|
return true;
|
|
36
36
|
}
|
|
37
|
-
function selectAccount(authorizations, random = Math.random) {
|
|
37
|
+
function selectAccount(authorizations, random = Math.random, pinnedIndex) {
|
|
38
|
+
if (pinnedIndex != null) {
|
|
39
|
+
const pinned = authorizations.find((a) => a.index === pinnedIndex);
|
|
40
|
+
if (!pinned) {
|
|
41
|
+
throw new Error(
|
|
42
|
+
`pool account index ${pinnedIndex} not available among authorized accounts [${authorizations.map((a) => a.index).join(", ")}]`
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
return { account: pinned, eligibleCount: authorizations.length };
|
|
46
|
+
}
|
|
38
47
|
return { account: authorizations[Math.floor(random() * authorizations.length)], eligibleCount: authorizations.length };
|
|
39
48
|
}
|
|
40
49
|
async function fetchPoolAuthorizations(api, accounts) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
isTestnetSpecName
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-4PVJ2JBZ.js";
|
|
4
4
|
import {
|
|
5
5
|
captureWarning,
|
|
6
6
|
markCodePath,
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
setDeploySentryTag,
|
|
9
9
|
truncateAddress,
|
|
10
10
|
withSpan
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-AUYCCEMA.js";
|
|
12
12
|
import {
|
|
13
13
|
validateContractAddresses
|
|
14
14
|
} from "./chunk-GL3U7K2B.js";
|
|
@@ -31,13 +31,13 @@ import {
|
|
|
31
31
|
STALE_SESSION_MESSAGE,
|
|
32
32
|
getPeopleChainEndpoints,
|
|
33
33
|
hasPersistedSession
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-X22J6KA7.js";
|
|
35
35
|
import {
|
|
36
36
|
setDeployContext
|
|
37
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-X5ZAC4HR.js";
|
|
38
38
|
import {
|
|
39
39
|
probeChunks
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-QN6YHRQT.js";
|
|
41
41
|
import {
|
|
42
42
|
packSection
|
|
43
43
|
} from "./chunk-C2TS5MER.js";
|
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
parseDomainName,
|
|
51
51
|
popStatusName,
|
|
52
52
|
verifyNonceAdvanced
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-GSC6N4NN.js";
|
|
54
54
|
import {
|
|
55
55
|
derivePoolAccounts,
|
|
56
56
|
detectTestnet,
|
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
fetchPoolAuthorizations,
|
|
59
59
|
isAuthorizationSufficient,
|
|
60
60
|
selectAccount
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-4PVJ2JBZ.js";
|
|
62
62
|
import {
|
|
63
63
|
VERSION,
|
|
64
64
|
captureWarning,
|
|
@@ -72,7 +72,7 @@ import {
|
|
|
72
72
|
truncateAddress,
|
|
73
73
|
withDeploySpan,
|
|
74
74
|
withSpan
|
|
75
|
-
} from "./chunk-
|
|
75
|
+
} from "./chunk-AUYCCEMA.js";
|
|
76
76
|
import {
|
|
77
77
|
DEFAULT_ENV_ID,
|
|
78
78
|
getPopSelfServeConfig,
|
|
@@ -480,7 +480,16 @@ async function getProvider() {
|
|
|
480
480
|
const poolMnemonic = process.env.BULLETIN_POOL_MNEMONIC || void 0;
|
|
481
481
|
const poolAccounts = derivePoolAccounts(POOL_SIZE, poolMnemonic);
|
|
482
482
|
const authorizations = await fetchPoolAuthorizations(unsafeApi, poolAccounts);
|
|
483
|
-
const
|
|
483
|
+
const poolIndexEnv = process.env.BULLETIN_POOL_ACCOUNT_INDEX;
|
|
484
|
+
let pinnedPoolIndex;
|
|
485
|
+
if (poolIndexEnv != null && poolIndexEnv !== "") {
|
|
486
|
+
const n = Number(poolIndexEnv);
|
|
487
|
+
if (!Number.isInteger(n) || n < 0) {
|
|
488
|
+
throw new NonRetryableError(`BULLETIN_POOL_ACCOUNT_INDEX must be a non-negative integer, got "${poolIndexEnv}"`);
|
|
489
|
+
}
|
|
490
|
+
pinnedPoolIndex = n;
|
|
491
|
+
}
|
|
492
|
+
const selectionResult = selectAccount(authorizations, Math.random, pinnedPoolIndex);
|
|
484
493
|
const selectedAccount = selectionResult.account;
|
|
485
494
|
const eligibleCount = selectionResult.eligibleCount;
|
|
486
495
|
await ensureAuthorized(unsafeApi, selectedAccount.address, `pool account ${selectedAccount.index}`);
|
|
@@ -935,6 +944,7 @@ async function storeChunkedContent(chunks, { client: existingClient, unsafeApi:
|
|
|
935
944
|
stored[batchIndices[j]] = r.value;
|
|
936
945
|
assignedNonces.delete(batchIndices[j]);
|
|
937
946
|
if (r.value.viaFallback) nonceAdvanceIndices.add(batchIndices[j]);
|
|
947
|
+
recoveryHistory.length = 0;
|
|
938
948
|
}
|
|
939
949
|
});
|
|
940
950
|
const failures = results.map((r, j) => r.status === "rejected" ? { index: batchIndices[j], chunkData: batchChunks[j], error: r.reason } : null).filter(Boolean);
|
|
@@ -994,6 +1004,7 @@ async function storeChunkedContent(chunks, { client: existingClient, unsafeApi:
|
|
|
994
1004
|
stored[fail.index] = { cid: createCID(fail.chunkData, CID_CONFIG.codec, 18), len: fail.chunkData.length, viaFallback: true };
|
|
995
1005
|
nonceAdvanceIndices.add(fail.index);
|
|
996
1006
|
assignedNonces.delete(fail.index);
|
|
1007
|
+
recoveryHistory.length = 0;
|
|
997
1008
|
retried = true;
|
|
998
1009
|
break;
|
|
999
1010
|
}
|
|
@@ -1001,6 +1012,7 @@ async function storeChunkedContent(chunks, { client: existingClient, unsafeApi:
|
|
|
1001
1012
|
const result2 = await storeChunk(unsafeApi, signer, fail.chunkData, retryNonce, ss58, { fetchNonce: fetchNonceOverride });
|
|
1002
1013
|
stored[fail.index] = result2;
|
|
1003
1014
|
assignedNonces.delete(fail.index);
|
|
1015
|
+
recoveryHistory.length = 0;
|
|
1004
1016
|
retried = true;
|
|
1005
1017
|
break;
|
|
1006
1018
|
} catch (e) {
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
classifyErrorArea,
|
|
3
3
|
isInteractive,
|
|
4
4
|
promptYesNo
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-YBD5VLUC.js";
|
|
6
6
|
import {
|
|
7
7
|
VERSION,
|
|
8
8
|
getCurrentSentryTraceId
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-AUYCCEMA.js";
|
|
10
10
|
|
|
11
11
|
// src/bug-report.ts
|
|
12
12
|
import { execSync, execFileSync } from "child_process";
|
package/dist/chunk-probe.js
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
_decodeStorageValue,
|
|
6
6
|
_resetProbeSession,
|
|
7
7
|
probeChunks
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-QN6YHRQT.js";
|
|
9
|
+
import "./chunk-AUYCCEMA.js";
|
|
10
|
+
import "./chunk-RGO4QEQ3.js";
|
|
11
11
|
export {
|
|
12
12
|
ChainProbeCrossValidationError,
|
|
13
13
|
ChainProbeMetadataError,
|
package/dist/commands/login.js
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
} from "../chunk-J7CYVTAW.js";
|
|
9
9
|
import {
|
|
10
10
|
waitForBulletinAuthorization
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-JA6JBGRD.js";
|
|
12
12
|
import {
|
|
13
13
|
checkSSSAllowance
|
|
14
14
|
} from "../chunk-G56VYTUD.js";
|
|
@@ -22,15 +22,15 @@ import {
|
|
|
22
22
|
getAuthClient,
|
|
23
23
|
getPeopleChainEndpoints,
|
|
24
24
|
resolveBulletinEndpoints
|
|
25
|
-
} from "../chunk-
|
|
26
|
-
import "../chunk-
|
|
27
|
-
import "../chunk-
|
|
28
|
-
import "../chunk-
|
|
25
|
+
} from "../chunk-X22J6KA7.js";
|
|
26
|
+
import "../chunk-X5ZAC4HR.js";
|
|
27
|
+
import "../chunk-YBD5VLUC.js";
|
|
28
|
+
import "../chunk-QN6YHRQT.js";
|
|
29
29
|
import "../chunk-C2TS5MER.js";
|
|
30
|
-
import "../chunk-
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
33
|
-
import "../chunk-
|
|
30
|
+
import "../chunk-GSC6N4NN.js";
|
|
31
|
+
import "../chunk-4PVJ2JBZ.js";
|
|
32
|
+
import "../chunk-AUYCCEMA.js";
|
|
33
|
+
import "../chunk-RGO4QEQ3.js";
|
|
34
34
|
import {
|
|
35
35
|
loadEnvironments
|
|
36
36
|
} from "../chunk-GL3U7K2B.js";
|
package/dist/commands/logout.js
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
} from "../chunk-RIRDBSBG.js";
|
|
6
6
|
import {
|
|
7
7
|
getAuthClient
|
|
8
|
-
} from "../chunk-
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
8
|
+
} from "../chunk-X22J6KA7.js";
|
|
9
|
+
import "../chunk-AUYCCEMA.js";
|
|
10
|
+
import "../chunk-RGO4QEQ3.js";
|
|
11
11
|
import "../chunk-GL3U7K2B.js";
|
|
12
12
|
import "../chunk-ZOC4GITL.js";
|
|
13
13
|
|
package/dist/commands/whoami.js
CHANGED
|
@@ -2,9 +2,9 @@ import {
|
|
|
2
2
|
STALE_SESSION_MESSAGE,
|
|
3
3
|
getAuthClient,
|
|
4
4
|
hasPersistedSession
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-X22J6KA7.js";
|
|
6
|
+
import "../chunk-AUYCCEMA.js";
|
|
7
|
+
import "../chunk-RGO4QEQ3.js";
|
|
8
8
|
import "../chunk-GL3U7K2B.js";
|
|
9
9
|
import "../chunk-ZOC4GITL.js";
|
|
10
10
|
|
package/dist/deploy.js
CHANGED
|
@@ -45,22 +45,22 @@ import {
|
|
|
45
45
|
storeDirectoryV2,
|
|
46
46
|
storeFile,
|
|
47
47
|
unpublish
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-JA6JBGRD.js";
|
|
49
49
|
import "./chunk-G56VYTUD.js";
|
|
50
50
|
import "./chunk-HOTQDYHD.js";
|
|
51
51
|
import "./chunk-IW3X2MJF.js";
|
|
52
52
|
import "./chunk-KOSF5FDO.js";
|
|
53
53
|
import "./chunk-J3NIXHZZ.js";
|
|
54
54
|
import "./chunk-S7EM5VMW.js";
|
|
55
|
-
import "./chunk-
|
|
56
|
-
import "./chunk-
|
|
57
|
-
import "./chunk-
|
|
58
|
-
import "./chunk-
|
|
55
|
+
import "./chunk-X22J6KA7.js";
|
|
56
|
+
import "./chunk-X5ZAC4HR.js";
|
|
57
|
+
import "./chunk-YBD5VLUC.js";
|
|
58
|
+
import "./chunk-QN6YHRQT.js";
|
|
59
59
|
import "./chunk-C2TS5MER.js";
|
|
60
|
-
import "./chunk-
|
|
61
|
-
import "./chunk-
|
|
62
|
-
import "./chunk-
|
|
63
|
-
import "./chunk-
|
|
60
|
+
import "./chunk-GSC6N4NN.js";
|
|
61
|
+
import "./chunk-4PVJ2JBZ.js";
|
|
62
|
+
import "./chunk-AUYCCEMA.js";
|
|
63
|
+
import "./chunk-RGO4QEQ3.js";
|
|
64
64
|
import "./chunk-GL3U7K2B.js";
|
|
65
65
|
import {
|
|
66
66
|
EXIT_CODE_NO_RETRY,
|
package/dist/dotns.js
CHANGED
|
@@ -50,10 +50,10 @@ import {
|
|
|
50
50
|
stripTrailingDigits,
|
|
51
51
|
validateDomainLabel,
|
|
52
52
|
verifyNonceAdvanced
|
|
53
|
-
} from "./chunk-
|
|
54
|
-
import "./chunk-
|
|
55
|
-
import "./chunk-
|
|
56
|
-
import "./chunk-
|
|
53
|
+
} from "./chunk-GSC6N4NN.js";
|
|
54
|
+
import "./chunk-4PVJ2JBZ.js";
|
|
55
|
+
import "./chunk-AUYCCEMA.js";
|
|
56
|
+
import "./chunk-RGO4QEQ3.js";
|
|
57
57
|
import "./chunk-GL3U7K2B.js";
|
|
58
58
|
import "./chunk-ZOC4GITL.js";
|
|
59
59
|
export {
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "./chunk-MMAZFJDG.js";
|
|
8
8
|
import {
|
|
9
9
|
publishManifest
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-3OHJVERU.js";
|
|
11
11
|
import {
|
|
12
12
|
DEFAULT_TEXT_RECORD_BUDGET_BYTES,
|
|
13
13
|
PLACEHOLDER_CID,
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
deploy,
|
|
25
25
|
merkleizeJS,
|
|
26
26
|
merkleizeWithStableOrder
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-JA6JBGRD.js";
|
|
28
28
|
import "./chunk-G56VYTUD.js";
|
|
29
29
|
import "./chunk-HOTQDYHD.js";
|
|
30
30
|
import {
|
|
@@ -48,27 +48,27 @@ import {
|
|
|
48
48
|
isVolatilePath,
|
|
49
49
|
parseManifest
|
|
50
50
|
} from "./chunk-S7EM5VMW.js";
|
|
51
|
-
import "./chunk-
|
|
52
|
-
import "./chunk-
|
|
53
|
-
import "./chunk-
|
|
51
|
+
import "./chunk-X22J6KA7.js";
|
|
52
|
+
import "./chunk-X5ZAC4HR.js";
|
|
53
|
+
import "./chunk-YBD5VLUC.js";
|
|
54
54
|
import {
|
|
55
55
|
probeChunks
|
|
56
|
-
} from "./chunk-
|
|
56
|
+
} from "./chunk-QN6YHRQT.js";
|
|
57
57
|
import "./chunk-C2TS5MER.js";
|
|
58
58
|
import {
|
|
59
59
|
DEFAULT_MNEMONIC,
|
|
60
60
|
DotNS,
|
|
61
61
|
parseDomainName,
|
|
62
62
|
sanitizeDomainLabel
|
|
63
|
-
} from "./chunk-
|
|
63
|
+
} from "./chunk-GSC6N4NN.js";
|
|
64
64
|
import {
|
|
65
65
|
bootstrapPool,
|
|
66
66
|
derivePoolAccounts,
|
|
67
67
|
ensureAuthorized,
|
|
68
68
|
fetchPoolAuthorizations,
|
|
69
69
|
selectAccount
|
|
70
|
-
} from "./chunk-
|
|
71
|
-
import "./chunk-
|
|
70
|
+
} from "./chunk-4PVJ2JBZ.js";
|
|
71
|
+
import "./chunk-AUYCCEMA.js";
|
|
72
72
|
import {
|
|
73
73
|
VERSION,
|
|
74
74
|
loadRunState,
|
|
@@ -78,7 +78,7 @@ import {
|
|
|
78
78
|
shouldSkipStaleWarning,
|
|
79
79
|
stateFilePath,
|
|
80
80
|
writeRunState
|
|
81
|
-
} from "./chunk-
|
|
81
|
+
} from "./chunk-RGO4QEQ3.js";
|
|
82
82
|
import {
|
|
83
83
|
DEFAULT_ENV_ID,
|
|
84
84
|
deepMergeEnvironments,
|
package/dist/manifest/publish.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import {
|
|
2
2
|
publishManifest
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-3OHJVERU.js";
|
|
4
4
|
import "../chunk-RI3ZLNPN.js";
|
|
5
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-JA6JBGRD.js";
|
|
6
6
|
import "../chunk-G56VYTUD.js";
|
|
7
7
|
import "../chunk-HOTQDYHD.js";
|
|
8
8
|
import "../chunk-IW3X2MJF.js";
|
|
9
9
|
import "../chunk-KOSF5FDO.js";
|
|
10
10
|
import "../chunk-J3NIXHZZ.js";
|
|
11
11
|
import "../chunk-S7EM5VMW.js";
|
|
12
|
-
import "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
12
|
+
import "../chunk-X22J6KA7.js";
|
|
13
|
+
import "../chunk-X5ZAC4HR.js";
|
|
14
|
+
import "../chunk-YBD5VLUC.js";
|
|
15
|
+
import "../chunk-QN6YHRQT.js";
|
|
16
16
|
import "../chunk-C2TS5MER.js";
|
|
17
|
-
import "../chunk-
|
|
18
|
-
import "../chunk-
|
|
19
|
-
import "../chunk-
|
|
20
|
-
import "../chunk-
|
|
17
|
+
import "../chunk-GSC6N4NN.js";
|
|
18
|
+
import "../chunk-4PVJ2JBZ.js";
|
|
19
|
+
import "../chunk-AUYCCEMA.js";
|
|
20
|
+
import "../chunk-RGO4QEQ3.js";
|
|
21
21
|
import "../chunk-GL3U7K2B.js";
|
|
22
22
|
import "../chunk-ZOC4GITL.js";
|
|
23
23
|
export {
|
package/dist/memory-report.js
CHANGED
package/dist/merkle.js
CHANGED
|
@@ -6,22 +6,22 @@ import {
|
|
|
6
6
|
merkleizeKuboBackend,
|
|
7
7
|
merkleizeWithStableOrder,
|
|
8
8
|
rebuildOrderedCarFromBytes
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-JA6JBGRD.js";
|
|
10
10
|
import "./chunk-G56VYTUD.js";
|
|
11
11
|
import "./chunk-HOTQDYHD.js";
|
|
12
12
|
import "./chunk-IW3X2MJF.js";
|
|
13
13
|
import "./chunk-KOSF5FDO.js";
|
|
14
14
|
import "./chunk-J3NIXHZZ.js";
|
|
15
15
|
import "./chunk-S7EM5VMW.js";
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-X22J6KA7.js";
|
|
17
|
+
import "./chunk-X5ZAC4HR.js";
|
|
18
|
+
import "./chunk-YBD5VLUC.js";
|
|
19
|
+
import "./chunk-QN6YHRQT.js";
|
|
20
20
|
import "./chunk-C2TS5MER.js";
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
21
|
+
import "./chunk-GSC6N4NN.js";
|
|
22
|
+
import "./chunk-4PVJ2JBZ.js";
|
|
23
|
+
import "./chunk-AUYCCEMA.js";
|
|
24
|
+
import "./chunk-RGO4QEQ3.js";
|
|
25
25
|
import "./chunk-GL3U7K2B.js";
|
|
26
26
|
import "./chunk-ZOC4GITL.js";
|
|
27
27
|
export {
|
|
@@ -26,10 +26,10 @@ import {
|
|
|
26
26
|
} from "../chunk-ZYVGHDMU.js";
|
|
27
27
|
import {
|
|
28
28
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
29
|
-
} from "../chunk-
|
|
30
|
-
import "../chunk-
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
29
|
+
} from "../chunk-GSC6N4NN.js";
|
|
30
|
+
import "../chunk-4PVJ2JBZ.js";
|
|
31
|
+
import "../chunk-AUYCCEMA.js";
|
|
32
|
+
import "../chunk-RGO4QEQ3.js";
|
|
33
33
|
import {
|
|
34
34
|
loadEnvironments
|
|
35
35
|
} from "../chunk-GL3U7K2B.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-GSC6N4NN.js";
|
|
4
|
+
import "../chunk-4PVJ2JBZ.js";
|
|
5
|
+
import "../chunk-AUYCCEMA.js";
|
|
6
|
+
import "../chunk-RGO4QEQ3.js";
|
|
7
7
|
import {
|
|
8
8
|
loadEnvironments
|
|
9
9
|
} from "../chunk-GL3U7K2B.js";
|
package/dist/pool.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ interface SelectionResult {
|
|
|
19
19
|
account: PoolAuthorization;
|
|
20
20
|
eligibleCount: number;
|
|
21
21
|
}
|
|
22
|
-
declare function selectAccount(authorizations: PoolAuthorization[], random?: () => number): SelectionResult;
|
|
22
|
+
declare function selectAccount(authorizations: PoolAuthorization[], random?: () => number, pinnedIndex?: number): SelectionResult;
|
|
23
23
|
declare function fetchPoolAuthorizations(api: any, accounts: PoolAccount[]): Promise<PoolAuthorization[]>;
|
|
24
24
|
declare function isTestnetSpecName(specName: string | undefined | null): boolean;
|
|
25
25
|
declare function detectTestnet(api: any): Promise<boolean>;
|
package/dist/pool.js
CHANGED
package/dist/run-state.js
CHANGED
package/dist/storage-signer.js
CHANGED
|
@@ -7,22 +7,22 @@ import {
|
|
|
7
7
|
readBulletinSlotSigner,
|
|
8
8
|
waitForBulletinAuthorization,
|
|
9
9
|
writeBulletinSlotKey
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-JA6JBGRD.js";
|
|
11
11
|
import "./chunk-G56VYTUD.js";
|
|
12
12
|
import "./chunk-HOTQDYHD.js";
|
|
13
13
|
import "./chunk-IW3X2MJF.js";
|
|
14
14
|
import "./chunk-KOSF5FDO.js";
|
|
15
15
|
import "./chunk-J3NIXHZZ.js";
|
|
16
16
|
import "./chunk-S7EM5VMW.js";
|
|
17
|
-
import "./chunk-
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
20
|
-
import "./chunk-
|
|
17
|
+
import "./chunk-X22J6KA7.js";
|
|
18
|
+
import "./chunk-X5ZAC4HR.js";
|
|
19
|
+
import "./chunk-YBD5VLUC.js";
|
|
20
|
+
import "./chunk-QN6YHRQT.js";
|
|
21
21
|
import "./chunk-C2TS5MER.js";
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
25
|
-
import "./chunk-
|
|
22
|
+
import "./chunk-GSC6N4NN.js";
|
|
23
|
+
import "./chunk-4PVJ2JBZ.js";
|
|
24
|
+
import "./chunk-AUYCCEMA.js";
|
|
25
|
+
import "./chunk-RGO4QEQ3.js";
|
|
26
26
|
import "./chunk-GL3U7K2B.js";
|
|
27
27
|
import "./chunk-ZOC4GITL.js";
|
|
28
28
|
export {
|
package/dist/telemetry.js
CHANGED
package/dist/version-check.js
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
isPreReleaseVersion,
|
|
12
12
|
preReleaseWarning,
|
|
13
13
|
promptYesNo
|
|
14
|
-
} from "./chunk-
|
|
15
|
-
import "./chunk-
|
|
16
|
-
import "./chunk-
|
|
14
|
+
} from "./chunk-YBD5VLUC.js";
|
|
15
|
+
import "./chunk-AUYCCEMA.js";
|
|
16
|
+
import "./chunk-RGO4QEQ3.js";
|
|
17
17
|
export {
|
|
18
18
|
assessVersion,
|
|
19
19
|
checkNodeVersion,
|