Committee and Proposal

Committee

The committee can modify the TRON network parameters, like transaction fees, block producing reward amount, etc. Committee is composed of the current 27 super representatives. Every super representative has the right to start a proposal. A proposal will be effective when receiving at least 18 votes and will become valid in the next maintenance period.

Proposal

Only SRs, Partners and Candidates can create a proposal.
The network parameters can be modified([min, max]).
{0,1}: 1 means 'allowed' or 'actived', 0 means no.

#CommandValue
0getMaintenanceTimeInterval
(To modify the maintenance interval of SR)
6 Hours
[3 27, 24 3600] s
1getAccountUpgradeCost
(To modify the cost of applying for SR account)
9999 TRX
[0, 100000000000] TRX
2getCreateAccountFee
(To modify the account creation fee)
0.1 TRX
[0, 100000000000] TRX
3getTransactionFee
(To modify the amount of TRX used to gain extra bandwidth)
40 Sun/Byte
[0, 100000000000] TRX
4getAssetIssueFee
(To modify asset issuance fee)
1024 TRX
[0, 100000000000] TRX
5getWitnessPayPerBlock
(To modify SR block generation reward)
16 TRX
[0, 100000000000] TRX
6getWitnessStandbyAllowance
(To modify the rewards given to the top 27 SRs and
the following 100 partners)
115200 TRX
[0, 100000000000] TRX
7getCreateNewAccountFeeInSystemContract
(To modify the cost of account creation)
0 TRX
8getCreateNewAccountBandwidthRate
(To modify the consumption of bandwith of account creation)
1 Bandwith/Byte
9getAllowCreationOfContracts
(To activate the Virtual Machine (VM))
1
{0, 1}
10getRemoveThePowerOfTheGr
(To remove the GR Genesis votes)
1
{0, 1}
11getEnergyFee
(To modify the fee of 1 energy)
40 Sun
[0, 100000000000] TRX
12getExchangeCreateFee
(To modify the cost of trading pair creation)
1024 TRX
[0, 100000000000] TRX
13getMaxCpuTimeOfOneTx
(To modify the maximum execution time of one transaction)
80 ms
[0, 1000] ms
14getAllowUpdateAccountName
(To allow to change the account name)
0
{0, 1}
15getAllowSameTokenName
(To allow the same token name)
1
{0, 1}
16getAllowDelegateResource
(To allow resource delegation)
1
{0, 1}
18getAllowTvmTransferTrc10
(To allow the TRC-10 token transfer in smart contracts)
1
{0, 1}
19getTotalEnergyCurrentLimit
(To modify current total energy limit)
50000000000
20getAllowMultiSign
(To allow the initiation of multi-signature)
1
{0, 1}
21getAllowAdaptiveEnergy
(To allow adaptive adjustment for total Energy)
0
{0, 1}
22getUpdateAccountPermissionFee
(To modify the fee for updating account permission)
100 TRX
23getMultiSignFee
(To modify the fee for multi-signature)
1 TRX
24getAllowProtoFilterNum
(To enable protocol optimization)
0
{0, 1}
26getAllowTvmConstantinople
(To support the new commands of Constantinople)
1
{0, 1}
27getAllowShieldedTransaction
(To enable shielded transaction)
0
{0, 1}
28getShieldedTransactionFee
(To modify shielded transaction fee)
10 TRX
[0, 10000] TRX
29getAdaptiveResourceLimitMultiplier
(To modify the adaptive energy limit multiplier)
1000
[1, 10000]
30getChangeDelegation
(Propose to support the decentralized vote dividend)
1
{0, 1}
31getWitness127PayPerBlock
(Propose to modify the block voting rewards given to
the top 27 SRs and the following 100 partners)
160 TRX
[0, 100000000000] TRX
32getAllowTvmSolidity059
(To allow TVM to support solidity compiler 0.5.9)
0
{0, 1}
33getAdaptiveResourceLimitTargetRatio
(To modify the target energy limit)
10
[1, 1000]

Create a Proposal

Example (Using wallet-cli):

createproposal id value  
id: the serial number (0 ~ 18)  
value: the parameter value

📘

Note

  • In TRON network, 1 TRX = 1000_000 SUN

Vote for a Proposal

Proposal only support YES vote. Since the creation time of the proposal, the proposal is valid within 3 days. If the proposal does not receive enough YES votes within the period of validity, the proposal will be invalid beyond the period of validity. Yes vote can be cancelled.

Example (Using wallet-cli):

approveProposal id is_or_not_add_approval
id: proposal id  
is_or_not_add_approval: YES vote or cancel YES vote

Cancel Proposal

Proposal creator can cancel the proposal before it is passed.
Example (Using wallet-cli):

deleteProposal id
id: proposal id

Query Proposal

List Proposals Full Node HTTP API

List Proposals TronWeb API

Get Proposal by ID Full Node HTTP API