near-workspaces 0.22.1

Library for automating workflows and testing NEAR smart contracts.
Documentation
//! All builtin network types and traits.
//!
//! Currently the builtin network types are [`Mainnet`], [`Testnet`], and [`Sandbox`].

mod config;
mod info;
mod sandbox;
mod server;

pub(crate) mod builder;
pub(crate) mod variants;

pub mod betanet;
pub mod custom;
pub mod mainnet;
pub mod testnet;

pub(crate) use variants::DEV_ACCOUNT_SEED;

pub use self::betanet::Betanet;
pub use self::custom::Custom;
pub use self::info::Info;
pub use self::mainnet::Mainnet;
pub use self::sandbox::Sandbox;
pub use self::server::ValidatorKey;
pub use self::testnet::Testnet;
pub use self::variants::{
    NetworkClient, NetworkInfo, RootAccountSubaccountCreator, TopLevelAccountCreator,
};
pub use config::set_sandbox_genesis;