Parity

鏈基礎在平價中意味著什麼?主網和基金會有什麼區別?

  • April 17, 2018

parity --help以下描述:

--chain=[CHAIN]
       Specify the blockchain type. CHAIN may be either a JSON chain specification file or
       olympic, frontier, homestead, mainnet, morden, ropsten, classic, expanse, musicoin,
       ellaism, testnet, kovan or dev. (default: foundation)

我真的找不到基礎是什麼意思。如果您檢查 etherscan 上的塊,它似乎與主網沒有區別。那麼,有人知道“基礎”和“主網”有什麼區別嗎?感謝分行!

為了確認,從程式碼中,所有的foundation、、frontier和映射到同一個鏈。homestead``mainnet

fn from_str(s: &str) -> Result<Self, Self::Err> {
   let spec = match s {
-->     "foundation" | "frontier" | "homestead" | "mainnet" => SpecType::Foundation,
       "frontier-dogmatic" | "homestead-dogmatic" | "classic" => SpecType::Classic,
       "morden" | "classic-testnet" => SpecType::Morden,
       "ropsten" => SpecType::Ropsten,
       "kovan" | "testnet" => SpecType::Kovan,
       ...

基金會鍊是乙太坊基金會正在支持的鏈,也稱為主網。

引用自:https://ethereum.stackexchange.com/questions/45858