Skip to content

Instantly share code, notes, and snippets.

@pikesley
Created January 4, 2016 11:32
Show Gist options
  • Save pikesley/9217e4f821074c60ed3f to your computer and use it in GitHub Desktop.
Save pikesley/9217e4f821074c60ed3f to your computer and use it in GitHub Desktop.
Join my blockchain
vagrant up
(select to bridge to eth0 or eth1)
vagrant ssh
multichaind odi-chain@10.14.3.49:9255
It will complain, but it will give you a wallet address. Send that to me, and I can allow you in. Then
multichaind odi-chain@10.14.3.49:9255 -daemon
multichain-cli odi-chain getinfo
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'hashicorp/precise64'
config.vm.hostname = 'odi-chain'
config.vm.network 'public_network'
config.vm.provider 'virtualbox' do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
end
config.vm.provision 'shell',
inline: "cd /tmp &&\
wget http://www.multichain.com/download/multichain-1.0-alpha-14.tar.gz &&\
tar -xvzf multichain-1.0-alpha-14.tar.gz &&\
cd multichain-1.0-alpha-14 &&\
mv multichaind multichain-cli multichain-util /usr/local/bin"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment