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

Expose bootstrapping options with fvm #2812

Open
bluesign opened this issue Jul 16, 2022 · 16 comments
Open

Expose bootstrapping options with fvm #2812

bluesign opened this issue Jul 16, 2022 · 16 comments
Labels
Execution Cadence Execution Team Tech Debt

Comments

@bluesign
Copy link
Contributor

bluesign commented Jul 16, 2022

Problem Definition

Currently there is no way to influence bootstrapping, I am trying to implement some options for emulator ( something like simpleContracts, to skip deploying often not used contracts) onflow/flow-emulator#170

Proposed Solution

Adding fvm options to enable and disable deployments for the below parts would be amazing.

  • DKG
  • QC
  • Staking (I think also includes epoch etc here)
  • LockedTokens
  • Contract Audits

cc: @janezpodhostnik

@janezpodhostnik
Copy link
Contributor

LockedTokens and Contract Audits could be removed without any problems, but I'm not sure if everything would still function without DKG, QC and Staking.

Is the main purpose of this to make bootstrapping faster? If so maybe we can make a measurement first and see what the expensive bits are.

@janezpodhostnik janezpodhostnik added the Execution Cadence Execution Team label Jul 19, 2022
@bluesign
Copy link
Contributor Author

My main objective is to bootstrap emulator without those bits. onflow/flow-emulator#170

@devbugging
Copy link
Contributor

@janezpodhostnik I think this would mostly apply and be useful in the case of running the emulator. We would also have a use for that on Playground where we just want a clean state without any pre-deployed contracts as none are required. Could the bootstrap procedure be configurable?

Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the Stale Label used when marking an issue stale. label Sep 27, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Oct 4, 2024
@turbolent turbolent reopened this Nov 7, 2024
@github-actions github-actions bot removed the Stale Label used when marking an issue stale. label Nov 8, 2024
@joshuahannan
Copy link
Member

Is this something that we think could be possible? We'd like the NFTStorefront and USDC contracts to be deployed to the emulator for bootstrapping, but can't do it without this

@janezpodhostnik
Copy link
Contributor

The main problem with changing the bootstrapping procedure are actually our unit and integration tests.

A lot of the tests silently rely on certain things being on certain locations. When you change what gets bootstrapped where, some tests start failing and you spend quite some time fixing them all.

I would love to have a more modular approach to bootstrapping where each test (/application/usage) declares what it needs. And the bootstrapping procedure would figure out dependencies and magically compose everything.

Maybe the proper way to approach this is to build the framework for modular bootstrapping and start pulling contracts out of the current procedure in to the new one one by one.

This is not a short task, but we will definitely need it more and more as we move additional logic on chain.

@bluesign
Copy link
Contributor Author

bluesign commented Jan 3, 2025

Maybe the proper way to approach this is to build the framework for modular bootstrapping and start pulling contracts out of the current procedure in to the new one one by one.

Currently we have N pre-created accounts ( if we keep this N constant and not increase) so some extra bootstrap option to deploy to some account index some contract can be pretty helpful. ( if we change N it would eventually break some 3rd party tests )

So instead of creating account, deploying contract and moving to next; we can create N pre-created accounts, and deploy by index somehow core contracts and additional user provided ones.

Then maybe we can have some default options ( replicating current system ), this would solve disabling some contracts etc on purpose like in the initial proposal without effecting legacy tests etc.

@joshuahannan
Copy link
Member

joshuahannan commented Jan 7, 2025

If I understand correctly, we are uncomfortable updating the flow-go bootstrapping, but shouldn't there be code in the emulator repo somewhere that we can add more bootstrapping code to and just leave the flow-go bootstrapping the same?

We also just found out that we need to update the emulator bootstrapping to deploy and setup the VM bridge, so I figured there is probably a way we could just do that in the emulator without having to change any of the flow-go bootstrapping.

If that is possible, could y'all link me to the emulator code where that would be able to happen? I want to learn about it and try to figure out how to do it myself. We could include the NFTStorefront and USDC deployments there too

