Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update operator fee NAT test to verify there is no chain split #14972

Merged
merged 3 commits into from
Mar 26, 2025

Conversation

teddyknox
Copy link
Contributor

@teddyknox teddyknox commented Mar 20, 2025

Test Procedure

  1. Setup Phase

    • Acquires test wallets with funds for both L1 and L2 chains
    • Sets up the test environment for the Isthmus fork with 2 L2 nodes
    • Establishes connections to L1 and L2 clients
    • Funds the rollup owner wallet with 10 ETH
  2. Test Cases
    The test runs through 4 different operator fee configurations:

    a. Zero fees:
       - Constant: 0
       - Scalar: 0%
       - Expected: No operator fee charged
    
    b. Constant fee only:
       - Constant: 1000
       - Scalar: 0%
       - Expected: Only fixed fee component
    
    c. Scalar fee only:
       - Constant: 0
       - Scalar: 5% (500 basis points)
       - Expected: Fee proportional to base fee
    
    d. Both constant and scalar:
       - Constant: 1000
       - Scalar: 5%
       - Expected: Both fixed and proportional components
    
  3. For Each Test Case

    • Updates operator fee parameters in the SystemConfig contract
    • Verifies the parameters were set correctly
    • Waits for L2 nodes to sync with L1 (2 minutes)
    • Takes initial balance snapshots of relevant accounts:
      • Base Fee Vault
      • L1 Fee Vault
      • Sequencer Fee Vault
      • Operator Fee Vault
      • Test Wallet
    • Sends a test transaction (0.1 ETH transfer)
    • Takes final balance snapshots
    • Calculates expected fee changes based on:
      • Base fee burned
      • L1 fee
      • L2 fee (sequencer fee)
      • Operator fee
    • Verifies actual balance changes match expected calculations
  4. Verification Points

    • Confirms GPO (Gas Price Oracle) contract has correct Isthmus view
    • Verifies L1 fee calculations match between:
      • Local calculation
      • GPO contract calculation
      • Transaction receipt
    • Ensures all fee vault balances change as expected
    • Validates wallet balance changes match total fee deductions
  5. Cleanup

    • Returns any remaining funds from the rollup owner wallet back to the funding wallet

The test is designed to comprehensively verify that operator fees are calculated and distributed correctly under different fee models, ensuring the economic mechanisms of the system work as intended.

Copy link

codecov bot commented Mar 20, 2025

Codecov Report

Attention: Patch coverage is 10.71429% with 175 lines in your changes missing coverage. Please review.

Project coverage is 42.13%. Comparing base (4764cdc) to head (06a09c8).
Report is 7 commits behind head on develop.

Files with missing lines Patch % Lines
devnet-sdk/testing/systest/multi_client.go 0.00% 131 Missing ⚠️
devnet-sdk/testing/testlib/validators/nodes.go 0.00% 27 Missing ⚠️
devnet-sdk/shell/cmd/enter/main.go 0.00% 9 Missing ⚠️
devnet-sdk/system/chain.go 50.00% 3 Missing and 2 partials ⚠️
devnet-sdk/shell/env/chain.go 84.21% 2 Missing and 1 partial ⚠️
Additional details and impacted files
@@             Coverage Diff             @@
##           develop   #14972      +/-   ##
===========================================
- Coverage    46.29%   42.13%   -4.17%     
===========================================
  Files         1160      990     -170     
  Lines        99562    89528   -10034     
===========================================
- Hits         46093    37720    -8373     
+ Misses       50147    48654    -1493     
+ Partials      3322     3154     -168     
Flag Coverage Δ
cannon-go-tests-32 ?
cannon-go-tests-64 ?
contracts-bedrock-tests ?

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
devnet-sdk/shell/env/chain.go 78.49% <84.21%> (-2.41%) ⬇️
devnet-sdk/system/chain.go 65.16% <50.00%> (-1.94%) ⬇️
devnet-sdk/shell/cmd/enter/main.go 0.00% <0.00%> (ø)
devnet-sdk/testing/testlib/validators/nodes.go 0.00% <0.00%> (ø)
devnet-sdk/testing/systest/multi_client.go 0.00% <0.00%> (ø)

... and 185 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@teddyknox teddyknox force-pushed the operator-fee-nat branch 6 times, most recently from 85b27fc to b5ec5b8 Compare March 21, 2025 21:48
@teddyknox
Copy link
Contributor Author

Depends on ethereum-optimism/infra#261

@teddyknox teddyknox added H-isthmus Hardfork: change is planned for isthmus upgrade A-devnet-sdk Area: devnet-sdk and removed A-devnet-sdk Area: devnet-sdk labels Mar 24, 2025
@teddyknox teddyknox force-pushed the operator-fee-nat branch 2 times, most recently from c00fb41 to e2614ee Compare March 25, 2025 16:01
@teddyknox teddyknox marked this pull request as ready for review March 25, 2025 18:42
@teddyknox teddyknox requested a review from a team as a code owner March 25, 2025 18:42
Morning test updates
@teddyknox teddyknox enabled auto-merge March 26, 2025 14:51
@teddyknox teddyknox added this pull request to the merge queue Mar 26, 2025
Merged via the queue into develop with commit 9249efc Mar 26, 2025
50 checks passed
@teddyknox teddyknox deleted the operator-fee-nat branch March 26, 2025 14:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
H-isthmus Hardfork: change is planned for isthmus upgrade
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants