@parity/product-deploy 0.8.2-rc.0 → 0.8.2-rc.1

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.
@@ -11,6 +11,12 @@
11
11
  "autoAccountMapping": true,
12
12
  "nativeToEthRatio": 100000000,
13
13
  "registerStorageDeposit": 2000000000000,
14
+ "popSelfServe": {
15
+ "sudoEnvLabel": "Preview",
16
+ "personhoodFaucetUrl": "https://sudo.personhood.dev/personhood-faucet",
17
+ "dotnsBootstrapUrl": "https://sudo.personhood.dev/dotns-bootstrap",
18
+ "stateAwareGuidance": true
19
+ },
14
20
  "contracts": {
15
21
  "DOTNS_PROTOCOL_REGISTRY": "0x984F17a9077808F4B7e127F76806A1D59546B5B6",
16
22
  "DOTNS_REGISTRAR": "0x061273AeF34e8ab9Ca08E199d7440E2639Fc2088",
@@ -9,10 +9,10 @@ import {
9
9
  offerBugReport,
10
10
  scrubSecrets,
11
11
  setDeployContext
12
- } from "./chunk-CSDXTU3G.js";
13
- import "./chunk-R2ORPNZC.js";
14
- import "./chunk-5EJ247OO.js";
15
- import "./chunk-N27JUWU2.js";
12
+ } from "./chunk-H64ZLWW2.js";
13
+ import "./chunk-EJWZGSHD.js";
14
+ import "./chunk-RIAMPAL2.js";
15
+ import "./chunk-NJPBXF5Z.js";
16
16
  export {
17
17
  buildCliFlagsSummary,
18
18
  buildLabels,
@@ -8,10 +8,10 @@ import {
8
8
  setDeploySentryTag,
9
9
  truncateAddress,
10
10
  withSpan
11
- } from "./chunk-5EJ247OO.js";
11
+ } from "./chunk-RIAMPAL2.js";
12
12
  import {
13
13
  validateContractAddresses
14
- } from "./chunk-XFX4VODU.js";
14
+ } from "./chunk-5K3RI5C2.js";
15
15
  import {
16
16
  NonRetryableError
17
17
  } from "./chunk-ZOC4GITL.js";
@@ -895,6 +895,15 @@ function classifyAliasAccountRow(row) {
895
895
  }
896
896
  return { state: "wrong-context", storedContextHex: contextHex, revision };
897
897
  }
