As mentioned here, Grin mainnet will hard fork mid July (block 262_080 ) and grin floonet on June 23 (block 185_040 ). In order to be sure that this hard fork will go smoothly, we will do a dry run on block 182_040 (roughly around 2019-06-21 13:39:00 UTC) on a small network.
We welcome all developers to join us and test this hard fork.
How to join the “private” network.
1. Download and install
#Clone grin repository
git clone https://github.com/mimblewimble/grin.git
#Go to grin dir
cd grin
#Checkout latest tag
git checkout v2.0.0-beta.1
#Download git patch
wget https://gist.githubusercontent.com/quentinlesceller/2d2231e5e394cf14f310343cce314e2d/raw/45647ea6d1aee7726343b68eafc92cb8ec14b6e3/hf.patch
#Apply git patch
git apply hf.patch
#Build Grin
cargo build --release
2. Change your server configuration
Modify your server configuration (in ~/.grin/floo/grin-server.toml)
Change seeding_type
to List
and uncomment the seeds
line below and put the following IP address.
seeds = ["100.26.68.39:13414"]
You can now start you grin node with grin --floonet
.
Your node will hard fork on block 182,040.
Join us on Gitter #dev to debug, discuss and exchanges test grins!