From c84dbf0dd3f33656978187d94383fb7a47b85ab3 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Fri, 10 Feb 2023 15:41:47 -0500 Subject: [PATCH] build: include FEVM-related actors (#1203) --- Cargo.lock | 1 + Cargo.toml | 1 + build.rs | 4 ++++ src/lib.rs | 4 ++++ 4 files changed, 10 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5631e4df8..f54c7ef52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2126,6 +2126,7 @@ dependencies = [ "fil_actor_bundler", "fil_actor_cron", "fil_actor_datacap", + "fil_actor_eam", "fil_actor_ethaccount", "fil_actor_evm", "fil_actor_init", diff --git a/Cargo.toml b/Cargo.toml index faa049e16..e6ec48ed3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ fil_actor_account = { version = "10.0.0-alpha.1", path = "./actors/account", fea fil_actor_cron = { version = "10.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] } fil_actor_datacap = { version = "10.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] } fil_actor_ethaccount = { version = "10.0.0-alpha.1", path = "actors/ethaccount", features = ["fil-actor"] } +fil_actor_eam = { version = "10.0.0-alpha.1", path = "./actors/eam", features = ["fil-actor"] } fil_actor_evm = { version = "10.0.0-alpha.1", path = "./actors/evm", features = ["fil-actor"] } fil_actor_init = { version = "10.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] } fil_actor_market = { version = "10.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] } diff --git a/build.rs b/build.rs index 056a0beb2..7dadee3c6 100644 --- a/build.rs +++ b/build.rs @@ -26,6 +26,10 @@ const ACTORS: &[(&Package, &ID)] = &[ ("reward", "reward"), ("verifreg", "verifiedregistry"), ("datacap", "datacap"), + ("placeholder", "placeholder"), + ("evm", "evm"), + ("eam", "eam"), + ("ethaccount", "ethaccount"), ]; const NETWORK_ENV: &str = "BUILD_FIL_NETWORK"; diff --git a/src/lib.rs b/src/lib.rs index bd35e69cb..1d5cc9354 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,6 +17,10 @@ /// - "reward" /// - "system" /// - "verifreg" +/// - "evm" +/// - "eam" +/// - "ethaccount" +/// - "placeholder" /// /// The Filecoin client must import the contents of CAR into the blockstore, but /// may opt to exclude the index data structure.