# Blockchain API's

- [Ethereum API](/blockchain-apis/ethereum-api.md): Below you will find the API documentation for the standard Ethereum JSON-RPC calls that WatchData supports.
- [eth\_getBlockByHash](/blockchain-apis/ethereum-api/eth_getblockbyhash.md): Returns information about a block by hash.
- [eth\_getBlockByNumber](/blockchain-apis/ethereum-api/eth_getblockbynumber.md): Returns information about a block by block number.
- [eth\_getTransactionCount](/blockchain-apis/ethereum-api/eth_gettransactioncount.md): Returns the number of transactions sent from an address.
- [eth\_getTransactionByHash](/blockchain-apis/ethereum-api/eth_gettransactionbyhash.md): Returns the information about a transaction requested by transaction hash. In the response object, \`blockHash\`, \`blockNumber\`, and \`transactionIndex\` are \`null\` when the transaction is pending.
- [eth\_getTransactionReceipt](/blockchain-apis/ethereum-api/eth_gettransactionreceipt.md): Returns the receipt of a transaction by transaction hash.
- [eth\_getBlockTransactionCountByHash](/blockchain-apis/ethereum-api/eth_getblocktransactioncountbyhash.md): Returns the number of transactions in a block matching the given block hash.
- [eth\_getBlockTransactionCountByNumber](/blockchain-apis/ethereum-api/eth_getblocktransactioncountbynumber.md): Returns the number of transactions in a block matching the given block number.
- [eth\_getTransactionByBlockHashAndIndex](/blockchain-apis/ethereum-api/eth_gettransactionbyblockhashandindex.md): Returns information about a transaction by block hash and transaction index position.
- [eth\_getTransactionByBlockNumberAndIndex](/blockchain-apis/ethereum-api/eth_gettransactionbyblocknumberandindex.md): Returns information about a transaction by block number and transaction index position.
- [eth\_getUncleCountByBlockHash](/blockchain-apis/ethereum-api/eth_getunclecountbyblockhash.md): Returns the number of uncles in a block matching the given block hash.
- [eth\_getUncleCountByBlockNumber](/blockchain-apis/ethereum-api/eth_getunclecountbyblocknumber.md): Returns the number of uncles in a block matching the give block number.
- [eth\_getLogs](/blockchain-apis/ethereum-api/eth_getlogs.md): Returns an array of all logs matching a given filter object.
- [eth\_call](/blockchain-apis/ethereum-api/eth_call.md): Executes a new message call without creating a transaction on the block chain.
- [eth\_chainId](/blockchain-apis/ethereum-api/eth_chainid.md): Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
- [eth\_estimateGas](/blockchain-apis/ethereum-api/eth_estimategas.md): Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain.
- [eth\_gasPrice](/blockchain-apis/ethereum-api/eth_gasprice.md): Returns the current price per gas in wei.
- [eth\_getBalance](/blockchain-apis/ethereum-api/eth_getbalance.md): Returns the balance of the account of a given address.
- [eth\_getCode](/blockchain-apis/ethereum-api/eth_getcode.md): Returns code at a given address.
- [net\_version](/blockchain-apis/ethereum-api/net_version.md): returns the current network id.
- [eth\_getStorageAt](/blockchain-apis/ethereum-api/eth_getstorageat.md): Returns the value from a storage position at a given address.
- [eth\_sendRawTransaction](/blockchain-apis/ethereum-api/eth_sendrawtransaction.md): Creates new message call transaction or a contract creation for signed transactions.
- [eth\_blockNumber](/blockchain-apis/ethereum-api/eth_blocknumber.md): Returns the number of the most recent block.
- [Polygon API](/blockchain-apis/polygon-api.md): The Polygon API follows a JSON-RPC standard. This doc contains the methods that WatchData supports for Polygon development on mainnet.
- [eth\_blockNumber - Polygon](/blockchain-apis/polygon-api/eth_blocknumber-polygon.md): Returns the number of the most recent block.
- [eth\_getBlockByHash - Polygon](/blockchain-apis/polygon-api/eth_getblockbyhash-polygon.md): Returns information about a block by hash.
- [eth\_getBlockByNumber - Polygon](/blockchain-apis/polygon-api/eth_getblockbynumber-polygon.md): Returns information about a block by block number.
- [eth\_getTransactionByHash - Polygon](/blockchain-apis/polygon-api/eth_gettransactionbyhash-polygon.md): Polygon API - Returns the information about a transaction requested by transaction hash. In the response object, blockHash, blockNumber, and transactionIndex are null when the transaction is pending.
- [eth\_getTransactionCount - Polygon](/blockchain-apis/polygon-api/eth_gettransactioncount-polygon.md): Returns the number of transactions sent from an address.
- [eth\_getTransactionReceipt -Polygon](/blockchain-apis/polygon-api/eth_gettransactionreceipt-polygon.md): Returns the receipt of a transaction by transaction hash.
- [eth\_getBlockTransactionCountByHash - Polygon](/blockchain-apis/polygon-api/eth_getblocktransactioncountbyhash-polygon.md): Returns the number of transactions in a block matching the given block hash.
- [eth\_getBlockTransactionCountByNumber - Polygon](/blockchain-apis/polygon-api/eth_getblocktransactioncountbynumber-polygon.md): Returns the number of transactions in a block matching the given block number.
- [eth\_getTransactionByBlockHashAndIndex - Polygon](/blockchain-apis/polygon-api/eth_gettransactionbyblockhashandindex-polygon.md): Returns information about a transaction by block hash and transaction index position.
- [eth\_getTransactionByBlockNumberAndIndex - Polygon](/blockchain-apis/polygon-api/eth_gettransactionbyblocknumberandindex-polygon.md): Returns information about a transaction by block number and transaction index position.
- [eth\_getUncleCountByBlockHash - Polygon](/blockchain-apis/polygon-api/eth_getunclecountbyblockhash-polygon.md): Returns the number of uncles in a block matching the given block hash.
- [eth\_getUncleCountByBlockNumber - Polygon](/blockchain-apis/polygon-api/eth_getunclecountbyblocknumber-polygon.md): Returns the number of uncles in a block matching the give block number.
- [eth\_getLogs - Polygon](/blockchain-apis/polygon-api/eth_getlogs-polygon.md): Returns an array of all logs matching a given filter object.
- [eth\_call - Polygon](/blockchain-apis/polygon-api/eth_call-polygon.md): Executes a new message call without creating a transaction on the block chain.
- [eth\_chainId - Polygon](/blockchain-apis/polygon-api/eth_chainid-polygon.md): Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
- [eth\_estimateGas - Polygon](/blockchain-apis/polygon-api/eth_estimategas-polygon.md): Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain.
- [eth\_gasPrice - Polygon](/blockchain-apis/polygon-api/eth_gasprice-polygon.md): Returns the current price per gas in wei.
- [eth\_getBalance - Polygon](/blockchain-apis/polygon-api/eth_getbalance-polygon.md): Returns the balance of the account of a given address.
- [eth\_getCode - Polygon](/blockchain-apis/polygon-api/eth_getcode-polygon.md): Returns code at a given address.
- [net\_version - Polygon](/blockchain-apis/polygon-api/net_version-polygon.md): returns the current network id.
- [eth\_getStorageAt - Polygon](/blockchain-apis/polygon-api/eth_getstorageat-polygon.md): Returns the value from a storage position at a given address.
- [eth\_sendRawTransaction - Polygon](/blockchain-apis/polygon-api/eth_sendrawtransaction-polygon.md): Creates new message call transaction or a contract creation for signed transactions.
- [Binance Smart Chain API](/blockchain-apis/binance-smart-chain-api.md): Below you will find the api documentation for the standard BSC JSON-RPC calls that WatchData supports.
- [eth\_blockNumber (BSC)](/blockchain-apis/binance-smart-chain-api/eth_blocknumber-bsc.md): Returns the number of the most recent block.
- [eth\_getBlockByHash (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getblockbyhash-bsc.md): Returns information about a block by hash.
- [eth\_getBlockByNumber (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getblockbynumber-bsc.md): Returns information about a block by block number.
- [eth\_getTransactionCount (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gettransactioncount-bsc.md): Returns the number of transactions sent from an address.
- [eth\_getTransactionByHash (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gettransactionbyhash-bsc.md): Returns the information about a transaction requested by transaction hash. In the response object, \`blockHash\`, \`blockNumber\`, and \`transactionIndex\` are \`null\` when the transaction is pending.
- [eth\_getTransactionReceipt (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gettransactionreceipt-bsc.md): Returns the receipt of a transaction by transaction hash.
- [eth\_getBlockTransactionCountByHash (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getblocktransactioncountbyhash-bsc.md): Returns the number of transactions in a block matching the given block hash.
- [eth\_getBlockTransactionCountByNumber (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getblocktransactioncountbynumber-bsc.md): Returns the number of transactions in a block matching the given block number.
- [eth\_getTransactionByBlockHashAndIndex (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gettransactionbyblockhashandindex-bsc.md): Returns information about a transaction by block hash and transaction index position.
- [eth\_getTransactionByBlockNumberAndIndex (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gettransactionbyblocknumberandindex-bsc.md): Returns information about a transaction by block number and transaction index position.
- [eth\_getUncleCountByBlockHash (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getunclecountbyblockhash-bsc.md): Returns the number of uncles in a block matching the given block hash.
- [eth\_getUncleCountByBlockNumber (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getunclecountbyblocknumber-bsc.md): Returns the number of uncles in a block matching the give block number.
- [eth\_getLogs (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getlogs-bsc.md): Returns an array of all logs matching a given filter object.
- [eth\_call (BSC)](/blockchain-apis/binance-smart-chain-api/eth_call-bsc.md): Executes a new message call without creating a transaction on the block chain.
- [eth\_chainId (BSC)](/blockchain-apis/binance-smart-chain-api/eth_chainid-bsc.md): Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
- [eth\_estimateGas (BSC)](/blockchain-apis/binance-smart-chain-api/eth_estimategas-bsc.md): Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain.
- [eth\_gasPrice (BSC)](/blockchain-apis/binance-smart-chain-api/eth_gasprice-bsc.md): Returns the current price per gas in wei.
- [eth\_getBalance (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getbalance-bsc.md): Returns the balance of the account of a given address.
- [eth\_getCode (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getcode-bsc.md): Returns code at a given address.
- [net\_version (BSC)](/blockchain-apis/binance-smart-chain-api/net_version-bsc.md): returns the current network id.
- [eth\_getStorageAt (BSC)](/blockchain-apis/binance-smart-chain-api/eth_getstorageat-bsc.md): Returns the value from a storage position at a given address.
- [eth\_sendRawTransaction (BSC)](/blockchain-apis/binance-smart-chain-api/eth_sendrawtransaction-bsc.md): Creates new message call transaction or a contract creation for signed transactions.
- [Tron API](/blockchain-apis/tron-api.md): Below you will find the api documentation for the Tron blockchain
- [Full Node API Overview](/blockchain-apis/tron-api/full-node-api-overview.md): A short overview, to work with the Tron node
- [Address Utilities](/blockchain-apis/tron-api/address-utilities.md): Common Utility API
- [CreateAddress](/blockchain-apis/tron-api/address-utilities/createaddress.md): Create address from a specified password string (NOT PRIVATE KEY).
- [GenerateAddress](/blockchain-apis/tron-api/address-utilities/generateaddress.md): Generates a random private key and address pair.
- [ValidateAddress](/blockchain-apis/tron-api/address-utilities/validateaddress.md): Validates address, returns either true or false.
- [Transactions](/blockchain-apis/tron-api/transactions.md)
- [CreateTransaction](/blockchain-apis/tron-api/transactions/createtransaction.md): Create a TRX transfer transaction. If to\_address does not exist, then create the account on the blockchain.
- [EasyTransferByPrivate](/blockchain-apis/tron-api/transactions/easytransferbyprivate.md): Easily transfer from an address using the private key.
- [EasyTransfer](/blockchain-apis/tron-api/transactions/easytransfer.md): Easily transfer from an address using the password string. Only works with accounts created from createAddress,integrated getransactionsign and broadcasttransaction.
- [BroadcastHex](/blockchain-apis/tron-api/transactions/broadcasthex.md): Broadcast the protobuf encoded transaction hex string after sign
- [BroadcastTransaction](/blockchain-apis/tron-api/transactions/broadcasttransaction.md): Broadcast the signed transaction
- [Accounts](/blockchain-apis/tron-api/accounts.md)
- [AccountPermissionUpdate](/blockchain-apis/tron-api/accounts/accountpermissionupdate.md): Update the account's permission.
- [UpdateAccount](/blockchain-apis/tron-api/accounts/updateaccount.md): Modify account name
- [GetAccount](/blockchain-apis/tron-api/accounts/getaccount.md): Query information about an account,Including balances, stake, votes and time, etc.
- [CreateAccount](/blockchain-apis/tron-api/accounts/createaccount.md): Create an account. Uses an already activated account to create a new account
- [Account Resources](/blockchain-apis/tron-api/account-resources.md)
- [GetAccountNet](/blockchain-apis/tron-api/account-resources/getaccountnet.md): Query bandwidth information.
- [GetAccountResource](/blockchain-apis/tron-api/account-resources/getaccountresource.md): Query the resource information of an account(bandwidth,energy,etc)
- [UnfreezeBalance](/blockchain-apis/tron-api/account-resources/unfreezebalance.md): Unstake TRX that has passed the minimum stake duration to release bandwidth and energy and at the same time TRON Power will reduce and all votes will be canceled.
- [FreezeBalance](/blockchain-apis/tron-api/account-resources/freezebalance.md): Stake an amount of TRX to obtain bandwidth OR Energy and TRON Power (voting rights) . Optionally, user can stake TRX to grant Energy or Bandwidth to others. Balance amount in the denomination of sun.
- [GetDelegatedResource](/blockchain-apis/tron-api/account-resources/getdelegatedresource.md): Returns all resources delegations from an account to another account. The fromAddress can be retrieved from the GetDelegatedResourceAccountIndex API.
- [GetDelegatedResourceAccountIndex](/blockchain-apis/tron-api/account-resources/getdelegatedresourceaccountindex.md): Query the energy delegation by an account. i.e. list all addresses that have delegated resources to an account.
- [Query The Network](/blockchain-apis/tron-api/query-the-network.md)
- [GetBlockByNum](/blockchain-apis/tron-api/query-the-network/getblockbynum.md): Returns the Block Object corresponding to the 'Block Height' specified (number of blocks preceding it).
- [GetBlockById](/blockchain-apis/tron-api/query-the-network/getblockbyid.md): Query block by ID(block hash).
- [GetBlockByLatestNum](/blockchain-apis/tron-api/query-the-network/getblockbylatestnum.md): Returns a list of block objects.
- [GetBlockByLimitNext](/blockchain-apis/tron-api/query-the-network/getblockbylimitnext.md): Returns the list of Block Objects included in the 'Block Height' range specified.
- [GetNowBlock](/blockchain-apis/tron-api/query-the-network/getnowblock.md): Query the latest block information
- [GetTransactionById](/blockchain-apis/tron-api/query-the-network/gettransactionbyid.md): Query transaction information by transaction id.
- [GetTransactionInfoById](/blockchain-apis/tron-api/query-the-network/gettransactioninfobyid.md): Query the transaction fee, block height by transaction id
- [GetTransactionInfoByBlockNum](/blockchain-apis/tron-api/query-the-network/gettransactioninfobyblocknum.md)
- [GetNodeInfo](/blockchain-apis/tron-api/query-the-network/getnodeinfo.md): Query Node Information. Returns information about current state of node.
- [GetChainParameters](/blockchain-apis/tron-api/query-the-network/getchainparameters.md): All parameters that the blockchain committee can set
- [TRC 10 Token](/blockchain-apis/tron-api/trc-10-token.md)
- [GetAssetIssueByAccount](/blockchain-apis/tron-api/trc-10-token/getassetissuebyaccount.md): Query the TRC10 token information issued by an account.
- [GetAssetIssueById](/blockchain-apis/tron-api/trc-10-token/getassetissuebyid.md): Query a token by token id.
- [GetAssetIssueList](/blockchain-apis/tron-api/trc-10-token/getassetissuelist.md): Query the list of all the TRC10 tokens.
- [GetPaginatedAssetIssueList](/blockchain-apis/tron-api/trc-10-token/getpaginatedassetissuelist.md): Query the list of all the tokens by pagination.
- [TransferAsset](/blockchain-apis/tron-api/trc-10-token/transferasset.md): Transfer TRC10 token.
- [CreateAssetIssue](/blockchain-apis/tron-api/trc-10-token/createassetissue.md): Issue a TRC10 token.
- [ParticipateAssetIssue](/blockchain-apis/tron-api/trc-10-token/participateassetissue.md): Participate in an asset issue.
- [UnfreezeAsset](/blockchain-apis/tron-api/trc-10-token/unfreezeasset.md): Unstake a token that has passed the minimum freeze duration.
- [UpdateAsset](/blockchain-apis/tron-api/trc-10-token/updateasset.md): Update basic TRC10 token information.
- [EasyTransferAsset](/blockchain-apis/tron-api/trc-10-token/easytransferasset.md): Easy TRC10 token transfer. Create a TRC10 transfer transaction and broadcast directly.
- [EasyTransferAssetByPrivate](/blockchain-apis/tron-api/trc-10-token/easytransferassetbyprivate.md): TRC10 token easy transfer. Broadcast the created transaction directly.
- [Smart Contracts](/blockchain-apis/tron-api/smart-contracts.md)
- [GetContract](/blockchain-apis/tron-api/smart-contracts/getcontract.md): Queries a contract's information from the blockchain.
- [TriggerSmartContract](/blockchain-apis/tron-api/smart-contracts/triggersmartcontract.md): Returns TransactionExtention, which contains the unsigned Transaction
- [TriggerConstantContract](/blockchain-apis/tron-api/smart-contracts/triggerconstantcontract.md): Trigger the constant of the smart contract, the transaction is off the blockchain. Returns the Transaction Object. The corresponding method must be marked view or pure.
- [DeployContract](/blockchain-apis/tron-api/smart-contracts/deploycontract.md): Deploys a contract. Returns TransactionExtention, which contains an unsigned transaction.
- [UpdateSetting](/blockchain-apis/tron-api/smart-contracts/updatesetting.md): Update the consume\_user\_resource\_percent parameter of a smart contract
- [UpdateEnergyLimit](/blockchain-apis/tron-api/smart-contracts/updateenergylimit.md): Update the origin\_energy\_limit parameter of a smart contract
- [ClearAbi](/blockchain-apis/tron-api/smart-contracts/clearabi.md): To clear the ABI info of a smart contract.
- [TRONZ Shielded Smart Contract](/blockchain-apis/tron-api/tronz-shielded-smart-contract.md)
- [GetSpendingKey](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getspendingkey.md)
- [GetExpandedSpendingKey](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getexpandedspendingkey.md)
- [GetAkFromAsk](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getakfromask.md)
- [GetNkFromNsk](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getnkfromnsk.md)
- [GetIncomingViewingKey](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getincomingviewingkey.md)
- [GetDiversifier](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getdiversifier.md)
- [GetZenPaymentAddress](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getzenpaymentaddress.md)
- [GetNewShieldedAddress](/blockchain-apis/tron-api/tronz-shielded-smart-contract/getnewshieldedaddress.md)
- [CreateShieldedContractParameters](/blockchain-apis/tron-api/tronz-shielded-smart-contract/createshieldedcontractparameters.md)
- [CreateSpendAuthSig](/blockchain-apis/tron-api/tronz-shielded-smart-contract/createspendauthsig.md)
- [GetTriggerInputForShieldedTrc20Contract](/blockchain-apis/tron-api/tronz-shielded-smart-contract/gettriggerinputforshieldedtrc20contract.md)
- [ScanShieldedTrc20NotesByIvk](/blockchain-apis/tron-api/tronz-shielded-smart-contract/scanshieldedtrc20notesbyivk.md): Scan outgoing notes.
- [ScanShieldedTrc20NotesByOvk](/blockchain-apis/tron-api/tronz-shielded-smart-contract/scanshieldedtrc20notesbyovk.md): Scan outgoing notes(spent).
- [IsShieldedTrc20ContractNoteSpent](/blockchain-apis/tron-api/tronz-shielded-smart-contract/isshieldedtrc20contractnotespent.md)
- [Voting & SRs](/blockchain-apis/tron-api/voting-and-srs.md)
- [ListWitnesses](/blockchain-apis/tron-api/voting-and-srs/listwitnesses.md): List all Super Representatives.
- [CreateWitness](/blockchain-apis/tron-api/voting-and-srs/createwitness.md): Apply to become a witness.
- [UpdateWitness](/blockchain-apis/tron-api/voting-and-srs/updatewitness.md): Edit the URL of the witness's official website.
- [GetBrokerage](/blockchain-apis/tron-api/voting-and-srs/getbrokerage.md): Get SR brokerage ratio
- [UpdateBrokerage](/blockchain-apis/tron-api/voting-and-srs/updatebrokerage.md): Update the witness's brokerage setting.
- [VoteWitnessAccount](/blockchain-apis/tron-api/voting-and-srs/votewitnessaccount.md): Vote for witnesses
- [GetReward](/blockchain-apis/tron-api/voting-and-srs/getreward.md): Get the rewards that a witness or a user has not yet withdrawn.
- [WithdrawBalance](/blockchain-apis/tron-api/voting-and-srs/withdrawbalance.md): Super Representative or user withdraw rewards, usable every 24 hours.
- [GetNextMaintenanceTime](/blockchain-apis/tron-api/voting-and-srs/getnextmaintenancetime.md): Returns the timestamp of the next voting time in milliseconds.
- [Proposals](/blockchain-apis/tron-api/proposals.md)
- [ListProposals](/blockchain-apis/tron-api/proposals/listproposals.md): List all proposals.
- [GetProposalById](/blockchain-apis/tron-api/proposals/getproposalbyid.md): Queries proposal based on ID and returns proposal details.
- [ProposalCreate](/blockchain-apis/tron-api/proposals/proposalcreate.md): Creates a proposal transaction.
- [ProposalApprove](/blockchain-apis/tron-api/proposals/proposalapprove.md): Approves proposed transaction.
- [ProposalDelete](/blockchain-apis/tron-api/proposals/proposaldelete.md): Deletes Proposal Transaction.
- [DEX Exchange](/blockchain-apis/tron-api/dex-exchange.md): List all exchange pairs.
- [ListExchanges](/blockchain-apis/tron-api/dex-exchange/listexchanges.md): List all exchange pairs.
- [GetExchangeById](/blockchain-apis/tron-api/dex-exchange/getexchangebyid.md): Query exchange pair based on id
- [ExchangeCreate](/blockchain-apis/tron-api/dex-exchange/exchangecreate.md): Creates a trading pair.
- [ExchangeInject](/blockchain-apis/tron-api/dex-exchange/exchangeinject.md): Injects capital into the transaction. The purpose of injecting capital into the trading pair is to prevent price fluctuation from affecting the transaction.
- [ExchangeWithdraw](/blockchain-apis/tron-api/dex-exchange/exchangewithdraw.md): Withdraws the transaction pair.
- [ExchangeTransaction](/blockchain-apis/tron-api/dex-exchange/exchangetransaction.md): Participate the transaction of exchange pair
- [Pending Pool](/blockchain-apis/tron-api/pending-pool.md)
- [GetTransactionListFromPending](/blockchain-apis/tron-api/pending-pool/gettransactionlistfrompending.md): Get transaction list information from pending pool
- [GetTransactionFromPending](/blockchain-apis/tron-api/pending-pool/gettransactionfrompending.md): Get transaction details from the pending pool
- [GetPendingSize](/blockchain-apis/tron-api/pending-pool/getpendingsize.md): Get the size of the pending pool queue
- [Bitcoin API](/blockchain-apis/bitcoin-api.md)
- [Blockchain RPCs](/blockchain-apis/bitcoin-api/blockchain-rpcs.md)
- [getbestblockhash](/blockchain-apis/bitcoin-api/blockchain-rpcs/getbestblockhash.md)
- [getblock](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblock.md)
- [getblockchaininfo](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblockchaininfo.md)
- [getblockcount](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblockcount.md)
- [getblockhash](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblockhash.md)
- [getblockheader](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblockheader.md)
- [getblockstats](/blockchain-apis/bitcoin-api/blockchain-rpcs/getblockstats.md)
- [getchaintips](/blockchain-apis/bitcoin-api/blockchain-rpcs/getchaintips.md)
- [getchaintxstats](/blockchain-apis/bitcoin-api/blockchain-rpcs/getchaintxstats.md)
- [getdifficulty](/blockchain-apis/bitcoin-api/blockchain-rpcs/getdifficulty.md)
- [getmempoolancestors](/blockchain-apis/bitcoin-api/blockchain-rpcs/getmempoolancestors.md)
- [getmempooldescendants](/blockchain-apis/bitcoin-api/blockchain-rpcs/getmempooldescendants.md)
- [getmempoolentry](/blockchain-apis/bitcoin-api/blockchain-rpcs/getmempoolentry.md)
- [getmempoolinfo](/blockchain-apis/bitcoin-api/blockchain-rpcs/getmempoolinfo.md)
- [getrawmempool](/blockchain-apis/bitcoin-api/blockchain-rpcs/getrawmempool.md)
- [gettxout](/blockchain-apis/bitcoin-api/blockchain-rpcs/gettxout.md)
- [gettxoutproof](/blockchain-apis/bitcoin-api/blockchain-rpcs/gettxoutproof.md)
- [Rawtransactions RPCs](/blockchain-apis/bitcoin-api/rawtransactions-rpcs.md)
- [analyzepsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/analyzepsbt.md)
- [combinepsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/combinepsbt.md)
- [combinerawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/combinerawtransaction.md)
- [converttopsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/converttopsbt.md)
- [createpsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/createpsbt.md)
- [createrawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/createrawtransaction.md)
- [decodepsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/decodepsbt.md)
- [decoderawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/decoderawtransaction.md)
- [decodescript](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/decodescript.md)
- [finalizepsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/finalizepsbt.md)
- [fundrawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/fundrawtransaction.md)
- [getrawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/getrawtransaction.md)
- [joinpsbts](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/joinpsbts.md)
- [sendrawtransaction](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/sendrawtransaction.md)
- [testmempoolaccept](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/testmempoolaccept.md)
- [utxoupdatepsbt](/blockchain-apis/bitcoin-api/rawtransactions-rpcs/utxoupdatepsbt.md)
