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)
}
}
pub fn new_frontier_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/frontier_test.json")) }
pub fn new_homestead_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/homestead_test.json")) }
pub fn new_eip210_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/eip210_test.json")) }
pub fn new_byzantium_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/byzantium_test.json")) }
pub fn new_constantinople_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/constantinople_test.json")) }
pub fn new_constantinople_fix_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/st_peters_test.json")) }
pub fn new_istanbul_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/istanbul_test.json")) }
pub fn new_mcip3_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/mcip3_test.json")) }
pub fn new_kovan_wasm_test_mashina() -> Machine { load_mashina(include_bytes!("res/vapory/kovan_wasm_test.json")) }