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

[Upgrade]Release V6 #1261

Merged
merged 9 commits into from
Jul 7, 2023
Merged

[Upgrade]Release V6 #1261

merged 9 commits into from
Jul 7, 2023

Commits on Jul 5, 2023

  1. Musical Chairs (#6)

    * For 0L genesis tools for hard forks, and migrations: create a MoveVm session from fake data to be able to apply migrations from Move system contracts.
    
    * wip testing fakeexector for account migrations
    
    * Scaffolding tests for v6 genesis fork. first cleanup deprecated modules.
    
    * add fixtures for testing recovery genesis
    
    * cleanup fixtures
    implement functional tests for:
    - exporting db backup to json
    - creating genesis blob from json
    - creating genesis blob in one shot from db backup
    
    TODO: launch test node from from genesis.blob
    TODO: e2e tests from a fixture file
    
    * integration test using blob from fixture to start a diem-node in test mode
    
    * patch github actions tests
    
    * full e2e test from db backup to starting a node
    
    * Add diem_logger as per @corythian plus comments.
    
    * query nodes to check if onchain state is the same as recovery.
    
    * - include db reader util to inspect a genesis.blob.
    - refactor recovery tests
    
    * test to check validator count. cleanup test utlis
    
    * cleanup tests
    
    * stub a "check" feature, to check a json file agains the output genesis.blob
    
    * finish balance comparison with error list.
    
    * clean
    
    * test to create single validator and check output.
    
    * skip comparing system zero address.
    
    * cargo fix
    
    * cargo fmt
    
    * create function to start a vm executor, and uses a function pointer to transform legacy data to Move arguments.
    
    * experimenting with alternative way of starting a vm genesis session
    
    * runs
    
    * cleanup
    
    * need to explicitly set the validators at genesis
    
    * test to confirm genesis validator set, is the same as defined set.
    
    * tests for validator set and balance passing
    
    * change fixtures, make node start from command line
    
    * can start a test node from genesis blob
    
    * can genesis tools test can start a node from a genesis and query for an accounts resources
    
    * make ol version of swarm config generator in ol/smoke_tests
    
    * wip
    
    * move legacyRecovery to ol/types. So now we can run the user migrations in the vm_genesis::lib. First draft builds
    
    * create GenesisMigration user migration test. Builds.
    
    * ol/genesis-tools builds with refactor
    
    * refactored with clean build
    
    * minor refactors
    
    * can migrate the balance of end users with new design
    
    * migration successfully migrates balances of users, validators, and operators.
    
    * cleanup unused files. clippy,
    
    * tests passing
    
    * PoF requires all nodes to have equal weight in consensus per the paper.
    
    * initial scaffold of proof-of-fee auction. Borrows code from NodeWeight. Includes tranaction api.
    
    * implement seat filling algo, which considers the 1/3 unproven node limit on epoch changes
    
    * patch
    
    * patch
    
    * builds
    
    * implement vm function to pay fee from user account
    
    * all validators are charged fee at epoch boundary
    
    * cleanup  validator set proposal functions
    
    * refactor jail function at epoch boundary
    
    * make epoch boundry _meta_epoch.move pass
    
    * filter for vouches on proof of fee
    
    * initialize val account with a PoF struct
    
    * epoch reconfiguration meta tests passing. PoF bid initialization unit tests passing. Validator meta sanity tests passing
    
    * patch issue with failover
    
    * add bid restrictions, and checking upon seating
    
    * burn excess fees than needed for validators
    
    * reward thermostat initial implementation
    
    * genesis init fee baseline
    
    * patch bug in thermostat
    
    * more tests for fill_seats, and thermostat. patches
    
    * test
    
    * consolidate validator audits, check for the case that there are fewer bidders than the stated val set.
    
    * add test fixtures, modify some APIs "tell don't ask" pattern. Add several tests.
    
    * add unit tests for thermostat. Patch a couple bugs
    
    * tests for thermostat increase/decrease
    
    * deprecate Audit.move, and create tests for qualifications in Proofoffee.move
    
    * Jailing mechanism needs update after deprecating Towers. Proposing here that a Voucher is the only one to unjail, since there is no other practical hurdle.
    
    * audit tests for vouch, expired bids, no_funds
    
    * covered all proof of fee functions, tests for all common scenarios of fill_seats, patch logic issues, all proof of fee tests passing!
    
    * patch seating failover
    
    * Clean up Cases.move. Patch Vouch tests fixtures
    
    * adjust fixtures for reconfiguration tests, deprecate some tests, patch jailing
    
    * patch all reconfig test fixtures. remove deprecated burn tests.
    
    * continue patching tests and removing deprecated scenarios
    
    * All transactional tests passing!
    
    * txs transaction apis for setting and retracting bids.
    
    * test for set and retract
    
    * implement vm function to pay fee from user account
    
    * cleanup  validator set proposal functions
    
    * refactor jail function at epoch boundary
    
    * make epoch boundry _meta_epoch.move pass
    
    * initialize val account with a PoF struct
    
    * add bid restrictions, and checking upon seating
    
    * genesis initialization of musical chairs struct
    
    * musical chairs heuristic draft complete.
    
    * epoch boundary calls musical chairs to set next val size
    
    * transactional tests WIP
    
    * patch rebase issue
    
    * add tests for eval_compliance. all transactional tests passing!
    
    * rename variable in Globals
    
    * patch test, remove deprecated.
    
    * all tests passing
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    0ef0c52 View commit details
    Browse the repository at this point in the history
  2. Infra Escrow (#8)

    * create first stubs of Pledge Accounts, a primitive service for infra escrow.
    
    * list pledgers on beneficiary struct
    
    * can withdraw from all accounts
    
    * pledge account feature complete, except for withdrawing of coins
    
    * finalize infraescrow wrapper on pledge accounts
    
    * Vm can withdraw funds
    
    * infra escrow can withdraw
    
    * adding tests, patching.
    
    * tests for pledge, withdraw unit, withdraw e2e, revoke
    
    * change APIs to use coins, not u64
    
    * now using coins instead of temp values
    
    * infra escrow and pledges use coins. add helpers to withdraw coins. patch tests to use coins. all tests passing.
    
    * make pledge withdrawals proportionate to balances
    
    * Refactor paying of fees based on Infra Escrow. Builds. Tests need to be ported.
    
    * reordering the epoch boundary pipeline.
    
    * refactor burning of excess network fees at boundary
    
    * handle zero transaction fees cases
    
    * update .exp files on tests
    
    * more tests for val subsidy
    
    * patching tests
    
    * refactor burn.move patch tests
    
    * patch many tests fixtures
    
    * burn epoch recycling
    
    * for testing, make the vm genesis initialize the infra escrow pledge accounts.
    
    * minor refactor to epoch boundary
    
    * test to confirm the infra escrow is being funded on the epoch prologue
    
    * revert operator subsidy removal. test framework depends on this for funding end user accounts.
    
    * patch testmode genesis subsidies to match test fixtures.
    
    * cleanup: info! instead of println
    
    * fix burn init
    
    * update burn recycling to never change supply
    
    * all tests passing
    
    * remove deprecated files
    
    * patch ignored tests. All tx tests passing.
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    097ebe8 View commit details
    Browse the repository at this point in the history
  3. Miner difficulty (#9)

    * refactoring the 0L Chain setting by console env variables.
    1. changes the `NODE_ENV` env variable to `MODE_0L`. Had conflicts with node.js tools
    2. creates a lazy static in ChainId.rs to get an Enum for Prod. Test, etc. Consolidates the names in one place.
    3. Deprecates the `TEST` env variable, in favor of MODE_0L = ci
    4. refactors throughout where env::var was being called directly
    
    * docs on benchmarking
    
    * wip refactor difficulty
    
    * updating test fixtures after NamedChain renames. Tower tests pass.
    
    * update fixtures path
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    41768ff View commit details
    Browse the repository at this point in the history
  4. REST API (#12)

    * add waypoint information to the index
    
    * api endpoint for a struct on an account.
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    ea06c96 View commit details
    Browse the repository at this point in the history
  5. Genesis Wizard (#11)

    * copy genesis_tools
    
    * wip
    
    * copy onboard
    
    * surgery complete
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    13c1ab1 View commit details
    Browse the repository at this point in the history
  6. Hard Fork Migrations (#13)

    * add tower state migration
    
    * migrate community wallet list
    
    * ancestry struct resources
    
    * use coin split in genesis migration
    
    * migrate ancestry and receipts
    
    * migrates diemaccount cumulative tracker
    
    * migrate slow wallet
    
    * patch community wallet migrate
    
    * epoch migration stub.
    
    * slow wallet unlock with coin split factor
    
    * cleanup names
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    01798fb View commit details
    Browse the repository at this point in the history
  7. Donor Directed Accounts Liquidation (#14)

    * refactor donation tracking to also keep a struct of the addresses in one place.
    
    * refactor the liquidation of donor directed wallets, in including community wallet case
    
    * patch community wallet veto test
    
    * fix nasty oversight with double counting cumulative deposits.
    
    * community pro_rata calculation and test
    
    * refactor vm_make_payment_no_limit to account for withdraw capabilities being delegated in multisig wallets.
    
    * donor directed wallet liquidation flow tested.
    
    * clean print
    
    * all tests passing.
    
    * Squashed commit of the following:
    
    commit ddac86e
    Author: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com>
    Date:   Fri Apr 14 17:36:50 2023 -0400
    
        Hard Fork Migrations (#13)
    
        * add tower state migration
    
        * migrate community wallet list
    
        * ancestry struct resources
    
        * use coin split in genesis migration
    
        * migrate ancestry and receipts
    
        * migrates diemaccount cumulative tracker
    
        * migrate slow wallet
    
        * patch community wallet migrate
    
        * epoch migration stub.
    
        * slow wallet unlock with coin split factor
    
        * cleanup names
    0o-de-lally committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    0952114 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8c350b5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    352f657 View commit details
    Browse the repository at this point in the history