Community Spend Proposal

Community Pool Spend Proposals on Self Chain enable stakeholders to allocate funds from the community pool for initiatives that benefit the ecosystem. This guide outlines the process for drafting, submitting, and promoting a Community Pool Spend Proposal.

What is a Community Pool Spend Proposal?

The Community Pool is a dedicated fund collected from network transaction fees and inflation rewards. Community Spend Proposals allow stakeholders to propose how these funds should be utilized, such as:

  • Incentivize community participation

  • Organize educational initiatives or events

  • Support marketing campaigns

  • Fund development of tools or dApps

Proposal Structure

Title: A concise title describing the proposal’s purpose (e.g., “Proposal to Fund dApp Development”).

Summary: Summarize the objective of the proposal in 2-3 sentences, including the requested amount and intended use of funds.

Recipient: The address to which the fund will be received.

Prepare the JSON file:

{
  "messages": [
    {
      "@type": "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend",
      "authority": "self10d07y265gmmuvt4z0w9aw880jnsr700jlfwec6",
      "recipient": "self1qk440p0d6c4evzcy6ff5qg8qq5wwr9tfx9enx4",
      "amount": [{"denom": "uslf", "amount": "1000000"}]
    }
  ],
  "metadata": "ipfs://CID",
  "deposit": "1000000uslf",
  "title": "Self Chain community pool spend proposal",
  "summary": "Proposal to spend from the community pool"
}

To query the gov account for the authority field, use the command:

selfchaind query auth module-account gov --node http://165.232.125.66:26657

Last updated