recall_fendermint_vm_actor_interface 0.1.2

Re-export interfaces of built-in actors, either copied versions or from direct project reference.
Documentation
// Copyright 2022-2024 Protocol Labs
// SPDX-License-Identifier: Apache-2.0, MIT
//! The modules in this crate a thin interfaces to builtin-actors,
//! so that the rest of the system doesn't have to copy-paste things
//! such as actor IDs, method numbers, method parameter data types.
//!
//! This is similar to how the FVM library contains copies for actors
//! it assumes to be deployed, like the init-actor. There, it's to avoid
//! circular project dependencies. Here, we have the option to reference
//! the actor projects directly and re-export what we need, or to copy
//! the relevant pieces of code. By limiting this choice to this crate,
//! the rest of the application can avoid ad-hoc magic numbers.
//!
//! The actor IDs can be found in [singletons](https://github.com/filecoin-project/builtin-actors/blob/master/runtime/src/builtin/singletons.rs),
//! while the code IDs are in [builtins](https://github.com/filecoin-project/builtin-actors/blob/master/runtime/src/runtime/builtins.rs)

/// Something we can use for empty state, similar to how the FVM uses `EMPTY_ARR_CID`.
pub const EMPTY_ARR: [(); 0] = [(); 0]; // Based on how it's done in `Tester`.

macro_rules! define_code {
    ($name:ident { code_id: $code_id:literal }) => {
        paste::paste! {
            /// Position of the actor in the builtin actor bundle manifest.
            pub const [<$name _ACTOR_CODE_ID>]: u32 = $code_id;
        }
    };
}

macro_rules! define_id {
    ($name:ident { id: $id:literal }) => {
        paste::paste! {
            pub const [<$name _ACTOR_ID>]: fvm_shared::ActorID = $id;
            pub const [<$name _ACTOR_ADDR>]: fvm_shared::address::Address = fvm_shared::address::Address::new_id([<$name _ACTOR_ID>]);
        }
    };
}

macro_rules! define_singleton {
    ($name:ident { id: $id:literal, code_id: $code_id:literal }) => {
        define_id!($name { id: $id });
        define_code!($name { code_id: $code_id });
    };
}

pub mod account;
pub mod activity;
pub mod adm;
pub mod blob_reader;
pub mod blobs;
pub mod bucket;
pub mod burntfunds;
pub mod chainmetadata;
pub mod cron;
pub mod diamond;
pub mod eam;
pub mod ethaccount;
pub mod evm;
pub mod gas_market;
pub mod init;
pub mod ipc;
pub mod multisig;
pub mod placeholder;
pub mod recall_config;
pub mod reward;
pub mod system;
pub mod timehub;