Quick Start
Why NonceManager?
When sending multiple transactions quickly, you can’t wait for each to be mined before getting the next nonce. The NonceManager tracks a local delta per address/chain, allowing concurrent transaction preparation without nonce collisions.Methods
get
Returns the current nonce without consuming it (on-chain pending + local delta).consume
Gets and atomically increments the nonce. Safe for concurrent calls.increment
Increments the local delta without fetching from chain. Use when a transaction was sent externally.reset
Clears the local delta for an address/chain. Call after transactions confirm to resync.Error Handling
FiberRef Helpers
UsewithTimeout and withRetrySchedule for per-request overrides:

