Skip to content
Merged
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
2 changes: 1 addition & 1 deletion crates/spammer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ a finalized block.
The latency tracker records the time between:

1. **Submission**: when the spammer sends the transaction to the RPC endpoint of a node
2. **Finalization**: the block in which the the transaction was included is known to be finalized, via a RPC subscription
2. **Finalization**: the block in which the transaction was included is known to be finalized, via a RPC subscription
observes.

This measures end-to-end transaction latency as experienced by a client.
Expand Down
2 changes: 1 addition & 1 deletion docs/adr/0004-base-fee-validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ On Arc, the base fee calculation combines: 1) an EIP-1559-style algorithm, 2) s

The value of 1) is that it is familiar and well-understood. The value of 2) is to enable rapid adjusting of fee parameters and strictly enforcing block gas limits through governance. The value of 3) is to dampen fee increases against sudden shocks in usage with Arc's fast blocktimes.

The combination of these makes it challenging for integrators to precisely understand the next block base fee as the calculation is more involved. To address this, Arc includes the next block base fee the the header, computed at the end of the parent's block execution, since it is fully known at that point.
The combination of these makes it challenging for integrators to precisely understand the next block base fee as the calculation is more involved. To address this, Arc includes the next block base fee in the header, computed at the end of the parent's block execution, since it is fully known at that point.

Currently, the implementation has several gaps in validation. This ADR, similar to ADR-003, seeks to document solutions to these gaps.

Expand Down
Loading