import*as multisig from"@sqds/multisig";// Cluster Connectionconstconnection=newConnection( < yourrpcurl > );// Fee payer is the a signer that pays the transaction feesconstfeePayer=Keypair.generate();// Derive the multisig PDAconstmultisigPda=multisig.getMultisigPda({// The createKey has to be a Public Key, see accounts reference for more info createKey,})[0];consttransactionIndex=1n;awaitmultisig.rpc.vaultTransactionExecute({ connection, feePayer, multisigPda, transactionIndex, member:feePayer.publicKey,});