> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/proposalcreate | TRON

> TRON API method that creates a new governance proposal on the TRON network. Reference for wallet/proposalcreate on TRON via Chainstack.

TRON API method that creates a new governance proposal on the TRON network. Super Representatives can use this method to propose changes to network parameters.

## Parameters

* `owner_address` — the Super Representative address creating the proposal. Must be in base58 or hex format.
* `parameters` — object containing the parameter ID and its new value to be proposed.
* `visible` — optional boolean parameter. When set to `true`, the address should be in base58 format. Default is `false`.

## Response

* `txID` — the transaction hash of the proposal creation
* `raw_data` — the raw transaction data
* `raw_data_hex` — the raw transaction data in hex format
* `signature` — array of transaction signatures

## Use case

The `wallet/proposalcreate` method is used for:

* Creating governance proposals to modify network parameters
* Proposing changes to transaction fees and resource costs
* Initiating protocol upgrades and parameter adjustments
* Participating in TRON's decentralized governance system


## OpenAPI

````yaml openapi/tron_node_api/proposalcreate.json post /95e61622bf6a8af293978377718e3b77/wallet/proposalcreate
openapi: 3.0.0
info:
  title: wallet/proposalcreate TRON API
  version: 1.0.0
  description: Create a new governance proposal on the TRON network
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/proposalcreate:
    post:
      tags:
        - Governance
      summary: wallet/proposalcreate
      operationId: proposalCreate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - owner_address
                - parameters
              properties:
                owner_address:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                parameters:
                  type: object
                  properties:
                    '0':
                      type: integer
                      description: Parameter ID and its new value
                  default:
                    '0': 3000000
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Proposal creation transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  txID:
                    type: string
                  raw_data:
                    type: object
                    properties:
                      contract:
                        type: array
                      ref_block_bytes:
                        type: string
                      ref_block_hash:
                        type: string
                      expiration:
                        type: integer
                      timestamp:
                        type: integer
                  raw_data_hex:
                    type: string
                  signature:
                    type: array
                    items:
                      type: string

````