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 412ef5e commit f77987dCopy full SHA for f77987d
third_party/pyth/multisig-wh-message-builder/src/index.ts
@@ -541,7 +541,7 @@ async function executeMultisigTx(
541
);
542
const { vaaBytes } = await response.json();
543
console.log(`VAA (Base64): ${vaaBytes}`);
544
- console.log(`VAA (Hex): ${Buffer.from(vaaBytes).toString("hex")}`);
+ console.log(`VAA (Hex): ${Buffer.from(vaaBytes, "base64").toString("hex")}`);
545
const parsedVaa = await parse(vaaBytes);
546
console.log(`Emitter chain: ${parsedVaa.emitter_chain}`);
547
console.log(`Nonce: ${parsedVaa.nonce}`);
0 commit comments