@@ -53,7 +53,7 @@ export async function loadHotWalletOrLedger(
53
53
}
54
54
}
55
55
56
- const mutlisigCommand = ( name : string , description : string ) =>
56
+ const multisigCommand = ( name : string , description : string ) =>
57
57
program
58
58
. command ( name )
59
59
. description ( description )
@@ -77,7 +77,7 @@ program
77
77
. description ( "CLI for interacting with Pyth's xc_admin" )
78
78
. version ( "0.1.0" ) ;
79
79
80
- mutlisigCommand (
80
+ multisigCommand (
81
81
"accept-authority" ,
82
82
"Accept authority from the program authority escrow"
83
83
)
@@ -155,7 +155,7 @@ mutlisigCommand(
155
155
) ;
156
156
} ) ;
157
157
158
- mutlisigCommand ( "upgrade-program" , "Upgrade a program from a buffer" )
158
+ multisigCommand ( "upgrade-program" , "Upgrade a program from a buffer" )
159
159
. requiredOption (
160
160
"-p, --program-id <pubkey>" ,
161
161
"program that you want to upgrade"
@@ -218,7 +218,7 @@ mutlisigCommand("upgrade-program", "Upgrade a program from a buffer")
218
218
) ;
219
219
} ) ;
220
220
221
- mutlisigCommand (
221
+ multisigCommand (
222
222
"init-price" ,
223
223
"Init price (useful for changing the exponent), only to be used on unused price feeds"
224
224
)
@@ -287,7 +287,7 @@ program
287
287
console . log ( JSON . stringify ( parsed , null , 2 ) ) ;
288
288
} ) ;
289
289
290
- mutlisigCommand ( "approve" , "Approve a transaction sitting in the multisig" )
290
+ multisigCommand ( "approve" , "Approve a transaction sitting in the multisig" )
291
291
. requiredOption (
292
292
"-t, --transaction <pubkey>" ,
293
293
"address of the outstanding transaction"
@@ -305,7 +305,7 @@ mutlisigCommand("approve", "Approve a transaction sitting in the multisig")
305
305
await squad . approveTransaction ( transaction ) ;
306
306
} ) ;
307
307
308
- mutlisigCommand ( "propose-token-transfer" , "Propose token transfer" )
308
+ multisigCommand ( "propose-token-transfer" , "Propose token transfer" )
309
309
. requiredOption ( "-a, --amount <number>" , "amount in dollars" )
310
310
. requiredOption ( "-d, --destination <pubkey>" , "destination address" )
311
311
. option (
@@ -363,7 +363,7 @@ mutlisigCommand("propose-token-transfer", "Propose token transfer")
363
363
/**
364
364
* Activate proposal, mostly useful for cleaning up draft proposals that happen when the browser wallet fails to send all transactions succesfully
365
365
*/
366
- mutlisigCommand ( "activate" , "Activate a transaction sitting in the multisig" )
366
+ multisigCommand ( "activate" , "Activate a transaction sitting in the multisig" )
367
367
. requiredOption (
368
368
"-t, --transaction <pubkey>" ,
369
369
"address of the draft transaction"
0 commit comments