> ## 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.

# Create Proposal

> Create a new proposal for multi-signature approval

Creates a proposal that requires consensus from multiple signers before execution. Proposals enable coordinated multi-party approval for transactions and account settings changes.

<Warning>
  Proposals are an **enterprise-tier feature**. Free and Pro tier accounts will receive a 403
  Forbidden error.
</Warning>

## Proposal Types

### Custom Proposals

Execute arbitrary Solana transactions through your smart account:

```typescript theme={null}
const response = await grid.createProposal(accountAddress, {
    type: "custom",
    transaction: serializedVersionedTransaction,
    signer: creatorPublicKey,
});
```

### Settings Proposals

Modify account configuration with up to 10 actions per proposal:

```typescript theme={null}
const response = await grid.createProposal(accountAddress, {
    type: "settings",
    actions: [
        { type: "AddSigner", newSigner: { address: newKey, mask: 7 } },
        { type: "ChangeThreshold", newThreshold: 2 },
    ],
    signer: creatorPublicKey,
});
```

**Available actions**: `AddSigner`, `RemoveSigner`, `ChangeThreshold`, `SetTimeLock`, `AddSpendingLimit`, `RemoveSpendingLimit`, `SetArchivalAuthority`

### Transfer Proposals

Transfer tokens or SOL from your smart account through a proposal:

```typescript theme={null}
const response = await grid.createProposal(accountAddress, {
    type: "transfer",
    token: "usdc",
    destination: recipientPublicKey,
    rawAmount: 1000000,
    signer: creatorPublicKey,
});
```

**Supported tokens**: `sol`, `usdc`, `usdt`, `pyusd`, `eurc`, or a custom mint

| Parameter      | Type               | Required | Description                                                                |
| -------------- | ------------------ | -------- | -------------------------------------------------------------------------- |
| `token`        | `string \| object` | Yes      | Standard token name or custom mint object                                  |
| `destination`  | `string`           | Yes      | Recipient's Solana address                                                 |
| `rawAmount`    | `number`           | Yes      | Amount in the token's smallest unit (e.g. lamports for SOL, 10^6 for USDC) |
| `mintDecimals` | `number`           | No       | Override decimal precision; validated against on-chain mint data           |
| `signer`       | `string`           | Yes      | Public key of the proposal creator                                         |

## Permission Requirements

The signer must have `CAN_INITIATE` permission (mask includes value 1). The signer address cannot be the smart account address itself.

## Transaction Splitting

Solana transactions have a 1232-byte limit. If your proposal exceeds this, the API returns multiple transactions that must be signed and submitted in order.

## Fee Configuration

By default, the Grid paymaster sponsors fees. Enterprise accounts can specify custom fee handling:

```typescript theme={null}
{
  fee_config: {
    currency: "SOL",
    payer_address: payerPublicKey,
    self_managed_fees: true  // Skip simulation
  }
}
```

## Implementation Flow

<Steps>
  <Step title="Prepare Proposal">Build your transaction or define settings actions.</Step>

  <Step title="Create Proposal">
    Call this endpoint. Returns unsigned transaction(s) and the proposal address.
  </Step>

  <Step title="Sign and Submit">
    Sign all returned transactions and submit to Solana in order.
  </Step>
</Steps>

The proposal is now `Active` and awaiting votes.

## Related Endpoints

* [Vote on Proposal](/grid/v1/api-reference/endpoint/proposals/vote)
* [Vote and Execute](/grid/v1/api-reference/endpoint/proposals/vote-and-execute)


## OpenAPI

````yaml POST /api/grid/v1/accounts/{address}/proposals
openapi: 3.1.0
info:
  title: Grid v1 API
  description: Grid v1 REST API for Solana-based smart account system
  contact:
    name: Grid API Support
    url: https://squads.so
    email: support@squads.so
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://grid.squads.xyz
    description: Production server
security:
  - bearer_auth: []
tags:
  - name: accounts
    description: Smart account management operations
  - name: spending-limits
    description: Spending limit management
  - name: standing-orders
    description: Standing order operations
  - name: transactions
    description: Transaction management
  - name: trade
    description: Trade operations and management
  - name: payments
    description: Payment intent operations
  - name: passkeys
    description: Passkey management
  - name: kyc
    description: Know Your Customer operations
  - name: external-accounts
    description: External bank account management
  - name: virtual-accounts
    description: Virtual account management
  - name: auth
    description: Authentication operations
  - name: proposals
    description: Proposal management for multi-sig operations
  - name: compliance
    description: Compliance entity management and KYB/KYC operations
paths:
  /api/grid/v1/accounts/{address}/proposals:
    post:
      tags:
        - proposals
      operationId: handler
      parameters:
        - name: address
          in: path
          description: Smart account address (Solana public key)
          required: true
          schema:
            type: string
        - name: x-grid-environment
          in: header
          description: Target Solana environment
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestPayload'
        required: true
      responses:
        '200':
          description: Proposal Create transaction(s) created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GridApiResponse_CreateProposalResponse'
        '400':
          description: Invalid request parameters
        '404':
          description: Smart account not found
      security:
        - bearer_auth: []
