> For the complete documentation index, see [llms.txt](https://docs.cashmere.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cashmere.finance/reference/idl-methods/approve-transaction.md).

# Approve Transaction

```javascript
// approve a transaction with the current provider wallet
const approveTransactionIx = multisigProgram.rpc.approve({
    accounts: {
      multisig: multisigPublicKey,
      transaction: txAccountPublicKey,
      owner: provider.wallet.publicKey,
    },
    signers: [provider.wallet.publicKey]
  });
```
