@@ -57,7 +57,7 @@ import {
5757} from "@pythnetwork/pyth-solana-receiver" ;
5858import {
5959 SOLANA_LAZER_PROGRAM_ID ,
60- SOLANA_STORAGE_ID ,
60+ SOLANA_LAZER_STORAGE_ID ,
6161} from "@pythnetwork/pyth-lazer-sdk" ;
6262
6363import { LedgerNodeWallet } from "./ledger" ;
@@ -222,7 +222,7 @@ multisigCommand(
222222 . requiredOption (
223223 "-t, --target <pubkey>" ,
224224 "The new governance authority to take over. " +
225- "If the target is another multisig, it will be the multisig's vault authority PDA." ,
225+ "If the target is another multisig, it will be the multisig's vault authority PDA." ,
226226 )
227227 . action ( async ( options : any ) => {
228228 const vault = await loadVaultFromOptions ( options ) ;
@@ -444,7 +444,7 @@ multisigCommand(
444444
445445 console . log (
446446 "Successfully proposed at: https://proposals.pyth.network/?tab=proposals&proposal=" +
447- proposalAddresses [ 0 ] . toBase58 ( ) ,
447+ proposalAddresses [ 0 ] . toBase58 ( ) ,
448448 ) ;
449449 } ) ;
450450
@@ -521,8 +521,8 @@ multisigCommand(
521521 if ( await accountExists ( cluster , stakePubkey ) ) {
522522 throw new Error (
523523 "Stake account for validator " +
524- votePubkey . toBase58 ( ) +
525- " already exists, it may be already permissioned" ,
524+ votePubkey . toBase58 ( ) +
525+ " already exists, it may be already permissioned" ,
526526 ) ;
527527 }
528528
@@ -564,7 +564,7 @@ multisigCommand(
564564 // This should be a single proposal normally
565565 console . log (
566566 "Successfully proposed at: https://proposals.pyth.network/?tab=proposals&proposal=" +
567- proposalAddresses [ 0 ] . toBase58 ( ) ,
567+ proposalAddresses [ 0 ] . toBase58 ( ) ,
568568 ) ;
569569 } ) ;
570570
@@ -978,7 +978,7 @@ multisigCommand(
978978 . update ( trustedSigner , expiryTime )
979979 . accounts ( {
980980 topAuthority : await vault . getVaultAuthorityPDA ( targetCluster ) ,
981- storage : SOLANA_STORAGE_ID ,
981+ storage : new PublicKey ( SOLANA_LAZER_STORAGE_ID ) ,
982982 } )
983983 . instruction ( ) ;
984984
@@ -1048,7 +1048,7 @@ multisigCommand(
10481048 . updateEcdsaSigner ( trustedSigner , expiryTime )
10491049 . accounts ( {
10501050 topAuthority : await vault . getVaultAuthorityPDA ( targetCluster ) ,
1051- storage : SOLANA_STORAGE_ID ,
1051+ storage : new PublicKey ( SOLANA_LAZER_STORAGE_ID ) ,
10521052 } )
10531053 . instruction ( ) ;
10541054
0 commit comments