TRON API method that retrieves the current blockchain parameters and configuration settings. This method provides access to important network constants, fees, limits, and other configurable parameters that govern the TRON blockchain operation.Documentation Index
Fetch the complete documentation index at: https://chainstack-mintlify-flesh-empty-pages.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
chainParameter — array of blockchain parameters
key — parameter namevalue — parameter valuegetMaintenanceTimeInterval — maintenance period intervalgetAccountUpgradeCost — cost to upgrade accountgetCreateAccountFee — fee for creating new accountsgetTransactionFee — base transaction feegetAssetIssueFee — fee for issuing assets/tokensgetWitnessPayPerBlock — witness reward per blockgetWitnessStandbyAllowance — standby witness allowancegetCreateNewAccountFeeInSystemContract — system contract account creation feegetCreateNewAccountBandwidthRate — bandwidth rate for account creationgetAllowCreationOfContracts — whether contract creation is allowedgetRemoveThePowerOfTheGr — governance parametergetEnergyFee — energy fee rategetExchangeCreateFee — fee for creating exchangesgetMaxCpuTimeOfOneTx — maximum CPU time per transactiongetAllowUpdateAccountName — whether account name updates are allowedgetAllowSameTokenName — whether duplicate token names are allowedgetAllowDelegateResource — whether resource delegation is allowedgetTotalEnergyLimit — total energy limit for the networkgetAllowTvmTransferTrc10 — whether TVM can transfer TRC10 tokensgetTotalEnergyCurrentLimit — current total energy limitgetAllowMultiSign — whether multi-signature is allowedgetAllowAdaptiveEnergy — whether adaptive energy is enabledgetUpdateAccountPermissionFee — fee for updating account permissionsgetMultiSignFee — fee for multi-signature transactionswallet/getchainparameters method is used for:
Blockchain parameters and configuration
Array of blockchain parameters
[
{
"key": "getMaintenanceTimeInterval",
"value": 21600000
},
{
"key": "getAccountUpgradeCost",
"value": 9999000000
},
{
"key": "getCreateAccountFee",
"value": 100000
},
{ "key": "getTransactionFee", "value": 10 },
{
"key": "getAssetIssueFee",
"value": 1024000000
},
{
"key": "getWitnessPayPerBlock",
"value": 16000000
},
{
"key": "getWitnessStandbyAllowance",
"value": 115200000000
},
{
"key": "getCreateNewAccountFeeInSystemContract",
"value": 1000000
},
{
"key": "getCreateNewAccountBandwidthRate",
"value": 1
},
{
"key": "getAllowCreationOfContracts",
"value": 1
},
{
"key": "getRemoveThePowerOfTheGr",
"value": 1
},
{ "key": "getEnergyFee", "value": 140 },
{
"key": "getExchangeCreateFee",
"value": 1024000000
},
{
"key": "getMaxCpuTimeOfOneTx",
"value": 80
},
{
"key": "getAllowUpdateAccountName",
"value": 0
},
{
"key": "getAllowSameTokenName",
"value": 1
},
{
"key": "getAllowDelegateResource",
"value": 1
},
{
"key": "getTotalEnergyLimit",
"value": 90000000000
},
{
"key": "getAllowTvmTransferTrc10",
"value": 1
},
{
"key": "getTotalEnergyCurrentLimit",
"value": 90000000000
},
{ "key": "getAllowMultiSign", "value": 1 },
{
"key": "getAllowAdaptiveEnergy",
"value": 1
},
{
"key": "getUpdateAccountPermissionFee",
"value": 100000000
},
{
"key": "getMultiSignFee",
"value": 1000000
}
]