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

Parameterize Engine Access to Storage #314

Merged
merged 1 commit into from
Nov 9, 2021

Conversation

birchmd
Copy link
Member

@birchmd birchmd commented Oct 20, 2021

The purpose of this PR is to start the long process of completely decoupling the Engine from the NEAR host functions. This will allow us to compile and run a native version of the Engine which will be useful in tests and in debugging.

In this PR we start by factoring out the I/O operations (storage, stdin and stdout) into a trait and having the engine be parametric in any type implementing this trait. We include an implementation for the NEAR Runtime, and in the future we can define an implementation backed by a database or something for the native version.

This is a large PR, but much of it arises from having the thread the new IO object through the Engine and eth-connector. I think it could be possible to limit how much of the code needs access to IO if we structured it better (keeping pure logic separate from reading/writing storage), but that can be done as a future PR. For now I was aiming to only introduce the IO trait without moving around too much code.

The most important piece for reviewers to focus on is the new traits defined in engine-sdk/src/io.rs.

@birchmd birchmd added C-enhancement Category: New feature or request A-connector Area: Issues that relate to the connector. A-storage Area: Any changes that affect storage. A-fungible-token Area: Fungible token related. labels Oct 20, 2021
Copy link
Contributor

@joshuajbouw joshuajbouw left a comment

Choose a reason for hiding this comment

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

Don't really have any complaints here. Clean enough though, these always are not a treat to follow :D

birchmd added a commit to birchmd/aurora-engine that referenced this pull request Nov 5, 2021
@birchmd birchmd merged commit 0d0be23 into aurora-is-near:develop Nov 9, 2021
@birchmd birchmd deleted the sdk-refactor-revisited branch November 15, 2021 15:21
artob pushed a commit that referenced this pull request Dec 10, 2021
* Feat(engine): London hard fork support (#244)
* Fix(exit precompile): Address to refund in case of error is an argument (#311)
* Feat(engine): Make engine parametric in storage access (#314)
* Test verifying the EVM log returns the correct address (#341)
* Remove sdk::current_account_id usage from engine-precompiles (#346)
* Remove Default trait bound from engine IO (#342)
* Remove some sdk usage from core logic (#347)
* Factor out blockchain environment variable access as a trait (#349)
* Factor out NEAR promise host functions into a trait (#353)
* Borsh deserialized value field for call args (#351)
* Refactor(eth-connector): Use Result return values instead of panicking (#355)
* Gate all NEAR host functions behind the contract feature (#356)
* Bump @openzeppelin/contracts from 4.3.2 to 4.3.3 in /etc/eth-contracts
* Chore: Newtypes for gas (#344)
* Feat(standalone): Standalone (#345)
* Minor fixes to sdk refactor (#359)
* Refactor(engine): Move submit logic into engine module (#366)
* Feat(standalone): Storage backend (#375)
* NEAR random numbers from solidity contract (#368)
* Feat(standalone): EVM tracing via SputnikVM (#383)
* Feat(standalone): Bootstrap storage from relayer and state snapshots (#379)
* Feat(standalone): Structures and logic for keeping storage in sync with the blockchain (#382)
* Feat(standalone): Capture geth-like tracing from SputnikVM events (#384)
* Connector cleanup (#374)
* Remove betanet
* Fix(engine): original_storage bug fix; more tracing tests (#390)
* Increase NEAR Gas for ft_on_transfer (#389)

Co-authored-by: Andrew Bednoff <andrew.bednoff@aurora.dev>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evgeny Ukhanov <evgeny.ukhanov@aurora.dev>
Co-authored-by: Marcelo Fornet <marcelo.fornet@aurora.dev>
Co-authored-by: Michael Birch <michael.birch@aurora.dev>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-connector Area: Issues that relate to the connector. A-fungible-token Area: Fungible token related. A-storage Area: Any changes that affect storage. C-enhancement Category: New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants