We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76eaa3a commit a58ba36Copy full SHA for a58ba36
governance/xc_admin/packages/xc_admin_cli/src/index.ts
@@ -427,11 +427,16 @@ multisigCommand(
427
.instructions
428
);
429
430
- await vault.proposeInstructions(
+ const proposalAddresses = await vault.proposeInstructions(
431
instructions,
432
cluster,
433
DEFAULT_PRIORITY_FEE_CONFIG
434
435
+
436
+ console.log(
437
+ "Successfully proposed at: https://proposals.pyth.network/?tab=proposals&proposal=" +
438
+ proposalAddresses[0].toBase58()
439
+ );
440
});
441
442
multisigCommand(
0 commit comments