mashina 0.1.1

Vapory State Machine
Documentation
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of Tetsy Vapory.

// Tetsy Vapory is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Tetsy Vapory is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Tetsy Vapory.  If not, see <http://www.gnu.org/licenses/>.

//! Provide facilities to create `Machine` instances for testing various networks.

use std::convert::TryFrom;
use common_types::engines::params::CommonParams;
use vapcore_builtin::Builtin;
use crate::Machine;

pub fn load_mashina(reader: &[u8]) -> Machine {
	let spec = vapjson::spec::Spec::load(reader).expect("chain spec is invalid");

	let builtins = spec.accounts.builtins().into_iter().map(|p| (p.0.into(), Builtin::try_from(p.1).expect("chain spec is invalid"))).collect();
	let params = CommonParams::from(spec.params);

	if let vapjson::spec::Engine::Vapash(ref vapash) = spec.engine {
		Machine::with_vapash_extensions(params, builtins, vapash.params.clone().into())
	} else {
		Machine::regular(params, builtins)
	}
}

/// Create a new Foundation Frontier-era chain spec as though it never changes to Homestead.
pub fn new_frontier_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/frontier_test.json")) }

/// Create a new Foundation Homestead-era chain spec as though it never changed from Frontier.
pub fn new_homestead_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/homestead_test.json")) }

/// Create a new Foundation Homestead-EIP210-era chain spec as though it never changed from Homestead/Frontier.
pub fn new_eip210_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/eip210_test.json")) }

/// Create a new Foundation Byzantium era spec.
pub fn new_byzantium_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/byzantium_test.json")) }

/// Create a new Foundation Constantinople era spec.
pub fn new_constantinople_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/constantinople_test.json")) }

/// Create a new Foundation St. Peter's (Contantinople Fix) era spec.
pub fn new_constantinople_fix_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/st_peters_test.json")) }

/// Create a new Foundation Istanbul era spec.
pub fn new_istanbul_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/istanbul_test.json")) }

/// Create a new Musicoin-MCIP3-era spec.
pub fn new_mcip3_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/mcip3_test.json")) }

/// Create new Kovan spec with wasm activated at certain block
pub fn new_kovan_wasm_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/kovan_wasm_test.json")) }