components:
  schemas:
    RequestPayload:
      oneOf:
        - type: object
          required:
            - transaction
            - signer
            - type
          properties:
            fee_config:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/FeeConfigV2'
            signer:
              type: string
            transaction:
              type: string
            type:
              type: string
              enum:
                - custom
        - type: object
          required:
            - actions
            - signer
            - type
          properties:
            actions:
              type: array
              items:
                $ref: '#/components/schemas/SettingsActionPayload'
            fee_config:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/FeeConfigV2'
            signer:
              type: string
            type:
              type: string
              enum:
                - settings
        - type: object
          required:
            - token
            - destination
            - raw_amount
            - signer
            - type
          properties:
            destination:
              type: string
            fee_config:
              oneOf:
                - type: 'null'
                - $ref: '#/components/schemas/FeeConfigV2'
            mint_decimals:
              type:
                - integer
                - 'null'
              format: int32
              minimum: 0
            raw_amount:
              type: integer
              format: int64
              minimum: 0
            signer:
              type: string
            token:
              $ref: '#/components/schemas/Currency'
            type:
              type: string
              enum:
                - transfer
    GridApiResponse_CreateProposalResponse:
      type: object
      required:
        - data
        - metadata
      properties:
        data:
          type: object
          required:
            - transactions
            - proposalAddress
            - signer
          properties:
            proposalAddress:
              type: string
            signer:
              type: string
            transactions:
              type: array
              items:
                type: string
        metadata:
          $ref: '#/components/schemas/Metadata'
    FeeConfigV2:
      type: object
      required:
        - currency
        - payer_address
      properties:
        currency:
          $ref: '#/components/schemas/Currency'
        payer_address:
          type: string
        self_managed_fees:
          type:
            - boolean
            - 'null'
    SettingsActionPayload:
      oneOf:
        - type: object
          required:
            - newSigner
            - type
          properties:
            newSigner:
              $ref: '#/components/schemas/AccountSigner'
            type:
              type: string
              enum:
                - AddSigner
        - type: object
          required:
            - oldSigner
            - type
          properties:
            oldSigner:
              type: string
            type:
              type: string
              enum:
                - RemoveSigner
        - type: object
          required:
            - newThreshold
            - type
          properties:
            newThreshold:
              type: integer
              format: int32
              minimum: 0
            type:
              type: string
              enum:
                - ChangeThreshold
        - type: object
          required:
            - newTimeLock
            - type
          properties:
            newTimeLock:
              type: integer
              format: int32
              minimum: 0
            type:
              type: string
              enum:
                - SetTimeLock
        - type: object
          required:
            - seed
            - accountIndex
            - mint
            - amount
            - period
            - signers
            - destinations
            - expiration
            - type
          properties:
            accountIndex:
              type: integer
              format: int32
              minimum: 0
            amount:
              type: integer
              format: int64
              minimum: 0
            destinations:
              type: array
              items:
                type: string
            expiration:
              type: integer
              format: int64
            mint:
              type: string
            period:
              $ref: '#/components/schemas/Period'
            seed:
              type: string
            signers:
              type: array
              items:
                type: string
            type:
              type: string
              enum:
                - AddSpendingLimit
        - type: object
          required:
            - spendingLimit
            - type
          properties:
            spendingLimit:
              type: string
            type:
              type: string
              enum:
                - RemoveSpendingLimit
        - type: object
          required:
            - type
          properties:
            newArchivalAuthority:
              type:
                - string
                - 'null'
            type:
              type: string
              enum:
                - SetArchivalAuthority
    Currency:
      oneOf:
        - $ref: '#/components/schemas/StandardCurrency'
        - $ref: '#/components/schemas/CustomCurrency'
    Metadata:
      type: object
      required:
        - request_id
        - timestamp
      properties:
        request_id:
          type: string
        timestamp:
          type: string
          format: date-time
    AccountSigner:
      type: object
      required:
        - address
        - role
        - permissions
      properties:
        address:
          type: string
        permissions:
          type: array
          items:
            $ref: '#/components/schemas/Permission'
        provider:
          $ref: '#/components/schemas/GridMPCProvider'
        role:
          $ref: '#/components/schemas/GridSignerRole'
    Period:
      type: string
      enum:
        - one_time
        - day
        - week
        - month
    StandardCurrency:
      type: string
      enum:
        - sol
        - usdc
        - usdt
        - pyusd
        - eurc
    CustomCurrency:
      type: object
      required:
        - mint
        - decimals
      properties:
        decimals:
          type: integer
          format: int32
          minimum: 0
        mint:
          type: string
        symbol:
          type:
            - string
            - 'null'
    Permission:
      type: string
      enum:
        - CAN_INITIATE
        - CAN_VOTE
        - CAN_EXECUTE
    GridMPCProvider:
      type: string
      enum:
        - privy
        - dynamic
        - passkey
        - turnkey
        - external
    GridSignerRole:
      type: string
      enum:
        - primary
        - backup
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Your Grid API key from the Grid Dashboard

````