1
Create an m-of-n key quorum
Key quorums make it possible for organizations to require multiple authorizations before taking critical actions, such as updating owners, policies, and signers, exporting a wallet, or using a wallet to send a transaction.To start, create authorization keys in the Privy Dashboard and save the corresponding private keys. Your app will use these private keys to sign requests to Privy’s API.Next, register the authorization keys in a key quorum. Set the authorization threshold to the number of members of the quorum that must sign a given wallet request. For example, in a 2-of-3 quorum, authorization signatures must be provided by at least 2 of the keys in the quorum to authorize requests to the Privy API.You will later register this key quorum as the owner of a wallet, and a sufficient number of members of the key quorum must sign requests to use the wallet.Follow the guide below to create your authorization key(s) and key quorum.
2
Implement a policy
Privy’s policy engine allows your application to restrict the actions that can be taken with wallets. These policies include critical controls such as transfer limits, time-bound signers, allowlists and denylists of smart contracts and programs, and restricting smart contract parameters and calldata.Follow the guide below to create policies for your desired use case. After creating your policy, save the 
id to assign the policy to the wallet(s) you create later.3
Create a wallet
Create a wallet with the following configuration:
- Set the owner_idof the wallet to theidof the key quorum you created earlier
- Set the policy_idsarray of the wallet to a singleton containing theidof the policy you created earlier
In addition to the owner, you can also set additional signers on the wallet that can take actions with the wallet subject to their own policies. This allows multiple parties to authorize requests to the Privy API, with different policies and permissions over the wallet.
4
Generate authorization signatures for a request
When taking action with the wallet, the wallet’s owner must sign requests to the Privy API.For your key quorum to authorize this request, m-of-n of the authorization private keys in the quorum must sign the request. These signatures must then be included in the 
privy-authorization-signature header when making a request to take action with a wallet.Follow the guide below to learn how to sign requests to the Privy API.Privy strongly recommends using Privy’s server-side SDKs to generate and include authorization signatures in your requests automatically.
5
Send a transaction
You can now send transactions, sign transactions, or sign messages with Privy’s API. Follow the guide below to send a transaction.

