This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FM-148: Deploy IPC actors in genesis (#159)
* FM-148: Change genesis initialisation to allow message execution * FM-148: Wait before starting the Eth API * FM-148: Add contracts_dir to config and interpreter * FM-148: Trying to deploy the Gateway * FM-148: Link the bytecode references * FM-148: Copy the entire contract directory * FM-148: Topo sorted dependencies * FM-148: Deploy libraries during genesis * FM-148: Move Hardhat to own crate * FM-148: Make topo_sort generic * FM-148: Compile Solidity for testing * FM-148: Fix copying of contracts in docker build * FM-148: Trying to add ethereum libraries to the init actor map * FM-148: Deterministic ordering in toposort * FM-148: Hash the masked ID for delegation * FM-148: Fix initcode encoding * FM-148: Unit test constructor param encoding (fails) * FM-148: Fix passing the constructor argument. * FM-148: Use ID address in library map but log both * FM-148: Helper method to deploy top level Eth contracts * FM-148: Factor out deployment * FM-148: Fix FVM version * FM-148: Use a known version of actors * FM-148: Try to print container logs on e2e error * FM-148: Only ask for IDs * FM-148: Try printing logs after setup * FM-148: Print cometbft logs as well. * FM-148: Increase wait time on CI * FM-148: Fix deploy logs * Update fendermint/vm/actor_interface/src/ipc.rs Co-authored-by: adlrocha <6717133+adlrocha@users.noreply.github.com> * Update fendermint/vm/actor_interface/src/ipc.rs Co-authored-by: adlrocha <6717133+adlrocha@users.noreply.github.com> --------- Co-authored-by: adlrocha <6717133+adlrocha@users.noreply.github.com>
- Loading branch information
Showing
25 changed files
with
1,166 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
target | ||
docker/.artifacts | ||
cometbft | ||
test-network |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "fendermint_eth_hardhat" | ||
description = "Utilities to deal with Hardhat build artifacts" | ||
version = "0.1.0" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
ethers-core = { workspace = true } | ||
hex = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } |
Oops, something went wrong.