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

custom precompile capabilities #36

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

mycodecrafting
Copy link
Contributor

@mycodecrafting mycodecrafting commented Jul 16, 2024

Summary

Adds a precompile manager that makes it easy to add new precompiles to the evm by writing an implementation in go which corresponds to a defined solidity interface. These precompiles can optionally have state in the evm state db.

Background

This updates a PR from the old astria go-ethereum repo to the latest changes in the newer astria-geth repo.

The precompile manager is heavily utilized by Forma and potentially useful for other custom evm rollups. @itamarreif may have some ideas of things he might like to do with it.

There are no custom precompiles enabled by default.

Changes from old PR

  • Custom gas handler per precompile method
  • Better configuration of which precompiles are enabled
  • Removal of native minter as an example precompile; and addition of an example base64 precompile which is simpler to understand and potentially more useful for rollup devs

@mycodecrafting mycodecrafting requested review from bharath-123, joroshiba and noot and removed request for joroshiba and noot July 16, 2024 04:12
@joroshiba joroshiba linked an issue Jul 23, 2024 that may be closed by this pull request
Copy link
Member

@joroshiba joroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

generally lgtm just a few repo level questions of where the gitignore files and such are coming form


4. Implement the precompile in Go at `./contracts/<precompile>/<precompile.go>`.
- The struct should implement the `StatefulPrecompiledContract` interface
- You must methods defined in the Solidity interface
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there is a missing word here

caller common.Address,
value *uint256.Int,
suppliedGas uint64,
readOnly bool,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the instance in which this would be true?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we need the .gitignore here?


// return precompiles that are enabled at height
func PrecompileConfig(chainConfig *params.ChainConfig, height uint64, timestamp uint64) precompile.PrecompileMap {
return NullPrecompiles
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we add a commented out line of code here on what enabling would look like?

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

Successfully merging this pull request may close these issues.

feat: precompile manager
2 participants