zoukankan      html  css  js  c++  java
  • ethereum

    几个网址


    https://github.com/ethereum/go-ethereum/wiki
    http://ethfans.org


    windows下安装以太币钱包

    从下面网址下载钱包,不用安装是绿色版
    http://ethfans.org/wikis/Wallet-Mirror
    Ethereum-Wallet-win64-0-8-1.zip


    更改钱包的数据目录

    1、我的区块链文件存储目录是C:UsersAdministratorAppDataRoamingEthereum,准备转移到D:lockchainEthereum。
    2、剪切文件夹C:UsersAdministratorAppDataRoamingEthereum,存储到 D:etherrumdata
    3、打开命令行窗口CMD,敲入命令:
    mklink /J C:UsersAdministratorAppDataRoamingEthereum D:lockchainEthereum

     

    Building Geth (command line client)

    Clone the repository to a directory of your choosing:

    git clone https://github.com/ethereum/go-ethereum

    Install latest distribution of Go (v1.7) if you don't have it already:

    See instructions

    Building geth requires Go and C compilers to be installed:

    sudo apt-get install -y build-essential golang

    Finally, build the geth program using the following command.

    cd go-ethereum
    make geth

    You can now run build/bin/geth to start your node.

     以太坊的geth就是客户端,相当于比特币的bitcoind
    直接启动geth,程序就会去同步数据库
    geth --testnet,进入测试链模式(私有链)
    geth console ,进入终端交互模式


    testnet id
    https://ethereum.stackexchange.com/questions/10311/what-is-olympic-frontier-morden-homestead-and-ropsten-ethereum-blockchain

    Each network version gets a name (id). Here is an overview.

    • Olympic (0), is often also referred to as Ethereum 0.9, it launched early 2015 and was the first public Testnet. Deprecated in mid 2015 and replaced by Morden.
    • Frontier (1), the official 1.0 release was launched as public main network in summer 2015. Forked to Homestead in early 2016.
    • Morden (2) is the Frontier-equivalent testnet, launched with Frontier, and basicly replaces Olympic. Deprecated in late 2016 and replaced by Ropsten.
    • Homestead (1) was the first major upgrade (1.1) of the Frontier network in March 2016. This did not replace but upgrade Frontier.
    • Ropsten (3) is a new Homestead-equivalent testnet launched in late 2016 due to multiple issues in the old testnet and finally replaced Morden. Ropsten was attacked in Februrary 2016 and declared dead.
    • Kovan (42) is the first proof-of-authority (PoA) testnet issued by Ethcore, Melonport, and Digix after the Ropsten attacks.
    • Rinkeby, another PoA testnet is currently being drafted.

    The current protocol version is Homestead. The Ropsten testnet is broken and there is no public Homestead equivalent testnet available.

    Despite the differences in name, Olympic, Morden and Ropsten have the network ids 02 and 3. Frontier, Homestead are the main network with id 1. You can run your own chain by specifying a network id other than 0, 1, 2, or 3.

     

    https://github.com/ethereum/go-ethereum/wiki/Private-network
    创建创始块


  • 相关阅读:
    【Codechef】Chef and Bike(二维多项式插值)
    USACO 完结的一些感想
    USACO 6.5 Checker Challenge
    USACO 6.5 The Clocks
    USACO 6.5 Betsy's Tour (插头dp)
    USACO 6.5 Closed Fences
    USACO 6.4 Electric Fences
    USACO 6.5 All Latin Squares
    USACO 6.4 The Primes
    USACO 6.4 Wisconsin Squares
  • 原文地址:https://www.cnblogs.com/blkchain/p/7058241.html
Copyright © 2011-2022 走看看