Skip to content

Commit a58ba36

Browse files
authored
chore: add proposal url to deactivate (#2461)
1 parent 76eaa3a commit a58ba36

File tree

1 file changed

+6
-1
lines changed
  • governance/xc_admin/packages/xc_admin_cli/src

1 file changed

+6
-1
lines changed

governance/xc_admin/packages/xc_admin_cli/src/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,11 +427,16 @@ multisigCommand(
427427
.instructions
428428
);
429429

430-
await vault.proposeInstructions(
430+
const proposalAddresses = await vault.proposeInstructions(
431431
instructions,
432432
cluster,
433433
DEFAULT_PRIORITY_FEE_CONFIG
434434
);
435+
436+
console.log(
437+
"Successfully proposed at: https://proposals.pyth.network/?tab=proposals&proposal=" +
438+
proposalAddresses[0].toBase58()
439+
);
435440
});
436441

437442
multisigCommand(

0 commit comments

Comments
 (0)