Create Smart Account
Creates a new Smart Account with specified configuration including signers, threshold, and optional settings like config authority.
Documentation Index
Fetch the complete documentation index at: https://developers.squads.so/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Headers
Specifies which Solana network to use. Defaults to 'mainnet' if not provided. Valid values are 'devnet' or 'mainnet'.
devnet, mainnet Body
List of authorized keys that define the permanent configuration of your smart account. Each signer is assigned specific permissions that determine their role:
- CAN_INITIATE: Allows creating new transactions
- CAN_VOTE: Allows approving pending transactions
- CAN_EXECUTE: Allows executing approved transactions
The minimum number of required signatures to execute any action
x >= 1Optional address where rent for executed, rejected, or cancelled transaction accounts can be reclaimed
^[1-9A-HJ-NP-Za-km-z]{32,44}$Optional authority that can change the smart account configuration
^[1-9A-HJ-NP-Za-km-z]{32,44}$Optional memo to include with the transaction
Response
Smart Account successfully created
The wallet address of the newly created Smart Account
^[1-9A-HJ-NP-Za-km-z]{32,44}$