Add Ethereum Social support (#8325)

This commit is contained in:
Akira Takizawa
2018-04-09 23:18:00 +09:00
committed by Rando
parent e6f75bccfe
commit d97cf34138
4 changed files with 8867 additions and 1 deletions

View File

@@ -76,6 +76,11 @@ pub fn new_easthub<'a, T: Into<SpecParams<'a>>>(params: T) -> Spec {
load(params.into(), include_bytes!("../../res/ethereum/easthub.json"))
}
/// Create a new Ethereum Social mainnet chain spec ¯\_(ツ)_/¯ .
pub fn new_social<'a, T: Into<SpecParams<'a>>>(params: T) -> Spec {
load(params.into(), include_bytes!("../../res/ethereum/social.json"))
}
/// Create a new Kovan testnet chain spec.
pub fn new_kovan<'a, T: Into<SpecParams<'a>>>(params: T) -> Spec {
load(params.into(), include_bytes!("../../res/ethereum/kovan.json"))