Installation Go zeknd SDK
Installing and setting up zeknd
#Use your package manager to install curl
OSX:
brew install curlUbuntu / Windows Subsystem for Linux:
sudo apt install curl#Golang
OSX:
curl -sL -o go1.10.2.darwin-amd64.tar.gz https://dl.google.com/go/go1.10.2.darwin-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.10.2.darwin-amd64.tar.gz
sudo ln -s /usr/local/go/bin/go /usr/local/bin/goLinux / Windows Subsystem for Linux:
curl -sL -o go1.10.2.linux-amd64.tar.gz https://dl.google.com/go/go1.10.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.10.2.linux-amd64.tar.gz
sudo ln -s /usr/local/go/bin/go /usr/local/bin/go#Protobuf
https://github.com/google/protobuf/releases/
OSX:
Linux / Windows Subsystem for Linux:
#Download zeknd
The following script can be used to automatically download the stable version of zeknd to the current directory:
#Installation
Run these in the same directory as the previous step.
#Run Blockchain
#Send transactions
Open a second console and run the following commands:
This will generate a private key and create an account.
Next, let's set a value:
and read it:
You can read the source of the blueprint contract here
Last updated