arc402-cli 0.9.13 → 0.9.14
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/commands/wallet.js
CHANGED
|
@@ -19,7 +19,7 @@ import { sendTelegramMessage } from "../telegram-notify.js";
|
|
|
19
19
|
import { renderTree } from "../ui/tree.js";
|
|
20
20
|
import { startSpinner } from "../ui/spinner.js";
|
|
21
21
|
import { c } from "../ui/colors.js";
|
|
22
|
-
const POLICY_ENGINE_DEFAULT = "
|
|
22
|
+
const POLICY_ENGINE_DEFAULT = "0xAA5Ef3489C929bFB3BFf5D5FE15aa62d3763c847";
|
|
23
23
|
const GUARDIAN_KEY_PATH = path.join(os.homedir(), ".arc402", "guardian.key");
|
|
24
24
|
/** Save guardian private key to a restricted standalone file (never to config.json). */
|
|
25
25
|
function saveGuardianKey(privateKey) {
|
package/package.json
CHANGED
package/src/commands/wallet.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { startSpinner } from "../ui/spinner.js";
|
|
|
22
22
|
import { c } from "../ui/colors.js";
|
|
23
23
|
import { formatAddress } from "../ui/format.js";
|
|
24
24
|
|
|
25
|
-
const POLICY_ENGINE_DEFAULT = "
|
|
25
|
+
const POLICY_ENGINE_DEFAULT = "0xAA5Ef3489C929bFB3BFf5D5FE15aa62d3763c847";
|
|
26
26
|
const GUARDIAN_KEY_PATH = path.join(os.homedir(), ".arc402", "guardian.key");
|
|
27
27
|
|
|
28
28
|
/** Save guardian private key to a restricted standalone file (never to config.json). */
|