Activating a Transaction
// the member/creator
const creator = wallet.publicKey;
// acitvate the tx
await program.methods.activateTransaction()
.accounts({
multisig,
transaction,
creator
})
.rpc();Last updated