@joshuahannan
Copy link
Member

@janezpodhostnik Would you be able to take a look at my previous comment? It would help unblock me from figuring out how we want to do the emulator bootstrapping for the bridge. Thank you!

@janezpodhostnik
Copy link
Contributor

So instead of creating account, deploying contract and moving to next; we can create N pre-created accounts, and deploy by index somehow core contracts and additional user provided ones.

This sounds like a good idea, but how would we decide what is a good N. To small and we might need to change it in the future. To large and we are taking up unnecessary resources.

I suppose we could go with something like 10. We are currently using 5 I think and at least some of those could actually just go on the service account.

@bluesign
Copy link
Contributor Author

Thinking a bit more on this I think N as a bootstrap option with default value 5 covers all cases.

Also this covers frequently requested emulator feature where people want to pre create N accounts on emulator launch with a flag.

@joshuahannan
Copy link
Member

I'd really like to help with this but I'm not sure where to start. Like I said before, we also need to update emulator bootstrapping for the bridge, so I want to understand how everything works so I can start figuring out how to do it.

@j1010001
Copy link
Member

Another reason we should prioritize this is bootstrapping of EVM bridge contract: #7053

In general - bootstrapping is fragile and hard to edit - people should not need to modify FVM to bootstrap new contract, it should be modular enough to add a new contract easily, without the need to modify flow-go.

@bluesign
Copy link
Contributor Author

I made small PR to emulator for this, @janezpodhostnik can you have a look ?

onflow/flow-emulator#808

@janezpodhostnik
Copy link
Contributor

That looks like a really general/low-level solution, which we also need and we can add right away! Nice!

Let me try to explain what I had in mind with this specific issue.

Imagine that we have some repos with a bunch of cadence contracts. As an example we can take the EVM bridge repository.

And now lets say that I'm trying to build on top of that and I would like my emulator (or in general my local FVM instance) to start up bootstrapped with all that is needed.

I think the EVM bridge repository should provide a bootstrap module that I can somehow import into bootstrapping and everything happens automatically.

I was thinking of an api like this:

bootstrap := fvm.NewBootstrapBuilder()

bootstrap.SetSomeSetting(value)

bootstrap.AddModule(fvm.EVMBootstrapModule(
// with some EVM related setting
)) 
bootstrap.AddModule(bridge.BridgeBootstrapModule())
bootstrap.AddModule(MyModule())

procedure, info, err := builder.Build()

_, _, _ := vm.Run(ctx, procedure, snapshotTree)

println(info.FirstEmptyAccount())

Modules can:

  • edit bootstrap settings
  • create accounts
  • deploy contracts on new or existing accounts
  • send setup transactions

A wish-list of mine would be:

  • the ordering of how you add modules should not matter
  • modules could import other modules (so if you are importing MyModule, MyModule could already define that it needs EVMBootstrapModule and it does not need to be imported explicitly)

With something like this the core bootstrapping we currently have could also be broken into modules. Some that come to mind:

  • NFT Base
  • NFT Storefront
  • Fee Setup
  • Epoch related stuff
  • EVM
  • Bridge
  • Migration

I think the overall goals could be:

  • core bootstrapping code is easy to read/maintain/extend
  • developers can create custom bootstrapping modules that can be imported by others and multiple modules should be importable at one time without a major hassle
  • unit/integration tests should be able to list their bootstrapping dependencies more clearly and explicitly
  • try to reduce the downstream impact of changes in the bootstrapping procedure

@bluesign
Copy link
Contributor Author

@janezpodhostnik agreed this would be a perfect solution.

  • the ordering of how you add modules should not matter

this one is tricky, I think in normal cases also you would want [a, b, c] should be [a, b] + [c] ( like I would not want all my import addresses change if I bootstrap additional module especially with persistence ( in emulator scope ) )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Execution Cadence Execution Team Tech Debt
Projects
None yet
Development

No branches or pull requests

6 participants