# Community Pool Spend Proposal

## Proposal Structure

This proposal requires information to be passed in a JSON file as follows:

```json
{
  "title": "<Proposal Title>",
  "description": "<Description of Proposal>",
  "recipient": "<Grant Recipient's Blockchain Address>",
  "amount": "<Grant Amount>",
  "deposit": "<Deposit for proposal>"
}
```

Example:

```json
{
  "title": "Grant: Community Spend Proposal",
  "description": "Community Spend Proposal",
  "recipient": "hid10vxwt3k9hdtp38q9x27zlpe4fhq7fwqe3xc226",
  "amount": "10000000000uhid",
  "deposit": "100000000uhid"
}
```

## CLI

* Run the following to submit a community pool spend proposal:

```
hid-noded tx gov submit-legacy-proposal community-pool-spend "<path-to-proposal-json-file>" --from <key-name> --yes
```
