> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Sudo

Sudo policy allows any transaction to pass. It is the default session.

To enable a sudo policy:

```ts {6-14} theme={null}
const session: Session = {
  owners: {
    type: 'ecdsa',
    accounts: [sessionOwnerAccount],
  },
  actions: [
    {
      policies: [
        {
          type: 'sudo',
        },
      ],
    },
  ],
}
```
