bulletin-deploy 0.12.0-rc.4 → 0.12.0
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-5JTID4O7.js → chunk-22I5RPBK.js} +1 -1
- package/dist/{chunk-OE6BI7RB.js → chunk-5ABLSTDB.js} +57 -7
- package/dist/{chunk-PBU22M5S.js → chunk-CVJ7TO5U.js} +7 -7
- package/dist/{chunk-676VHCYT.js → chunk-DKWU7YRN.js} +1 -1
- package/dist/{chunk-IROISJZD.js → chunk-FVLZA7AT.js} +1 -1
- package/dist/{chunk-TXJSRUFR.js → chunk-MIH5L6BY.js} +1 -1
- package/dist/{chunk-TWAP5EPN.js → chunk-SHHY47YP.js} +2 -2
- package/dist/{chunk-3H2LPFOT.js → chunk-VKNSYLOF.js} +2 -2
- package/dist/{chunk-I36SONEP.js → chunk-WDIQWT27.js} +1 -1
- package/dist/{chunk-IDEG2CT2.js → chunk-XVE4O7EI.js} +1 -1
- package/dist/{chunk-KBKU6GBX.js → chunk-ZNYW2GLB.js} +3 -3
- package/dist/chunk-probe.js +3 -3
- package/dist/commands/login.js +10 -10
- package/dist/commands/logout.js +4 -4
- package/dist/commands/transfer.js +3 -3
- package/dist/commands/whoami.js +3 -3
- package/dist/deploy-actors.js +5 -5
- package/dist/deploy.js +10 -10
- package/dist/dotns.d.ts +5 -1
- package/dist/dotns.js +9 -3
- package/dist/index.js +11 -11
- package/dist/manifest/publish.js +11 -11
- package/dist/memory-report.js +2 -2
- package/dist/merkle.js +10 -10
- package/dist/personhood/bootstrap.js +3 -3
- package/dist/personhood/people-client.js +3 -3
- package/dist/run-state.js +1 -1
- package/dist/sss-allowance-cache.js +4 -4
- package/dist/storage-signer.js +10 -10
- 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,10 +9,10 @@ import {
|
|
|
9
9
|
getPeopleChainEndpoints,
|
|
10
10
|
hasPersistedSession,
|
|
11
11
|
resolveBulletinEndpoints
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-22I5RPBK.js";
|
|
13
13
|
import "./chunk-TSPERKUS.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-DKWU7YRN.js";
|
|
15
|
+
import "./chunk-WDIQWT27.js";
|
|
16
16
|
import "./chunk-JSYQ3JQS.js";
|
|
17
17
|
import "./chunk-ZOC4GITL.js";
|
|
18
18
|
export {
|
package/dist/bug-report.js
CHANGED
|
@@ -10,10 +10,10 @@ import {
|
|
|
10
10
|
offerBugReport,
|
|
11
11
|
scrubSecrets,
|
|
12
12
|
setDeployContext
|
|
13
|
-
} from "./chunk-
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
16
|
-
import "./chunk-
|
|
13
|
+
} from "./chunk-ZNYW2GLB.js";
|
|
14
|
+
import "./chunk-FVLZA7AT.js";
|
|
15
|
+
import "./chunk-DKWU7YRN.js";
|
|
16
|
+
import "./chunk-WDIQWT27.js";
|
|
17
17
|
export {
|
|
18
18
|
buildCliFlagsSummary,
|
|
19
19
|
buildLabels,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
setDeploySentryTag,
|
|
12
12
|
truncateAddress,
|
|
13
13
|
withSpan
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-DKWU7YRN.js";
|
|
15
15
|
import {
|
|
16
16
|
validateContractAddresses
|
|
17
17
|
} from "./chunk-JSYQ3JQS.js";
|
|
@@ -61,6 +61,7 @@ var CODE_PATHS = {
|
|
|
61
61
|
// src/dotns.ts
|
|
62
62
|
var TX_KIND_HASH = "hash";
|
|
63
63
|
var TX_KIND_NONCE_ADVANCED = "nonce-advanced";
|
|
64
|
+
var TX_KIND_BEST_BLOCK = "best-block";
|
|
64
65
|
var ATTR_TX_RESOLUTION_KIND = "deploy.dotns.tx_resolution_kind";
|
|
65
66
|
var ONE_PAS = 10000000000n;
|
|
66
67
|
var FEE_FLOOR_OWNED = ONE_PAS / 100n;
|
|
@@ -129,6 +130,7 @@ var TX_TIMEOUT_MS = 9e4;
|
|
|
129
130
|
var TX_CHAIN_TIME_BUDGET_MS = 18e4;
|
|
130
131
|
var TX_WALL_CLOCK_CEILING_MS = 24e4;
|
|
131
132
|
var TX_NO_PROGRESS_MS = 9e4;
|
|
133
|
+
var DOTNS_BEST_BLOCK_GRACE_MS = parseInt(process.env.BULLETIN_DOTNS_BESTBLOCK_GRACE_MS ?? "60000", 10);
|
|
132
134
|
var WS_HEARTBEAT_TIMEOUT_MS = 3e5;
|
|
133
135
|
var DOTNS_TX_MAX_ATTEMPTS = 3;
|
|
134
136
|
var WatcherSilentNoEventError = class extends Error {
|
|
@@ -684,7 +686,7 @@ var ReviveClientWrapper = class _ReviveClientWrapper {
|
|
|
684
686
|
}
|
|
685
687
|
try {
|
|
686
688
|
await this.signAndSubmitWithRetry(() => this.client.tx.Revive.map_account(), signer, () => {
|
|
687
|
-
}, "Revive.map_account");
|
|
689
|
+
}, "Revive.map_account", { verifyEffect: () => this.checkIfAccountMapped(substrateAddress) });
|
|
688
690
|
this.mappedAccounts.add(substrateAddress);
|
|
689
691
|
} catch (error) {
|
|
690
692
|
const errorMessage = error?.message || String(error);
|
|
@@ -715,6 +717,12 @@ var ReviveClientWrapper = class _ReviveClientWrapper {
|
|
|
715
717
|
let lastEventAt = Date.now();
|
|
716
718
|
let lastEventType = "(none)";
|
|
717
719
|
let startChainTimeMs = null;
|
|
720
|
+
let bestBlockIncluded = false;
|
|
721
|
+
const graceRawEnv = process.env.BULLETIN_DOTNS_BESTBLOCK_GRACE_MS;
|
|
722
|
+
const bestBlockGraceMs = Math.min(
|
|
723
|
+
graceRawEnv != null && graceRawEnv !== "" ? parseInt(graceRawEnv, 10) : DOTNS_BEST_BLOCK_GRACE_MS,
|
|
724
|
+
TX_NO_PROGRESS_MS - 5e3
|
|
725
|
+
);
|
|
718
726
|
const poll = async () => {
|
|
719
727
|
if (settled) return;
|
|
720
728
|
try {
|
|
@@ -735,6 +743,15 @@ var ReviveClientWrapper = class _ReviveClientWrapper {
|
|
|
735
743
|
return;
|
|
736
744
|
}
|
|
737
745
|
}
|
|
746
|
+
if (bestBlockIncluded && opts.verifyEffect && Date.now() - startWallClockMs > bestBlockGraceMs) {
|
|
747
|
+
statusCallback("verifying");
|
|
748
|
+
if (await opts.verifyEffect()) {
|
|
749
|
+
console.log(` finality lagging (${Math.floor((Date.now() - startWallClockMs) / 1e3)}s) \u2014 resolving on best-block inclusion (effect verified on-chain)`);
|
|
750
|
+
statusCallback("included");
|
|
751
|
+
finish(resolve)({ kind: TX_KIND_BEST_BLOCK });
|
|
752
|
+
return;
|
|
753
|
+
}
|
|
754
|
+
}
|
|
738
755
|
if (Date.now() - startWallClockMs > TX_WALL_CLOCK_CEILING_MS) {
|
|
739
756
|
statusCallback("failed");
|
|
740
757
|
finish(reject)(new Error(`Transaction did not settle within ${TX_WALL_CLOCK_CEILING_MS / 1e3}s wall-clock (chain may be stalled)`));
|
|
@@ -777,7 +794,10 @@ var ReviveClientWrapper = class _ReviveClientWrapper {
|
|
|
777
794
|
statusCallback("broadcasting");
|
|
778
795
|
break;
|
|
779
796
|
case "txBestBlocksState":
|
|
780
|
-
if (event.found)
|
|
797
|
+
if (event.found) {
|
|
798
|
+
statusCallback("included");
|
|
799
|
+
bestBlockIncluded = true;
|
|
800
|
+
} else bestBlockIncluded = false;
|
|
781
801
|
break;
|
|
782
802
|
case "finalized": {
|
|
783
803
|
if (event.dispatchError || event.ok === false) {
|
|
@@ -953,13 +973,15 @@ function logTxResolution(res) {
|
|
|
953
973
|
setDeployAttribute(ATTR_TX_RESOLUTION_KIND, res.kind);
|
|
954
974
|
if (res.kind === TX_KIND_HASH) {
|
|
955
975
|
console.log(` Tx: ${res.hash}`);
|
|
956
|
-
} else {
|
|
976
|
+
} else if (res.kind === TX_KIND_NONCE_ADVANCED) {
|
|
957
977
|
let rpcHost = res.rpc;
|
|
958
978
|
try {
|
|
959
979
|
rpcHost = new URL(res.rpc).host;
|
|
960
980
|
} catch {
|
|
961
981
|
}
|
|
962
982
|
console.log(` Tx: confirmed via nonce-advance on ${rpcHost}`);
|
|
983
|
+
} else {
|
|
984
|
+
console.log(` Tx: confirmed via best-block inclusion (effect verified; finality pending)`);
|
|
963
985
|
}
|
|
964
986
|
}
|
|
965
987
|
var DOTNS_CONTEXT_HEX_LOWER = "0x646f746e73000000000000000000000000000000000000000000000000000000";
|
|
@@ -1863,7 +1885,15 @@ var DotNS = class {
|
|
|
1863
1885
|
return { changed: false };
|
|
1864
1886
|
}
|
|
1865
1887
|
console.log(` Redirecting resolver for ${domainName}.dot to content resolver ${target}\u2026`);
|
|
1866
|
-
|
|
1888
|
+
const verifyResolverSet = async () => {
|
|
1889
|
+
try {
|
|
1890
|
+
const r = await this.contractCallNullable(this._contracts.DOTNS_REGISTRY, DOTNS_REGISTRY_ABI, "resolver", [node]);
|
|
1891
|
+
return typeof r === "string" && r.toLowerCase() === target.toLowerCase();
|
|
1892
|
+
} catch {
|
|
1893
|
+
return false;
|
|
1894
|
+
}
|
|
1895
|
+
};
|
|
1896
|
+
await this.contractTransaction(this._contracts.DOTNS_REGISTRY, 0n, DOTNS_REGISTRY_ABI, "setResolver", [node, target], (s) => console.log(` ${s}`), { useNoncePolling: true, verifyEffect: verifyResolverSet });
|
|
1867
1897
|
return { changed: true };
|
|
1868
1898
|
}
|
|
1869
1899
|
/** Read a text record off `DOTNS_CONTENT_RESOLVER`. Returns `""` when unset. */
|
|
@@ -2186,7 +2216,15 @@ var DotNS = class {
|
|
|
2186
2216
|
this.ensureConnected();
|
|
2187
2217
|
console.log(`
|
|
2188
2218
|
Submitting commitment...`);
|
|
2189
|
-
const
|
|
2219
|
+
const verifyCommitted = async () => {
|
|
2220
|
+
try {
|
|
2221
|
+
const ts = await this.contractCall(this._contracts.DOTNS_REGISTRAR_CONTROLLER, DOTNS_REGISTRAR_CONTROLLER_ABI, "commitments", [commitment]);
|
|
2222
|
+
return ts != null && BigInt(ts) > 0n;
|
|
2223
|
+
} catch {
|
|
2224
|
+
return false;
|
|
2225
|
+
}
|
|
2226
|
+
};
|
|
2227
|
+
const commitTxRes = await this.contractTransaction(this._contracts.DOTNS_REGISTRAR_CONTROLLER, 0n, DOTNS_REGISTRAR_CONTROLLER_ABI, "commit", [commitment], (s) => console.log(` ${s}`), { phoneLabel: "Commitment", verifyEffect: verifyCommitted });
|
|
2190
2228
|
logTxResolution(commitTxRes);
|
|
2191
2229
|
console.log(` Committed at: ${(/* @__PURE__ */ new Date()).toISOString()}`);
|
|
2192
2230
|
}
|
|
@@ -2279,7 +2317,16 @@ var DotNS = class {
|
|
|
2279
2317
|
setDeployAttribute("deploy.payment_wei", priceWei.toString());
|
|
2280
2318
|
console.log(` Oracle price: ${formatEther(priceWei)} PAS`);
|
|
2281
2319
|
console.log(` Paying: ${formatEther(bufferedPaymentWei)} PAS`);
|
|
2282
|
-
const
|
|
2320
|
+
const registeredLabel = registration.label;
|
|
2321
|
+
const verifyRegistered = async () => {
|
|
2322
|
+
try {
|
|
2323
|
+
const owner = await this.contractCall(this._contracts.DOTNS_REGISTRAR, DOTNS_REGISTRAR_ABI, "ownerOf", [computeDomainTokenId(registeredLabel)]);
|
|
2324
|
+
return typeof owner === "string" && owner.toLowerCase() === this.evmAddress.toLowerCase();
|
|
2325
|
+
} catch {
|
|
2326
|
+
return false;
|
|
2327
|
+
}
|
|
2328
|
+
};
|
|
2329
|
+
const registerTxRes = await this.contractTransaction(this._contracts.DOTNS_REGISTRAR_CONTROLLER, bufferedPaymentNative, DOTNS_REGISTRAR_CONTROLLER_ABI, "register", [registration], (s) => console.log(` ${s}`), { phoneLabel: "Register", verifyEffect: verifyRegistered });
|
|
2283
2330
|
logTxResolution(registerTxRes);
|
|
2284
2331
|
if (registerTxRes.kind === TX_KIND_HASH) {
|
|
2285
2332
|
setDeployAttribute("deploy.register.tx", registerTxRes.hash);
|
|
@@ -2778,6 +2825,7 @@ var dotns = new DotNS();
|
|
|
2778
2825
|
export {
|
|
2779
2826
|
TX_KIND_HASH,
|
|
2780
2827
|
TX_KIND_NONCE_ADVANCED,
|
|
2828
|
+
TX_KIND_BEST_BLOCK,
|
|
2781
2829
|
ATTR_TX_RESOLUTION_KIND,
|
|
2782
2830
|
MINIMUM_REGISTER_STORAGE_DEPOSIT,
|
|
2783
2831
|
registerDepositWei,
|
|
@@ -2795,6 +2843,7 @@ export {
|
|
|
2795
2843
|
TX_CHAIN_TIME_BUDGET_MS,
|
|
2796
2844
|
TX_WALL_CLOCK_CEILING_MS,
|
|
2797
2845
|
TX_NO_PROGRESS_MS,
|
|
2846
|
+
DOTNS_BEST_BLOCK_GRACE_MS,
|
|
2798
2847
|
WS_HEARTBEAT_TIMEOUT_MS,
|
|
2799
2848
|
DOTNS_TX_MAX_ATTEMPTS,
|
|
2800
2849
|
WatcherSilentNoEventError,
|
|
@@ -2832,6 +2881,7 @@ export {
|
|
|
2832
2881
|
parseDomainName,
|
|
2833
2882
|
parseProofOfPersonhoodStatus,
|
|
2834
2883
|
popStatusName,
|
|
2884
|
+
ReviveClientWrapper,
|
|
2835
2885
|
formatDispatchError,
|
|
2836
2886
|
classifyAliasAccountRow,
|
|
2837
2887
|
formatPersonhoodRemediation,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
preflightSssAllowance
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-MIH5L6BY.js";
|
|
4
4
|
import {
|
|
5
5
|
statementSigningAccount
|
|
6
6
|
} from "./chunk-GRPLHUYC.js";
|
|
@@ -31,18 +31,18 @@ import {
|
|
|
31
31
|
} from "./chunk-S7EM5VMW.js";
|
|
32
32
|
import {
|
|
33
33
|
setDeployContext
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-ZNYW2GLB.js";
|
|
35
35
|
import {
|
|
36
36
|
getBestBlockNumber,
|
|
37
37
|
probeChunks,
|
|
38
38
|
probeFinalityGap
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-XVE4O7EI.js";
|
|
40
40
|
import {
|
|
41
41
|
packSection
|
|
42
42
|
} from "./chunk-C2TS5MER.js";
|
|
43
43
|
import {
|
|
44
44
|
resolveStorageSigner
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-VKNSYLOF.js";
|
|
46
46
|
import {
|
|
47
47
|
createSlotAccountSigner,
|
|
48
48
|
requestResourceAllocation
|
|
@@ -51,7 +51,7 @@ import {
|
|
|
51
51
|
STALE_SESSION_MESSAGE,
|
|
52
52
|
getPeopleChainEndpoints,
|
|
53
53
|
hasPersistedSession
|
|
54
|
-
} from "./chunk-
|
|
54
|
+
} from "./chunk-22I5RPBK.js";
|
|
55
55
|
import {
|
|
56
56
|
CLI_NAME
|
|
57
57
|
} from "./chunk-TSPERKUS.js";
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
parseDomainName,
|
|
65
65
|
popStatusName,
|
|
66
66
|
verifyNonceAdvanced
|
|
67
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-5ABLSTDB.js";
|
|
68
68
|
import {
|
|
69
69
|
derivePoolAccounts,
|
|
70
70
|
detectTestnet,
|
|
@@ -86,7 +86,7 @@ import {
|
|
|
86
86
|
truncateAddress,
|
|
87
87
|
withDeploySpan,
|
|
88
88
|
withSpan
|
|
89
|
-
} from "./chunk-
|
|
89
|
+
} from "./chunk-DKWU7YRN.js";
|
|
90
90
|
import {
|
|
91
91
|
DEFAULT_ENV_ID,
|
|
92
92
|
getPopSelfServeConfig,
|
|
@@ -7,10 +7,10 @@ import {
|
|
|
7
7
|
resolveDotnsConnectOptions,
|
|
8
8
|
storeDirectory,
|
|
9
9
|
storeFile
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-CVJ7TO5U.js";
|
|
11
11
|
import {
|
|
12
12
|
DotNS
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-5ABLSTDB.js";
|
|
14
14
|
import {
|
|
15
15
|
getPopSelfServeConfig,
|
|
16
16
|
loadEnvironments,
|
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
} from "./chunk-5FLTDWWP.js";
|
|
5
5
|
import {
|
|
6
6
|
DOT_PRODUCT_ID
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-22I5RPBK.js";
|
|
8
8
|
import {
|
|
9
9
|
DEFAULT_MNEMONIC
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-5ABLSTDB.js";
|
|
11
11
|
|
|
12
12
|
// src/deploy-actors.ts
|
|
13
13
|
var DEFAULT_WORKER_SURI = DEFAULT_MNEMONIC;
|
|
@@ -2,15 +2,15 @@ import {
|
|
|
2
2
|
classifyErrorArea,
|
|
3
3
|
isInteractive,
|
|
4
4
|
promptYesNo
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-FVLZA7AT.js";
|
|
6
6
|
import {
|
|
7
7
|
VERSION,
|
|
8
8
|
getCurrentSentryTraceId,
|
|
9
9
|
resolveIssueRepoSlug
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-DKWU7YRN.js";
|
|
11
11
|
import {
|
|
12
12
|
package_default
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-WDIQWT27.js";
|
|
14
14
|
|
|
15
15
|
// src/bug-report.ts
|
|
16
16
|
import { execSync, execFileSync } from "child_process";
|
package/dist/chunk-probe.js
CHANGED
|
@@ -8,9 +8,9 @@ import {
|
|
|
8
8
|
getBestBlockNumber,
|
|
9
9
|
probeChunks,
|
|
10
10
|
probeFinalityGap
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-XVE4O7EI.js";
|
|
12
|
+
import "./chunk-DKWU7YRN.js";
|
|
13
|
+
import "./chunk-WDIQWT27.js";
|
|
14
14
|
export {
|
|
15
15
|
ChainProbeCrossValidationError,
|
|
16
16
|
ChainProbeMetadataError,
|
package/dist/commands/login.js
CHANGED
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
} from "../chunk-J7CYVTAW.js";
|
|
4
4
|
import {
|
|
5
5
|
waitForBulletinAuthorization
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-CVJ7TO5U.js";
|
|
7
7
|
import {
|
|
8
8
|
preflightSssAllowance
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-MIH5L6BY.js";
|
|
10
10
|
import {
|
|
11
11
|
statementSigningAccount
|
|
12
12
|
} from "../chunk-GRPLHUYC.js";
|
|
@@ -15,11 +15,11 @@ import "../chunk-IW3X2MJF.js";
|
|
|
15
15
|
import "../chunk-KOSF5FDO.js";
|
|
16
16
|
import "../chunk-J3NIXHZZ.js";
|
|
17
17
|
import "../chunk-S7EM5VMW.js";
|
|
18
|
-
import "../chunk-
|
|
19
|
-
import "../chunk-
|
|
20
|
-
import "../chunk-
|
|
18
|
+
import "../chunk-ZNYW2GLB.js";
|
|
19
|
+
import "../chunk-FVLZA7AT.js";
|
|
20
|
+
import "../chunk-XVE4O7EI.js";
|
|
21
21
|
import "../chunk-C2TS5MER.js";
|
|
22
|
-
import "../chunk-
|
|
22
|
+
import "../chunk-VKNSYLOF.js";
|
|
23
23
|
import "../chunk-JQKKMUCT.js";
|
|
24
24
|
import {
|
|
25
25
|
BULLETIN_RESOURCE,
|
|
@@ -36,15 +36,15 @@ import {
|
|
|
36
36
|
getAuthClient,
|
|
37
37
|
getPeopleChainEndpoints,
|
|
38
38
|
resolveBulletinEndpoints
|
|
39
|
-
} from "../chunk-
|
|
39
|
+
} from "../chunk-22I5RPBK.js";
|
|
40
40
|
import {
|
|
41
41
|
CLI_NAME
|
|
42
42
|
} from "../chunk-TSPERKUS.js";
|
|
43
|
-
import "../chunk-
|
|
43
|
+
import "../chunk-5ABLSTDB.js";
|
|
44
44
|
import "../chunk-SI2ZUOYD.js";
|
|
45
45
|
import "../chunk-4AEFFDHP.js";
|
|
46
|
-
import "../chunk-
|
|
47
|
-
import "../chunk-
|
|
46
|
+
import "../chunk-DKWU7YRN.js";
|
|
47
|
+
import "../chunk-WDIQWT27.js";
|
|
48
48
|
import {
|
|
49
49
|
loadEnvironments
|
|
50
50
|
} from "../chunk-JSYQ3JQS.js";
|
package/dist/commands/logout.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearSssAllowanceCache
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-MIH5L6BY.js";
|
|
4
4
|
import "../chunk-GRPLHUYC.js";
|
|
5
5
|
import "../chunk-JQKKMUCT.js";
|
|
6
6
|
import "../chunk-5FLTDWWP.js";
|
|
@@ -9,10 +9,10 @@ import {
|
|
|
9
9
|
} from "../chunk-RIRDBSBG.js";
|
|
10
10
|
import {
|
|
11
11
|
getAuthClient
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-22I5RPBK.js";
|
|
13
13
|
import "../chunk-TSPERKUS.js";
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-DKWU7YRN.js";
|
|
15
|
+
import "../chunk-WDIQWT27.js";
|
|
16
16
|
import "../chunk-JSYQ3JQS.js";
|
|
17
17
|
import "../chunk-ZOC4GITL.js";
|
|
18
18
|
|
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
DEFAULT_MNEMONIC,
|
|
6
6
|
DotNS
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-5ABLSTDB.js";
|
|
8
8
|
import "../chunk-SI2ZUOYD.js";
|
|
9
9
|
import "../chunk-4AEFFDHP.js";
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-DKWU7YRN.js";
|
|
11
|
+
import "../chunk-WDIQWT27.js";
|
|
12
12
|
import {
|
|
13
13
|
getPopSelfServeConfig,
|
|
14
14
|
loadEnvironments,
|
package/dist/commands/whoami.js
CHANGED
|
@@ -2,12 +2,12 @@ import {
|
|
|
2
2
|
STALE_SESSION_MESSAGE,
|
|
3
3
|
getAuthClient,
|
|
4
4
|
hasPersistedSession
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-22I5RPBK.js";
|
|
6
6
|
import {
|
|
7
7
|
CLI_NAME
|
|
8
8
|
} from "../chunk-TSPERKUS.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-DKWU7YRN.js";
|
|
10
|
+
import "../chunk-WDIQWT27.js";
|
|
11
11
|
import "../chunk-JSYQ3JQS.js";
|
|
12
12
|
import "../chunk-ZOC4GITL.js";
|
|
13
13
|
|
package/dist/deploy-actors.js
CHANGED
|
@@ -2,17 +2,17 @@ import {
|
|
|
2
2
|
MainnetDefaultWorkerError,
|
|
3
3
|
resolveDeployActors,
|
|
4
4
|
resolveStorageSigner
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-VKNSYLOF.js";
|
|
6
6
|
import "./chunk-JQKKMUCT.js";
|
|
7
7
|
import "./chunk-5FLTDWWP.js";
|
|
8
8
|
import "./chunk-RIRDBSBG.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-22I5RPBK.js";
|
|
10
10
|
import "./chunk-TSPERKUS.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-5ABLSTDB.js";
|
|
12
12
|
import "./chunk-SI2ZUOYD.js";
|
|
13
13
|
import "./chunk-4AEFFDHP.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-DKWU7YRN.js";
|
|
15
|
+
import "./chunk-WDIQWT27.js";
|
|
16
16
|
import "./chunk-JSYQ3JQS.js";
|
|
17
17
|
import "./chunk-ZOC4GITL.js";
|
|
18
18
|
export {
|
package/dist/deploy.js
CHANGED
|
@@ -55,29 +55,29 @@ import {
|
|
|
55
55
|
storeDirectoryV2,
|
|
56
56
|
storeFile,
|
|
57
57
|
unpublish
|
|
58
|
-
} from "./chunk-
|
|
59
|
-
import "./chunk-
|
|
58
|
+
} from "./chunk-CVJ7TO5U.js";
|
|
59
|
+
import "./chunk-MIH5L6BY.js";
|
|
60
60
|
import "./chunk-GRPLHUYC.js";
|
|
61
61
|
import "./chunk-HOTQDYHD.js";
|
|
62
62
|
import "./chunk-IW3X2MJF.js";
|
|
63
63
|
import "./chunk-KOSF5FDO.js";
|
|
64
64
|
import "./chunk-J3NIXHZZ.js";
|
|
65
65
|
import "./chunk-S7EM5VMW.js";
|
|
66
|
-
import "./chunk-
|
|
67
|
-
import "./chunk-
|
|
68
|
-
import "./chunk-
|
|
66
|
+
import "./chunk-ZNYW2GLB.js";
|
|
67
|
+
import "./chunk-FVLZA7AT.js";
|
|
68
|
+
import "./chunk-XVE4O7EI.js";
|
|
69
69
|
import "./chunk-C2TS5MER.js";
|
|
70
|
-
import "./chunk-
|
|
70
|
+
import "./chunk-VKNSYLOF.js";
|
|
71
71
|
import "./chunk-JQKKMUCT.js";
|
|
72
72
|
import "./chunk-5FLTDWWP.js";
|
|
73
73
|
import "./chunk-RIRDBSBG.js";
|
|
74
|
-
import "./chunk-
|
|
74
|
+
import "./chunk-22I5RPBK.js";
|
|
75
75
|
import "./chunk-TSPERKUS.js";
|
|
76
|
-
import "./chunk-
|
|
76
|
+
import "./chunk-5ABLSTDB.js";
|
|
77
77
|
import "./chunk-SI2ZUOYD.js";
|
|
78
78
|
import "./chunk-4AEFFDHP.js";
|
|
79
|
-
import "./chunk-
|
|
80
|
-
import "./chunk-
|
|
79
|
+
import "./chunk-DKWU7YRN.js";
|
|
80
|
+
import "./chunk-WDIQWT27.js";
|
|
81
81
|
import "./chunk-JSYQ3JQS.js";
|
|
82
82
|
import {
|
|
83
83
|
EXIT_CODE_NO_RETRY,
|
package/dist/dotns.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ interface OwnershipResult {
|
|
|
67
67
|
}
|
|
68
68
|
declare const TX_KIND_HASH: "hash";
|
|
69
69
|
declare const TX_KIND_NONCE_ADVANCED: "nonce-advanced";
|
|
70
|
+
declare const TX_KIND_BEST_BLOCK: "best-block";
|
|
70
71
|
declare const ATTR_TX_RESOLUTION_KIND = "deploy.dotns.tx_resolution_kind";
|
|
71
72
|
type TxResolution = {
|
|
72
73
|
kind: typeof TX_KIND_HASH;
|
|
@@ -78,6 +79,8 @@ type TxResolution = {
|
|
|
78
79
|
} | {
|
|
79
80
|
kind: typeof TX_KIND_NONCE_ADVANCED;
|
|
80
81
|
rpc: string;
|
|
82
|
+
} | {
|
|
83
|
+
kind: typeof TX_KIND_BEST_BLOCK;
|
|
81
84
|
};
|
|
82
85
|
interface PriceValidationResult {
|
|
83
86
|
priceWei: bigint;
|
|
@@ -147,6 +150,7 @@ declare const TX_TIMEOUT_MS: number;
|
|
|
147
150
|
declare const TX_CHAIN_TIME_BUDGET_MS: number;
|
|
148
151
|
declare const TX_WALL_CLOCK_CEILING_MS: number;
|
|
149
152
|
declare const TX_NO_PROGRESS_MS: number;
|
|
153
|
+
declare const DOTNS_BEST_BLOCK_GRACE_MS: number;
|
|
150
154
|
declare const WS_HEARTBEAT_TIMEOUT_MS: number;
|
|
151
155
|
declare const DOTNS_TX_MAX_ATTEMPTS: number;
|
|
152
156
|
/**
|
|
@@ -705,4 +709,4 @@ declare class DotNS {
|
|
|
705
709
|
}
|
|
706
710
|
declare const dotns: DotNS;
|
|
707
711
|
|
|
708
|
-
export { ATTR_TX_RESOLUTION_KIND, type AliasAccountClassification, type AliasAccountState, CONNECTION_TIMEOUT_MS, CONTRACTS, ContractDryRunRevertError, DECIMALS, DEFAULT_MNEMONIC, DOTNS_TX_MAX_ATTEMPTS, DOT_NODE, DotNS, type DotNSConnectOptions, type DotnsPreflightResult, type DotnsSuccessAction, MINIMUM_REGISTER_STORAGE_DEPOSIT, NATIVE_TO_ETH_RATIO, NONCE_ADVANCE_VERIFY_RETRIES, NONCE_ADVANCE_VERIFY_RETRY_INTERVAL_MS, OPERATION_TIMEOUT_MS, type OwnershipResult, PUBLISHER_ABI, type ParsedDomainName, type PhoneSignatureStep, type PriceValidationResult, ProofOfPersonhoodStatus, PublisherNotSupportedError, RPC_ENDPOINTS, TX_CHAIN_TIME_BUDGET_MS, TX_KIND_HASH, TX_KIND_NONCE_ADVANCED, TX_NO_PROGRESS_MS, TX_TIMEOUT_MS, TX_WALL_CLOCK_CEILING_MS, type TxResolution, VERIFY_EFFECT_CHAIN_SECONDS, WS_HEARTBEAT_TIMEOUT_MS, WatcherSilentNoEventError, __formatContractDryRunFailureForTest, bufferedWeiToNative, canRegister, classifyAliasAccountRow, classifyDotnsLabel, classifyTxRetryDecision, classifyWatcherSilentFastFail, computeDomainTokenId, convertToHexString, convertWeiToNative, countTrailingDigits, decodePublisherRevert, dotns, dotnsRetryBackoffMs, feeFloorFor, fetchNonce, fmtPas, formatDispatchError, formatPersonhoodRemediation, formatPopShortfallReason, isCommitmentMature, isCommitmentTimingBarerevert, makeRetryStatusFilter, parseDomainName, parseProofOfPersonhoodStatus, popStatusName, registerDepositWei, sanitizeDomainLabel, shouldRegateBeforeResign, shouldRetryTxAttempt, stripTrailingDigits, validateDomainLabel, verifyEffectWithGrace, verifyNonceAdvanced, weiToNative };
|
|
712
|
+
export { ATTR_TX_RESOLUTION_KIND, type AliasAccountClassification, type AliasAccountState, CONNECTION_TIMEOUT_MS, CONTRACTS, ContractDryRunRevertError, DECIMALS, DEFAULT_MNEMONIC, DOTNS_BEST_BLOCK_GRACE_MS, DOTNS_TX_MAX_ATTEMPTS, DOT_NODE, DotNS, type DotNSConnectOptions, type DotnsPreflightResult, type DotnsSuccessAction, MINIMUM_REGISTER_STORAGE_DEPOSIT, NATIVE_TO_ETH_RATIO, NONCE_ADVANCE_VERIFY_RETRIES, NONCE_ADVANCE_VERIFY_RETRY_INTERVAL_MS, OPERATION_TIMEOUT_MS, type OwnershipResult, PUBLISHER_ABI, type ParsedDomainName, type PhoneSignatureStep, type PriceValidationResult, ProofOfPersonhoodStatus, PublisherNotSupportedError, RPC_ENDPOINTS, ReviveClientWrapper, TX_CHAIN_TIME_BUDGET_MS, TX_KIND_BEST_BLOCK, TX_KIND_HASH, TX_KIND_NONCE_ADVANCED, TX_NO_PROGRESS_MS, TX_TIMEOUT_MS, TX_WALL_CLOCK_CEILING_MS, type TxResolution, VERIFY_EFFECT_CHAIN_SECONDS, WS_HEARTBEAT_TIMEOUT_MS, WatcherSilentNoEventError, __formatContractDryRunFailureForTest, bufferedWeiToNative, canRegister, classifyAliasAccountRow, classifyDotnsLabel, classifyTxRetryDecision, classifyWatcherSilentFastFail, computeDomainTokenId, convertToHexString, convertWeiToNative, countTrailingDigits, decodePublisherRevert, dotns, dotnsRetryBackoffMs, feeFloorFor, fetchNonce, fmtPas, formatDispatchError, formatPersonhoodRemediation, formatPopShortfallReason, isCommitmentMature, isCommitmentTimingBarerevert, makeRetryStatusFilter, parseDomainName, parseProofOfPersonhoodStatus, popStatusName, registerDepositWei, sanitizeDomainLabel, shouldRegateBeforeResign, shouldRetryTxAttempt, stripTrailingDigits, validateDomainLabel, verifyEffectWithGrace, verifyNonceAdvanced, weiToNative };
|
package/dist/dotns.js
CHANGED
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
ContractDryRunRevertError,
|
|
6
6
|
DECIMALS,
|
|
7
7
|
DEFAULT_MNEMONIC,
|
|
8
|
+
DOTNS_BEST_BLOCK_GRACE_MS,
|
|
8
9
|
DOTNS_TX_MAX_ATTEMPTS,
|
|
9
10
|
DOT_NODE,
|
|
10
11
|
DotNS,
|
|
@@ -17,7 +18,9 @@ import {
|
|
|
17
18
|
ProofOfPersonhoodStatus,
|
|
18
19
|
PublisherNotSupportedError,
|
|
19
20
|
RPC_ENDPOINTS,
|
|
21
|
+
ReviveClientWrapper,
|
|
20
22
|
TX_CHAIN_TIME_BUDGET_MS,
|
|
23
|
+
TX_KIND_BEST_BLOCK,
|
|
21
24
|
TX_KIND_HASH,
|
|
22
25
|
TX_KIND_NONCE_ADVANCED,
|
|
23
26
|
TX_NO_PROGRESS_MS,
|
|
@@ -61,11 +64,11 @@ import {
|
|
|
61
64
|
verifyEffectWithGrace,
|
|
62
65
|
verifyNonceAdvanced,
|
|
63
66
|
weiToNative
|
|
64
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-5ABLSTDB.js";
|
|
65
68
|
import "./chunk-SI2ZUOYD.js";
|
|
66
69
|
import "./chunk-4AEFFDHP.js";
|
|
67
|
-
import "./chunk-
|
|
68
|
-
import "./chunk-
|
|
70
|
+
import "./chunk-DKWU7YRN.js";
|
|
71
|
+
import "./chunk-WDIQWT27.js";
|
|
69
72
|
import "./chunk-JSYQ3JQS.js";
|
|
70
73
|
import "./chunk-ZOC4GITL.js";
|
|
71
74
|
export {
|
|
@@ -75,6 +78,7 @@ export {
|
|
|
75
78
|
ContractDryRunRevertError,
|
|
76
79
|
DECIMALS,
|
|
77
80
|
DEFAULT_MNEMONIC,
|
|
81
|
+
DOTNS_BEST_BLOCK_GRACE_MS,
|
|
78
82
|
DOTNS_TX_MAX_ATTEMPTS,
|
|
79
83
|
DOT_NODE,
|
|
80
84
|
DotNS,
|
|
@@ -87,7 +91,9 @@ export {
|
|
|
87
91
|
ProofOfPersonhoodStatus,
|
|
88
92
|
PublisherNotSupportedError,
|
|
89
93
|
RPC_ENDPOINTS,
|
|
94
|
+
ReviveClientWrapper,
|
|
90
95
|
TX_CHAIN_TIME_BUDGET_MS,
|
|
96
|
+
TX_KIND_BEST_BLOCK,
|
|
91
97
|
TX_KIND_HASH,
|
|
92
98
|
TX_KIND_NONCE_ADVANCED,
|
|
93
99
|
TX_NO_PROGRESS_MS,
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-362JEZKM.js";
|
|
5
5
|
import {
|
|
6
6
|
publishManifest
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-SHHY47YP.js";
|
|
8
8
|
import {
|
|
9
9
|
DEFAULT_TEXT_RECORD_BUDGET_BYTES,
|
|
10
10
|
PLACEHOLDER_CID,
|
|
@@ -24,8 +24,8 @@ import {
|
|
|
24
24
|
deploy,
|
|
25
25
|
merkleizeJS,
|
|
26
26
|
merkleizeWithStableOrder
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-CVJ7TO5U.js";
|
|
28
|
+
import "./chunk-MIH5L6BY.js";
|
|
29
29
|
import "./chunk-GRPLHUYC.js";
|
|
30
30
|
import "./chunk-HOTQDYHD.js";
|
|
31
31
|
import {
|
|
@@ -49,24 +49,24 @@ import {
|
|
|
49
49
|
isVolatilePath,
|
|
50
50
|
parseManifest
|
|
51
51
|
} from "./chunk-S7EM5VMW.js";
|
|
52
|
-
import "./chunk-
|
|
53
|
-
import "./chunk-
|
|
52
|
+
import "./chunk-ZNYW2GLB.js";
|
|
53
|
+
import "./chunk-FVLZA7AT.js";
|
|
54
54
|
import {
|
|
55
55
|
probeChunks
|
|
56
|
-
} from "./chunk-
|
|
56
|
+
} from "./chunk-XVE4O7EI.js";
|
|
57
57
|
import "./chunk-C2TS5MER.js";
|
|
58
|
-
import "./chunk-
|
|
58
|
+
import "./chunk-VKNSYLOF.js";
|
|
59
59
|
import "./chunk-JQKKMUCT.js";
|
|
60
60
|
import "./chunk-5FLTDWWP.js";
|
|
61
61
|
import "./chunk-RIRDBSBG.js";
|
|
62
|
-
import "./chunk-
|
|
62
|
+
import "./chunk-22I5RPBK.js";
|
|
63
63
|
import "./chunk-TSPERKUS.js";
|
|
64
64
|
import {
|
|
65
65
|
DEFAULT_MNEMONIC,
|
|
66
66
|
DotNS,
|
|
67
67
|
parseDomainName,
|
|
68
68
|
sanitizeDomainLabel
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-5ABLSTDB.js";
|
|
70
70
|
import "./chunk-SI2ZUOYD.js";
|
|
71
71
|
import {
|
|
72
72
|
BULLETIN_BLOCKS_PER_DAY,
|
|
@@ -82,7 +82,7 @@ import {
|
|
|
82
82
|
poolAccountDerivationPath,
|
|
83
83
|
selectAccount
|
|
84
84
|
} from "./chunk-4AEFFDHP.js";
|
|
85
|
-
import "./chunk-
|
|
85
|
+
import "./chunk-DKWU7YRN.js";
|
|
86
86
|
import {
|
|
87
87
|
VERSION,
|
|
88
88
|
loadRunState,
|
|
@@ -92,7 +92,7 @@ import {
|
|
|
92
92
|
shouldSkipStaleWarning,
|
|
93
93
|
stateFilePath,
|
|
94
94
|
writeRunState
|
|
95
|
-
} from "./chunk-
|
|
95
|
+
} from "./chunk-WDIQWT27.js";
|
|
96
96
|
import {
|
|
97
97
|
DEFAULT_ENV_ID,
|
|
98
98
|
deepMergeEnvironments,
|
package/dist/manifest/publish.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
import {
|
|
2
2
|
publishManifest
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-SHHY47YP.js";
|
|
4
4
|
import "../chunk-WIMRJK32.js";
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-CVJ7TO5U.js";
|
|
6
|
+
import "../chunk-MIH5L6BY.js";
|
|
7
7
|
import "../chunk-GRPLHUYC.js";
|
|
8
8
|
import "../chunk-HOTQDYHD.js";
|
|
9
9
|
import "../chunk-IW3X2MJF.js";
|
|
10
10
|
import "../chunk-KOSF5FDO.js";
|
|
11
11
|
import "../chunk-J3NIXHZZ.js";
|
|
12
12
|
import "../chunk-S7EM5VMW.js";
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
13
|
+
import "../chunk-ZNYW2GLB.js";
|
|
14
|
+
import "../chunk-FVLZA7AT.js";
|
|
15
|
+
import "../chunk-XVE4O7EI.js";
|
|
16
16
|
import "../chunk-C2TS5MER.js";
|
|
17
|
-
import "../chunk-
|
|
17
|
+
import "../chunk-VKNSYLOF.js";
|
|
18
18
|
import "../chunk-JQKKMUCT.js";
|
|
19
19
|
import "../chunk-5FLTDWWP.js";
|
|
20
20
|
import "../chunk-RIRDBSBG.js";
|
|
21
|
-
import "../chunk-
|
|
21
|
+
import "../chunk-22I5RPBK.js";
|
|
22
22
|
import "../chunk-TSPERKUS.js";
|
|
23
|
-
import "../chunk-
|
|
23
|
+
import "../chunk-5ABLSTDB.js";
|
|
24
24
|
import "../chunk-SI2ZUOYD.js";
|
|
25
25
|
import "../chunk-4AEFFDHP.js";
|
|
26
|
-
import "../chunk-
|
|
27
|
-
import "../chunk-
|
|
26
|
+
import "../chunk-DKWU7YRN.js";
|
|
27
|
+
import "../chunk-WDIQWT27.js";
|
|
28
28
|
import "../chunk-JSYQ3JQS.js";
|
|
29
29
|
import "../chunk-ZOC4GITL.js";
|
|
30
30
|
export {
|
package/dist/memory-report.js
CHANGED
package/dist/merkle.js
CHANGED
|
@@ -6,29 +6,29 @@ import {
|
|
|
6
6
|
merkleizeKuboBackend,
|
|
7
7
|
merkleizeWithStableOrder,
|
|
8
8
|
rebuildOrderedCarFromBytes
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-CVJ7TO5U.js";
|
|
10
|
+
import "./chunk-MIH5L6BY.js";
|
|
11
11
|
import "./chunk-GRPLHUYC.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-
|
|
17
|
+
import "./chunk-ZNYW2GLB.js";
|
|
18
|
+
import "./chunk-FVLZA7AT.js";
|
|
19
|
+
import "./chunk-XVE4O7EI.js";
|
|
20
20
|
import "./chunk-C2TS5MER.js";
|
|
21
|
-
import "./chunk-
|
|
21
|
+
import "./chunk-VKNSYLOF.js";
|
|
22
22
|
import "./chunk-JQKKMUCT.js";
|
|
23
23
|
import "./chunk-5FLTDWWP.js";
|
|
24
24
|
import "./chunk-RIRDBSBG.js";
|
|
25
|
-
import "./chunk-
|
|
25
|
+
import "./chunk-22I5RPBK.js";
|
|
26
26
|
import "./chunk-TSPERKUS.js";
|
|
27
|
-
import "./chunk-
|
|
27
|
+
import "./chunk-5ABLSTDB.js";
|
|
28
28
|
import "./chunk-SI2ZUOYD.js";
|
|
29
29
|
import "./chunk-4AEFFDHP.js";
|
|
30
|
-
import "./chunk-
|
|
31
|
-
import "./chunk-
|
|
30
|
+
import "./chunk-DKWU7YRN.js";
|
|
31
|
+
import "./chunk-WDIQWT27.js";
|
|
32
32
|
import "./chunk-JSYQ3JQS.js";
|
|
33
33
|
import "./chunk-ZOC4GITL.js";
|
|
34
34
|
export {
|
|
@@ -21,15 +21,15 @@ import {
|
|
|
21
21
|
} from "../chunk-ZYVGHDMU.js";
|
|
22
22
|
import {
|
|
23
23
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
24
|
-
} from "../chunk-
|
|
24
|
+
} from "../chunk-5ABLSTDB.js";
|
|
25
25
|
import {
|
|
26
26
|
DOTNS_CONTEXT_BYTES,
|
|
27
27
|
PEOPLE_MEMBER_IDENTIFIER_HEX,
|
|
28
28
|
PGAS_ASSET_ID
|
|
29
29
|
} from "../chunk-SI2ZUOYD.js";
|
|
30
30
|
import "../chunk-4AEFFDHP.js";
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
31
|
+
import "../chunk-DKWU7YRN.js";
|
|
32
|
+
import "../chunk-WDIQWT27.js";
|
|
33
33
|
import {
|
|
34
34
|
loadEnvironments
|
|
35
35
|
} from "../chunk-JSYQ3JQS.js";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-5ABLSTDB.js";
|
|
4
4
|
import "../chunk-SI2ZUOYD.js";
|
|
5
5
|
import "../chunk-4AEFFDHP.js";
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-DKWU7YRN.js";
|
|
7
|
+
import "../chunk-WDIQWT27.js";
|
|
8
8
|
import {
|
|
9
9
|
loadEnvironments
|
|
10
10
|
} from "../chunk-JSYQ3JQS.js";
|
package/dist/run-state.js
CHANGED
|
@@ -4,12 +4,12 @@ import {
|
|
|
4
4
|
preflightSssAllowance,
|
|
5
5
|
sssPeriodEndSec,
|
|
6
6
|
writeSssAllowanceCache
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-MIH5L6BY.js";
|
|
8
8
|
import "./chunk-GRPLHUYC.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-22I5RPBK.js";
|
|
10
10
|
import "./chunk-TSPERKUS.js";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-DKWU7YRN.js";
|
|
12
|
+
import "./chunk-WDIQWT27.js";
|
|
13
13
|
import "./chunk-JSYQ3JQS.js";
|
|
14
14
|
import "./chunk-ZOC4GITL.js";
|
|
15
15
|
export {
|
package/dist/storage-signer.js
CHANGED
|
@@ -8,29 +8,29 @@ import {
|
|
|
8
8
|
waitForBulletinAuthorization,
|
|
9
9
|
withTransientRetry,
|
|
10
10
|
writeBulletinSlotKey
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-CVJ7TO5U.js";
|
|
12
|
+
import "./chunk-MIH5L6BY.js";
|
|
13
13
|
import "./chunk-GRPLHUYC.js";
|
|
14
14
|
import "./chunk-HOTQDYHD.js";
|
|
15
15
|
import "./chunk-IW3X2MJF.js";
|
|
16
16
|
import "./chunk-KOSF5FDO.js";
|
|
17
17
|
import "./chunk-J3NIXHZZ.js";
|
|
18
18
|
import "./chunk-S7EM5VMW.js";
|
|
19
|
-
import "./chunk-
|
|
20
|
-
import "./chunk-
|
|
21
|
-
import "./chunk-
|
|
19
|
+
import "./chunk-ZNYW2GLB.js";
|
|
20
|
+
import "./chunk-FVLZA7AT.js";
|
|
21
|
+
import "./chunk-XVE4O7EI.js";
|
|
22
22
|
import "./chunk-C2TS5MER.js";
|
|
23
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-VKNSYLOF.js";
|
|
24
24
|
import "./chunk-JQKKMUCT.js";
|
|
25
25
|
import "./chunk-5FLTDWWP.js";
|
|
26
26
|
import "./chunk-RIRDBSBG.js";
|
|
27
|
-
import "./chunk-
|
|
27
|
+
import "./chunk-22I5RPBK.js";
|
|
28
28
|
import "./chunk-TSPERKUS.js";
|
|
29
|
-
import "./chunk-
|
|
29
|
+
import "./chunk-5ABLSTDB.js";
|
|
30
30
|
import "./chunk-SI2ZUOYD.js";
|
|
31
31
|
import "./chunk-4AEFFDHP.js";
|
|
32
|
-
import "./chunk-
|
|
33
|
-
import "./chunk-
|
|
32
|
+
import "./chunk-DKWU7YRN.js";
|
|
33
|
+
import "./chunk-WDIQWT27.js";
|
|
34
34
|
import "./chunk-JSYQ3JQS.js";
|
|
35
35
|
import "./chunk-ZOC4GITL.js";
|
|
36
36
|
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-FVLZA7AT.js";
|
|
15
|
+
import "./chunk-DKWU7YRN.js";
|
|
16
|
+
import "./chunk-WDIQWT27.js";
|
|
17
17
|
export {
|
|
18
18
|
assessVersion,
|
|
19
19
|
checkNodeVersion,
|