AIXChain Blockchain Document
  • INTRODUCTION
    • Getting started with smart contract development
    • Build a Decentralized Library
  • AIXC AND ARC TOKEN
    • ARC
      • ARX Transfer
      • Query ARX balance
    • ARC-10
      • Issue ARC-10 token
      • Participate ARC-10
      • ARC-10 Transfer
      • Query ARC-10 balance
      • ARC-10 Transfer in Smart Contracts
    • ARC-20
      • Protocol Interface
      • Contract Example
      • Issuing ARC-20 tokens tutorial
    • ARC-721
      • Protocol Interface
      • Contract Example
  • ACCOUNT MODEL
  • BUILD NODE
    • How to setup a Super node to produce Blocks
      • Recommended configuration & Environment
      • Example cloud services
      • Deployment guide
    • Super Representative
      • How to become a SR
      • Super Representatives Election
      • How to change witness name
  • HTTP API
    • Introduction
    • API Signature and Broadcast Flow
    • API List
      • Full Node API Overview
      • Address Utilities
        • GenerateAddress
        • CreateAddress
        • ValidateAddress
      • Accounts
        • CreateAccount
        • GetAccount
        • UpdateAccount
        • AccountPermissionUpdate
        • GetAccountBalance
      • Account Resources
        • GetAccountResource
        • GetAccountNet
        • FreezeBalance
        • UnfreezeBalance
        • GetDelegatedResource
        • GetDelegatedResourceAccountIndex
      • Query the Network
        • GetBlockByNum
        • GetBlockById
        • GetBlockByLatestNum
        • GetBlockByLimitNext
        • GetNowBlock
        • GetTransactionById
        • GetTransactionInfoById
        • GetTransactionInfoByBlockNum
        • ListNodes
        • GetNodeInfo
        • GetChainParameters
        • GetBlockBalance
      • ARC10 Token
        • GetAssetIssueByAccount
        • GetAssetIssueById
        • GetAssetIssueList
        • GetPaginatedAssetIssueList
        • TransferAsset
        • CreateAssetIssue
        • UnfreezeAsset
        • UpdateAsset
      • Transactions
        • GetContract
        • GetTransactionSign
        • BroadcastTransaction
        • BroadcastHex
        • EasyTransfer
        • EasyTransferByPrivate
        • CreateTransaction
      • Voting & SRs
        • ListWitnesses
        • CreateWitness
        • UpdateWitness
        • GetBrokerage
        • UpdateBrokerage
        • VoteWitnessAccount
        • GetReward
        • WithdrawBalance
        • GetNextMaintenanceTime
      • Smart Contracts
        • TriggerSmartContract
        • DeployContract
        • UpdateSetting
        • UpdateEnergyLimit
        • ClearAbi
        • GetContract
        • TriggerConstantContract
      • Proposals
      • Solidity Node API
    • RPC List
  • AIXCHAIN CLI
  • Aixchain SDK
    • Quickstart
    • Address and Signature
    • Sending Transaction
    • Smart Contract
  • Faucet Aixchain
  • Wallets
Powered by GitBook
On this page
  1. HTTP API
  2. API List
  3. Query the Network

GetChainParameters

GET: http://172.104.51.182:16667/wallet/getchainparameters

All parameters that the blockchain committee can set

Example:

curl -X POST  https://api.trongrid.io/wallet/getchainparameters

Response:

{

"chainParameter": [ { "key": "getMaintenanceTimeInterval", "value": 21600000 }, { "key": "getAccountUpgradeCost", "value": 9999000000 }, { "key": "getCreateAccountFee", "value": 100000 }, { "key": "getTransactionFee", "value": 10 }, { "key": "getAssetIssueFee", "value": 1024000000 }, { "key": "getWitnessPayPerBlock", "value": 32000000 }, { "key": "getWitnessStandbyAllowance", "value": 115200000000 }, { "key": "getCreateNewAccountFeeInSystemContract" }, { "key": "getCreateNewAccountBandwidthRate", "value": 1 }, { "key": "getAllowCreationOfContracts", "value": 1 }, { "key": "getRemoveThePowerOfTheGr" }, { "key": "getEnergyFee", "value": 100 }, { "key": "getExchangeCreateFee", "value": 1024000000 }, { "key": "getMaxCpuTimeOfOneTx", "value": 50 }, { "key": "getAllowUpdateAccountName" }, { "key": "getAllowSameTokenName", "value": 1 }, { "key": "getAllowDelegateResource", "value": 1 }, { "key": "getTotalEnergyLimit", "value": 50000000000 }, { "key": "getAllowTvmTransferTrc10", "value": 1 }, { "key": "getTotalEnergyCurrentLimit", "value": 50000000000000 }, { "key": "getAllowMultiSign", "value": 1 }, { "key": "getAllowAdaptiveEnergy", "value": 1 }, { "key": "getTotalEnergyTargetLimit", "value": 3472222 }, { "key": "getTotalEnergyAverageUsage", "value": 942 }, { "key": "getUpdateAccountPermissionFee", "value": 100000000 }, { "key": "getMultiSignFee", "value": 1000000 }, { "key": "getAllowAccountStateRoot" }, { "key": "getAllowProtoFilterNum" }, { "key": "getAllowTvmConstantinople", "value": 1 }, { "key": "getAllowTvmSolidity059" }, { "key": "getAllowTvmIstanbul" }, { "key": "getAllowShieldedTRC20Transaction" }, { "key": "getForbidTransferToContract" }, { "key": "getAdaptiveResourceLimitTargetRatio", "value": 10 }, { "key": "getAdaptiveResourceLimitMultiplier", "value": 1000 }, { "key": "getChangeDelegation", "value": 1 }, { "key": "getWitness127PayPerBlock", "value": 16000000 }, { "key": "getAllowMarketTransaction" }, { "key": "getMarketSellFee" }, { "key": "getMarketCancelFee" }, { "key": "getAllowPBFT" }, { "key": "getAllowTransactionFeePool" }, { "key": "getMaxFeeLimit", "value": 1000000000 }, { "key": "getAllowOptimizeBlackHole" }, { "key": "getAllowNewResourceModel" }, { "key": "getAllowTvmFreeze" } ]

}

PreviousGetNodeInfoNextGetBlockBalance

Last updated 1 month ago