898
+ function formatSelfServeSteps(popSelfServe) {
899
+ const steps = [];
900
+ if (popSelfServe.faucetUrl) {
901
+ steps.push(`Fund the service account mnemonic via ${popSelfServe.faucetUrl}`);
902
+ }
903
+ steps.push(`Go to ${popSelfServe.personhoodFaucetUrl}, pick your env (e.g. ${popSelfServe.sudoEnvLabel}), and paste the mnemonic`);
904
+ steps.push(`Go to ${popSelfServe.dotnsBootstrapUrl} and follow each step (first and last can probably be skipped)`);
905
+ return steps.map((s, i) => ` ${i + 1}. ${s}`).join("\n");
906
+ }
898
907
  function formatPersonhoodRemediation(state, popSelfServe, environmentId) {
899
908
  if (!popSelfServe?.stateAwareGuidance) {
900
909
  return "Self-attestation is no longer available. Contact the DotNS team for whitelisting / Personhood status help.";
@@ -902,9 +911,7 @@ function formatPersonhoodRemediation(state, popSelfServe, environmentId) {
902
911
  switch (state.state) {
903
912
  case "not-bound":
904
913
  return `Your account has no DotNS alias binding on ${environmentId ?? "this environment"}. On testnets you can self-serve:
905
- 1. Fund the service account mnemonic via ${popSelfServe.faucetUrl}
906
- 2. Go to ${popSelfServe.personhoodFaucetUrl}, pick your env (e.g. ${popSelfServe.sudoEnvLabel}), and paste the mnemonic
907
- 3. Go to ${popSelfServe.dotnsBootstrapUrl} and follow each step (first and last can probably be skipped)`;
914
+ ` + formatSelfServeSteps(popSelfServe);
908
915
  case "bound-likely-stale":
909
916
  return `Your alias binding exists but may have a stale ring revision. Run \`node tools/reprove-alias.mjs --mnemonic <your-mnemonic> --env ${environmentId ?? "this environment"}\` to refresh the proof, then retry the registration.`;
910
917
  case "wrong-context":
@@ -922,12 +929,7 @@ function formatPopShortfallReason(opts) {
922
929
  const state = aliasState ?? { state: "not-bound" };
923
930
  testnetBlock = "\n\n" + formatPersonhoodRemediation(state, popSelfServe, environmentId);
924
931
  } else {
925
- testnetBlock = `
926
-
927
- On testnets you can self-serve:
928
- 1. Fund the service account mnemonic via ${popSelfServe.faucetUrl}
929
- 2. Go to ${popSelfServe.personhoodFaucetUrl}, pick your env (e.g. ${popSelfServe.sudoEnvLabel}), and paste the mnemonic
930
- 3. Go to ${popSelfServe.dotnsBootstrapUrl} and follow each step (first and last can probably be skipped)`;
932
+ testnetBlock = "\n\nOn testnets you can self-serve:\n" + formatSelfServeSteps(popSelfServe);
931
933
  }
932
934
  }
933
935
  const alternativesBlock = `
@@ -20,6 +20,12 @@ var environments_default = {
20
20
  autoAccountMapping: true,
21
21
  nativeToEthRatio: 1e8,
22
22
  registerStorageDeposit: 2e12,
23
+ popSelfServe: {
24
+ sudoEnvLabel: "Preview",
25
+ personhoodFaucetUrl: "https://sudo.personhood.dev/personhood-faucet",
26
+ dotnsBootstrapUrl: "https://sudo.personhood.dev/dotns-bootstrap",
27
+ stateAwareGuidance: true
28
+ },
23
29
  contracts: {
24
30
  DOTNS_PROTOCOL_REGISTRY: "0x984F17a9077808F4B7e127F76806A1D59546B5B6",
25
31
  DOTNS_REGISTRAR: "0x061273AeF34e8ab9Ca08E199d7440E2639Fc2088",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  VERSION
3
- } from "./chunk-5EJ247OO.js";
3
+ } from "./chunk-RIAMPAL2.js";
4
4
 
5
5
  // src/version-check.ts
6
6
  import { execSync, execFileSync } from "child_process";
@@ -2,11 +2,11 @@ import {
2
2
  classifyErrorArea,
3
3
  isInteractive,
4
4
  promptYesNo
5
- } from "./chunk-R2ORPNZC.js";
5
+ } from "./chunk-EJWZGSHD.js";
6
6
  import {
7
7
  VERSION,
8
8
  getCurrentSentryTraceId
9
- } from "./chunk-5EJ247OO.js";
9
+ } from "./chunk-RIAMPAL2.js";
10
10
 
11
11
  // src/bug-report.ts
12
12
  import { execSync, execFileSync } from "child_process";
@@ -20,10 +20,10 @@ import {
20
20
  } from "./chunk-S7EM5VMW.js";
21
21
  import {
22
22
  setDeployContext
23
- } from "./chunk-CSDXTU3G.js";
23
+ } from "./chunk-H64ZLWW2.js";
24
24
  import {
25
25
  probeChunks
26
- } from "./chunk-4Y4ZBN45.js";
26
+ } from "./chunk-WSBDIHFZ.js";
27
27
  import {
28
28
  packSection
29
29
  } from "./chunk-C2TS5MER.js";
@@ -35,7 +35,7 @@ import {
35
35
  parseDomainName,
36
36
  popStatusName,
37
37
  verifyNonceAdvanced
38
- } from "./chunk-7GYCJPFI.js";
38
+ } from "./chunk-2GBSYVK2.js";
39
39
  import {
40
40
  derivePoolAccounts,
41
41
  detectTestnet,
@@ -57,13 +57,13 @@ import {
57
57
  truncateAddress,
58
58
  withDeploySpan,
59
59
  withSpan
60
- } from "./chunk-5EJ247OO.js";
60
+ } from "./chunk-RIAMPAL2.js";
61
61
  import {
62
62
  DEFAULT_ENV_ID,
63
63
  getPopSelfServeConfig,
64
64
  loadEnvironments,
65
65
  resolveEndpoints
66
- } from "./chunk-XFX4VODU.js";
66
+ } from "./chunk-5K3RI5C2.js";
67
67
  import {
68
68
  NonRetryableError
69
69
  } from "./chunk-ZOC4GITL.js";
@@ -490,8 +490,6 @@ async function storeChunkedContent(chunks, { client: existingClient, unsafeApi:
490
490
  }
491
491
  }
492
492
  }
493
- const requiredTxs = BigInt(chunks.length + 1);
494
- const requiredBytes = BigInt(totalBytes);
495
493
  const readUploadAuthorization = () => Promise.all([
496
494
  unsafeApi.query.TransactionStorage.Authorizations.getValue(Enum("Account", ss58)),
497
495
  unsafeApi.query.System.Number.getValue()
@@ -508,18 +506,9 @@ async function storeChunkedContent(chunks, { client: existingClient, unsafeApi:
508
506
  throw e;
509
507
  }
510
508
  }
511
- const needs = { txs: requiredTxs, bytes: requiredBytes };
512
- const sufficient = await isAuthorizationSufficient(unsafeApi, ss58, uploadAuth, currentBlockNum, needs);
509
+ const sufficient = await isAuthorizationSufficient(unsafeApi, ss58, uploadAuth, currentBlockNum);
513
510
  if (!sufficient) {
514
- console.log(`
515
- Account needs re-authorization (need ${requiredTxs} txs / ${(totalBytes / 1e6).toFixed(1)}MB)`);
516
- console.log(` Attempting to re-authorize with Alice...`);
517
- try {
518
- await ensureAuthorized(unsafeApi, ss58, void 0, needs);
519
- console.log(` Re-authorization successful`);
520
- } catch (e) {
521
- throw new NonRetryableError(`Account ${ss58} has insufficient Bulletin authorization and auto-authorization via Alice failed (${e.message}). Authorize the account on-chain.`);
522
- }
511
+ throw new NonRetryableError(`Account ${ss58} has no active Bulletin authorization (missing or expired). Request authorization on-chain (testnet faucet / personhood / pool bootstrap), then retry.`);
523
512
  }
524
513
  let reconnectionsUsed = 0;
525
514
  const recoveryHistory = [];
@@ -6,7 +6,7 @@ import * as path from "path";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@parity/product-deploy",
9
- version: "0.8.2-rc.0",
9
+ version: "0.8.2-rc.1",
10
10
  private: false,
11
11
  repository: {
12
12
  type: "git",
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  package_default,
3
3
  writeRunState
4
- } from "./chunk-N27JUWU2.js";
4
+ } from "./chunk-NJPBXF5Z.js";
5
5
 
6
6
  // src/memory-report.ts
7
7
  import * as fs2 from "fs";
@@ -6,15 +6,15 @@ import {
6
6
  resolveDotnsConnectOptions,
7
7
  storeDirectory,
8
8
  storeFile
9
- } from "./chunk-RRYHCOOJ.js";
9
+ } from "./chunk-HPPLVGGC.js";
10
10
  import {
11
11
  DotNS
12
- } from "./chunk-7GYCJPFI.js";
12
+ } from "./chunk-2GBSYVK2.js";
13
13
  import {
14
14
  getPopSelfServeConfig,
15
15
  loadEnvironments,
16
16
  resolveEndpoints
17
- } from "./chunk-XFX4VODU.js";
17
+ } from "./chunk-5K3RI5C2.js";
18
18
  import {
19
19
  NonRetryableError
20
20
  } from "./chunk-ZOC4GITL.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  captureWarning
3
- } from "./chunk-5EJ247OO.js";
3
+ } from "./chunk-RIAMPAL2.js";
4
4
 
5
5
  // src/chunk-probe.ts
6
6
  import { Twox128, Blake2128Concat, decAnyMetadata, unifyMetadata } from "@polkadot-api/substrate-bindings";
@@ -5,9 +5,9 @@ import {
5
5
  _decodeStorageValue,
6
6
  _resetProbeSession,
7
7
  probeChunks
8
- } from "./chunk-4Y4ZBN45.js";
9
- import "./chunk-5EJ247OO.js";
10
- import "./chunk-N27JUWU2.js";
8
+ } from "./chunk-WSBDIHFZ.js";
9
+ import "./chunk-RIAMPAL2.js";
10
+ import "./chunk-NJPBXF5Z.js";
11
11
  export {
12
12
  ChainProbeCrossValidationError,
13
13
  ChainProbeMetadataError,
package/dist/deploy.js CHANGED
@@ -39,20 +39,20 @@ import {
39
39
  storeDirectoryV2,
40
40
  storeFile,
41
41
  unpublish
42
- } from "./chunk-RRYHCOOJ.js";
42
+ } from "./chunk-HPPLVGGC.js";
43
43
  import "./chunk-IW3X2MJF.js";
44
44
  import "./chunk-KOSF5FDO.js";
45
45
  import "./chunk-J3NIXHZZ.js";
46
46
  import "./chunk-S7EM5VMW.js";
47
- import "./chunk-CSDXTU3G.js";
48
- import "./chunk-R2ORPNZC.js";
49
- import "./chunk-4Y4ZBN45.js";
47
+ import "./chunk-H64ZLWW2.js";
48
+ import "./chunk-EJWZGSHD.js";
49
+ import "./chunk-WSBDIHFZ.js";
50
50
  import "./chunk-C2TS5MER.js";
51
- import "./chunk-7GYCJPFI.js";
51
+ import "./chunk-2GBSYVK2.js";
52
52
  import "./chunk-JQ5X3VMP.js";
53
- import "./chunk-5EJ247OO.js";
54
- import "./chunk-N27JUWU2.js";
55
- import "./chunk-XFX4VODU.js";
53
+ import "./chunk-RIAMPAL2.js";
54
+ import "./chunk-NJPBXF5Z.js";
55
+ import "./chunk-5K3RI5C2.js";
56
56
  import {
57
57
  EXIT_CODE_NO_RETRY,
58
58
  NonRetryableError
package/dist/dotns.js CHANGED
@@ -50,11 +50,11 @@ import {
50
50
  stripTrailingDigits,
51
51
  validateDomainLabel,
52
52
  verifyNonceAdvanced
53
- } from "./chunk-7GYCJPFI.js";
53
+ } from "./chunk-2GBSYVK2.js";
54
54
  import "./chunk-JQ5X3VMP.js";
55
- import "./chunk-5EJ247OO.js";
56
- import "./chunk-N27JUWU2.js";
57
- import "./chunk-XFX4VODU.js";
55
+ import "./chunk-RIAMPAL2.js";
56
+ import "./chunk-NJPBXF5Z.js";
57
+ import "./chunk-5K3RI5C2.js";
58
58
  import "./chunk-ZOC4GITL.js";
59
59
  export {
60
60
  ATTR_TX_RESOLUTION_KIND,
@@ -2,8 +2,8 @@ declare const DEFAULT_ENV_ID = "paseo-next-v2";
2
2
  interface PopSelfServeConfig {
3
3
  /** The label users select in the sudo.personhood.dev env dropdown — e.g. "Next V2". */
4
4
  sudoEnvLabel: string;
5
- /** Faucet URL for funding the service account on this env. */
6
- faucetUrl: string;
5
+ /** Faucet URL for funding the service account on this env. Omit on envs with no public faucet (accounts funded by ops). */
6
+ faucetUrl?: string;
7
7
  /** Personhood recognition flow URL on the sudo app. */
8
8
  personhoodFaucetUrl: string;
9
9
  /** Asset-Hub alias-binding flow URL on the sudo app. */
@@ -9,7 +9,7 @@ import {
9
9
  loadEnvironments,
10
10
  resolveEndpoints,
11
11
  validateContractAddresses
12
- } from "./chunk-XFX4VODU.js";
12
+ } from "./chunk-5K3RI5C2.js";
13
13
  import "./chunk-ZOC4GITL.js";
14
14
  export {
15
15
  DEFAULT_ENV_ID,
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-PIGHAAM2.js";
10
+ } from "./chunk-TQC3S6NP.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-RRYHCOOJ.js";
27
+ } from "./chunk-HPPLVGGC.js";
28
28
  import {
29
29
  computeStats,
30
30
  renderSummary,
@@ -46,18 +46,18 @@ import {
46
46
  isVolatilePath,
47
47
  parseManifest
48
48
  } from "./chunk-S7EM5VMW.js";
49
- import "./chunk-CSDXTU3G.js";
50
- import "./chunk-R2ORPNZC.js";
49
+ import "./chunk-H64ZLWW2.js";
50
+ import "./chunk-EJWZGSHD.js";
51
51
  import {
52
52
  probeChunks
53
- } from "./chunk-4Y4ZBN45.js";
53
+ } from "./chunk-WSBDIHFZ.js";
54
54
  import "./chunk-C2TS5MER.js";
55
55
  import {
56
56
  DEFAULT_MNEMONIC,
57
57
  DotNS,
58
58
  parseDomainName,
59
59
  sanitizeDomainLabel
60
- } from "./chunk-7GYCJPFI.js";
60
+ } from "./chunk-2GBSYVK2.js";
61
61
  import {
62
62
  bootstrapPool,
63
63
  derivePoolAccounts,
@@ -65,7 +65,7 @@ import {
65
65
  fetchPoolAuthorizations,
66
66
  selectAccount
67
67
  } from "./chunk-JQ5X3VMP.js";
68
- import "./chunk-5EJ247OO.js";
68
+ import "./chunk-RIAMPAL2.js";
69
69
  import {
70
70
  VERSION,
71
71
  loadRunState,
@@ -75,7 +75,7 @@ import {
75
75
  shouldSkipStaleWarning,
76
76
  stateFilePath,
77
77
  writeRunState
78
- } from "./chunk-N27JUWU2.js";
78
+ } from "./chunk-NJPBXF5Z.js";
79
79
  import {
80
80
  DEFAULT_ENV_ID,
81
81
  deepMergeEnvironments,
@@ -86,7 +86,7 @@ import {
86
86
  loadEnvironments,
87
87
  resolveEndpoints,
88
88
  validateContractAddresses
89
- } from "./chunk-XFX4VODU.js";
89
+ } from "./chunk-5K3RI5C2.js";
90
90
  import "./chunk-ZOC4GITL.js";
91
91
  import "./chunk-HOTQDYHD.js";
92
92
  export {
@@ -1,21 +1,21 @@
1
1
  import {
2
2
  publishManifest
3
- } from "../chunk-PIGHAAM2.js";
3
+ } from "../chunk-TQC3S6NP.js";
4
4
  import "../chunk-RI3ZLNPN.js";
5
- import "../chunk-RRYHCOOJ.js";
5
+ import "../chunk-HPPLVGGC.js";
6
6
  import "../chunk-IW3X2MJF.js";
7
7
  import "../chunk-KOSF5FDO.js";
8
8
  import "../chunk-J3NIXHZZ.js";
9
9
  import "../chunk-S7EM5VMW.js";
10
- import "../chunk-CSDXTU3G.js";
11
- import "../chunk-R2ORPNZC.js";
12
- import "../chunk-4Y4ZBN45.js";
10
+ import "../chunk-H64ZLWW2.js";
11
+ import "../chunk-EJWZGSHD.js";
12
+ import "../chunk-WSBDIHFZ.js";
13
13
  import "../chunk-C2TS5MER.js";
14
- import "../chunk-7GYCJPFI.js";
14
+ import "../chunk-2GBSYVK2.js";
15
15
  import "../chunk-JQ5X3VMP.js";
16
- import "../chunk-5EJ247OO.js";
17
- import "../chunk-N27JUWU2.js";
18
- import "../chunk-XFX4VODU.js";
16
+ import "../chunk-RIAMPAL2.js";
17
+ import "../chunk-NJPBXF5Z.js";
18
+ import "../chunk-5K3RI5C2.js";
19
19
  import "../chunk-ZOC4GITL.js";
20
20
  import "../chunk-HOTQDYHD.js";
21
21
  export {
@@ -5,8 +5,8 @@ import {
5
5
  maybeWriteMemoryReport,
6
6
  safeHeap,
7
7
  sampleFromBytes
8
- } from "./chunk-5EJ247OO.js";
9
- import "./chunk-N27JUWU2.js";
8
+ } from "./chunk-RIAMPAL2.js";
9
+ import "./chunk-NJPBXF5Z.js";
10
10
  export {
11
11
  DEFAULT_THRESHOLD_MB,
12
12
  buildMemoryReport,
package/dist/merkle.js CHANGED
@@ -6,20 +6,20 @@ import {
6
6
  merkleizeKuboBackend,
7
7
  merkleizeWithStableOrder,
8
8
  rebuildOrderedCarFromBytes
9
- } from "./chunk-RRYHCOOJ.js";
9
+ } from "./chunk-HPPLVGGC.js";
10
10
  import "./chunk-IW3X2MJF.js";
11
11
  import "./chunk-KOSF5FDO.js";
12
12
  import "./chunk-J3NIXHZZ.js";
13
13
  import "./chunk-S7EM5VMW.js";
14
- import "./chunk-CSDXTU3G.js";
15
- import "./chunk-R2ORPNZC.js";
16
- import "./chunk-4Y4ZBN45.js";
14
+ import "./chunk-H64ZLWW2.js";
15
+ import "./chunk-EJWZGSHD.js";
16
+ import "./chunk-WSBDIHFZ.js";
17
17
  import "./chunk-C2TS5MER.js";
18
- import "./chunk-7GYCJPFI.js";
18
+ import "./chunk-2GBSYVK2.js";
19
19
  import "./chunk-JQ5X3VMP.js";
20
- import "./chunk-5EJ247OO.js";
21
- import "./chunk-N27JUWU2.js";
22
- import "./chunk-XFX4VODU.js";
20
+ import "./chunk-RIAMPAL2.js";
21
+ import "./chunk-NJPBXF5Z.js";
22
+ import "./chunk-5K3RI5C2.js";
23
23
  import "./chunk-ZOC4GITL.js";
24
24
  import "./chunk-HOTQDYHD.js";
25
25
  export {
@@ -26,13 +26,13 @@ import {
26
26
  } from "../chunk-ZYVGHDMU.js";
27
27
  import {
28
28
  WS_HEARTBEAT_TIMEOUT_MS
29
- } from "../chunk-7GYCJPFI.js";
29
+ } from "../chunk-2GBSYVK2.js";
30
30
  import "../chunk-JQ5X3VMP.js";
31
- import "../chunk-5EJ247OO.js";
32
- import "../chunk-N27JUWU2.js";
31
+ import "../chunk-RIAMPAL2.js";
32
+ import "../chunk-NJPBXF5Z.js";
33
33
  import {
34
34
  loadEnvironments
35
- } from "../chunk-XFX4VODU.js";
35
+ } from "../chunk-5K3RI5C2.js";
36
36
  import "../chunk-ZOC4GITL.js";
37
37
 
38
38
  // src/personhood/bootstrap.ts
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  WS_HEARTBEAT_TIMEOUT_MS
3
- } from "../chunk-7GYCJPFI.js";
3
+ } from "../chunk-2GBSYVK2.js";
4
4
  import "../chunk-JQ5X3VMP.js";
5
- import "../chunk-5EJ247OO.js";
6
- import "../chunk-N27JUWU2.js";
5
+ import "../chunk-RIAMPAL2.js";
6
+ import "../chunk-NJPBXF5Z.js";
7
7
  import {
8
8
  loadEnvironments
9
- } from "../chunk-XFX4VODU.js";
9
+ } from "../chunk-5K3RI5C2.js";
10
10
  import "../chunk-ZOC4GITL.js";
11
11
 
12
12
  // src/personhood/people-client.ts
package/dist/run-state.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  shouldSkipStaleWarning,
8
8
  stateFilePath,
9
9
  writeRunState
10
- } from "./chunk-N27JUWU2.js";
10
+ } from "./chunk-NJPBXF5Z.js";
11
11
  export {
12
12
  VERSION,
13
13
  loadRunState,
package/dist/telemetry.js CHANGED
@@ -33,8 +33,8 @@ import {
33
33
  truncateAddress,
34
34
  withDeploySpan,
35
35
  withSpan
36
- } from "./chunk-5EJ247OO.js";
37
- import "./chunk-N27JUWU2.js";
36
+ } from "./chunk-RIAMPAL2.js";
37
+ import "./chunk-NJPBXF5Z.js";
38
38
  export {
39
39
  VERSION,
40
40
  __setDeployRootSpanForTest,
@@ -11,9 +11,9 @@ import {
11
11
  isPreReleaseVersion,
12
12
  preReleaseWarning,
13
13
  promptYesNo
14
- } from "./chunk-R2ORPNZC.js";
15
- import "./chunk-5EJ247OO.js";
16
- import "./chunk-N27JUWU2.js";
14
+ } from "./chunk-EJWZGSHD.js";
15
+ import "./chunk-RIAMPAL2.js";
16
+ import "./chunk-NJPBXF5Z.js";
17
17
  export {
18
18
  assessVersion,
19
19
  checkNodeVersion,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parity/product-deploy",
3
- "version": "0.8.2-rc.0",
3
+ "version": "0.8.2-rc.1",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",