@toon-protocol/townhouse 0.8.0 → 0.10.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/chunk-BLNEL3QS.js +39 -0
- package/dist/chunk-BLNEL3QS.js.map +1 -0
- package/dist/{chunk-BDT2FIQL.js → chunk-UBFITLPQ.js} +116 -17
- package/dist/chunk-UBFITLPQ.js.map +1 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +4 -4
- package/dist/cli.js.map +1 -1
- package/dist/compose/townhouse-dev.yml +1 -1
- package/dist/compose/townhouse-hs.yml +10 -10
- package/dist/{demo-CKC6HA7X.js → demo-COZ7SB5F.js} +2 -2
- package/dist/image-manifest.json +12 -12
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/{manager-CKTAGzVH.d.ts → manager-BzalncRW.d.ts} +16 -4
- package/package.json +4 -4
- package/dist/chunk-BDT2FIQL.js.map +0 -1
- package/dist/chunk-RCHQDZBZ.js +0 -46
- package/dist/chunk-RCHQDZBZ.js.map +0 -1
- /package/dist/{demo-CKC6HA7X.js.map → demo-COZ7SB5F.js.map} +0 -0
package/dist/cli.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import Docker from 'dockerode';
|
|
3
|
-
import { C as ComposeLoaderOptions, T as TownhouseConfig, W as WalletManager, N as NodeType } from './manager-
|
|
3
|
+
import { C as ComposeLoaderOptions, T as TownhouseConfig, W as WalletManager, N as NodeType } from './manager-BzalncRW.js';
|
|
4
4
|
import '@toon-protocol/core';
|
|
5
5
|
|
|
6
6
|
/**
|
package/dist/cli.js
CHANGED
|
@@ -29,11 +29,11 @@ import {
|
|
|
29
29
|
tailContainerLogs,
|
|
30
30
|
writeHsConnectorConfig,
|
|
31
31
|
writeHsNodeEnvFile
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-UBFITLPQ.js";
|
|
33
33
|
import "./chunk-5O4SBV5O.js";
|
|
34
34
|
import {
|
|
35
35
|
CONTAINER_PREFIX
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-BLNEL3QS.js";
|
|
37
37
|
import {
|
|
38
38
|
formatRelativeTime,
|
|
39
39
|
formatUsdc
|
|
@@ -2062,7 +2062,7 @@ async function handleInit(force, configDir, password, preset, yes, network, endp
|
|
|
2062
2062
|
mkdirSync(dir, { recursive: true, mode: 448 });
|
|
2063
2063
|
let configToWrite;
|
|
2064
2064
|
if (preset === "demo") {
|
|
2065
|
-
const { buildDemoConfig, DEMO_DETERMINISTIC_PASSWORD } = await import("./demo-
|
|
2065
|
+
const { buildDemoConfig, DEMO_DETERMINISTIC_PASSWORD } = await import("./demo-COZ7SB5F.js");
|
|
2066
2066
|
configToWrite = buildDemoConfig({ walletPath: join(dir, "wallet.enc") });
|
|
2067
2067
|
if (yes && !password) {
|
|
2068
2068
|
password = DEMO_DETERMINISTIC_PASSWORD;
|
|
@@ -3149,7 +3149,7 @@ async function handleHsUp(_configPath, configDir, config, docker, options) {
|
|
|
3149
3149
|
}
|
|
3150
3150
|
const ribbon = new OnboardingRibbon();
|
|
3151
3151
|
try {
|
|
3152
|
-
const apexSettlementKeys = walletManager.getApexSettlementKeys();
|
|
3152
|
+
const apexSettlementKeys = await walletManager.getApexSettlementKeys();
|
|
3153
3153
|
writeHsConnectorConfig(configDir, config, { force, apexSettlementKeys });
|
|
3154
3154
|
const materialize = hsOverrides?.materializeComposeTemplate ?? materializeComposeTemplate;
|
|
3155
3155
|
const { composePath } = materialize("hs", { townhouseHome: configDir });
|