Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion hedera/networks/mainnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Transactions on the Hedera Mainnet are currently throttled. You will receive a `
| **Smart Contract Transactions** | `ContractExecuteTransaction`: 15 million gas per second<br/>`ContractCreateTransaction`: 15 million gas per second |
| **Queries (per node)** | `AccountBalanceQuery`: 1000 tps<br/>`ContractGetInfo`: 700 tps<br/>`ContractGetBytecode`: 700 tps<br/>`ContractCallLocal`: 700 tps<br/>`FileGetInfo`: 700 tps<br/>`FileGetContents`: 700 tps<br/>`Other`: 10,000 tps |
| **Receipts** | unlimited (no throttle) |
<table><thead><tr><th>Network Request Types</th><th>Throttle (tps)</th></tr></thead><tbody><tr><td><strong>Cryptocurrency Transactions</strong></td><td><p><code>AccountCreateTransaction</code>: 2 tps</p><p><code>TransferTransaction</code> (inc. tokens): 10,000 tps<br/><code>Other</code>: 10,000 tps</p></td></tr><tr><td><strong>Consensus Transactions</strong></td><td><p><code>TopicCreateTransaction</code>: 5 tps</p><p><code>Other</code>: 10,000 tps</p></td></tr><tr><td><strong>Token Transactions</strong></td><td><p><code>TokenMintTransaction</code>:</p><ul><li>125 TPS for fungible mint</li><li>50 TPS for NFT mint</li></ul><p><code>TokenAssociateTransaction</code>: 100 tps<br/><code>TransferTransaction</code> (inc. tokens): 10,000 tps</p><p><code>Other</code>: 3,000 tps</p></td></tr><tr><td><strong>Schedule Transactions</strong></td><td><code>ScheduleSignTransaction</code>: 100 tps<br/><code>ScheduleCreateTransaction</code>: 100 tps</td></tr><tr><td><strong>File Transactions</strong></td><td>10 tps</td></tr><tr><td><strong>Smart Contract Transactions</strong></td><td><code>ContractExecuteTransaction</code>: 15 million gas per second<br/><code>ContractCreateTransaction</code>: 15 million gas per second</td></tr><tr><td><strong>Queries (per node)</strong></td><td><p><code>AccountBalanceQuery</code>: 1000 tps</p><p></p><p><code>ContractGetInfo</code>: 700 tps<br/><code>ContractGetBytecode</code>: 700 tps<br/><code>ContractCallLocal</code>: 700 tps<br/><br/><code>FileGetInfo</code>: 700 tps<br/><code>FileGetContents</code>: 700 tps<br/><br/><code>Other</code>: 10,000 tps</p></td></tr><tr><td><strong>Receipts</strong></td><td>unlimited (no throttle)</td></tr></tbody></table>

### High-Volume Throttles

Expand Down
4 changes: 0 additions & 4 deletions hedera/sdks-and-apis/rest-api/network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,5 @@ Two estimation modes are available via the `mode` query parameter:
For `state` mode, if the required network state is unavailable (e.g., due to data pruning), the endpoint falls back to `intrinsic` mode and includes a note in the response explaining the fallback.
</Info>

<Warning>
This endpoint currently returns stubbed (dummy) data as of mirror node `v0.145.1`. The full fee estimation implementation using the upstream fee estimation library will ship in a future release. You can integrate against the stub now to be ready when the production implementation goes live.
</Warning>

For full request/response details, parameters, and the interactive API playground, see the [API reference page](/api-reference/network/estimate-network-fees). For an overview of the Simple Fees model, see [Fee Model](/hedera/core-concepts/fee-model).
<table><thead><tr><th>Endpoint</th><th>Description</th></tr></thead><tbody><tr><td><code>GET /api/v1/network/supply</code></td><td>Retrieves the current total supply of HBAR.</td></tr><tr><td><code>GET /api/v1/network/fees</code></td><td>Fetches the latest transaction fee schedules.</td></tr><tr><td><code>POST /api/v1/network/fees</code></td><td>Estimates fees for a specific protobuf-encoded transaction, including the [HIP-1313](https://hips.hedera.com/hip/hip-1313) <code>high_volume_multiplier</code>.</td></tr><tr><td><code>GET /api/v1/network/exchangerate</code></td><td>Retrieves exchange rates to estimate transaction costs.</td></tr><tr><td><code>GET /api/v1/network/nodes</code></td><td>Lists the network address book nodes.</td></tr><tr><td><code>GET /api/v1/network/stake</code></td><td>Fetches staking-related information.</td></tr></tbody></table>
2 changes: 0 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -941,8 +941,6 @@ paths:
schema:
format: binary
type: string
description: A protobuf encoded HAPI Transaction
required: true
responses:
200:
description: OK
Expand Down
Loading