docs(evm): fix config examples and api ref
Created by: ihsraham
This PR addresses inaccuracies in the EVM Wallet documentation identified during verification.
Changes
-
configuration.md: Replaced the incorrect
JsonRpcProvider(Ethers v6) example with a workingviemcreatePublicClientexample. The previous example caused runtime errors due to missing EIP-1193 compliance. -
api-reference.md: Removed the "Fee Rate Constants" section (
FEE_RATE_NORMAL_MULTIPLIER,FEE_RATE_FAST_MULTIPLIER). These are protected static properties and are not exposed in the public API. -
usage.md: Included user-provided edits to align with the latest findings.
Related Task
Asana Task: EVM Standard Audit
Verification
- Verified that the new
viemconfiguration example matches the library's usage patterns. - Confirmed that the removed constants are indeed internal.