SIX Protocol (Technical Document)
  • Introduction
  • Getting Started
    • Network information
      • Deploying with Hardhat
      • Deploying with Foundry
    • Wallets
      • Keplr
      • Metamask
    • Faucet
    • EVM x Cosmos Transfer Tools
  • SIX Product
    • Product Overview
    • NFT Gen2
    • SIX CLI
      • Installation (Golang)
      • Download CLI
      • Basic CLI Command
Powered by GitBook
On this page
  1. SIX Product
  2. SIX CLI

Download CLI

SIX CLI and (or Gen2 CLI)

To use the binary efficiency Please Install Golang version v1.18.0 or newer

For Linux OS

# For Linux OS
wget https://storage.googleapis.com/download-sixprotocol/latest/linux/sixd_linux_amd64.tar.gz
#or
curl -G https://storage.googleapis.com/download-sixprotocol/latest/linux/sixd_linux_amd64.tar.gz -o ./sixd_linux_amd64.tar.gz
#or
gsutil cp gs://download-sixprotocol/latest/linux/sixd_linux_amd64.tar.gz .

For MacOS

# Intel(amd64) processror
wget https://storage.googleapis.com/download-sixprotocol/latest/macos_darwin_amd64/sixd_darwin_amd64.tar.gz
#or
curl -G https://storage.googleapis.com/download-sixprotocol/latest/macos_darwin_amd64/sixd_darwin_amd64.tar.gz -o ./sixd_darwin_amd64.tar.gz
#or
gsutil cp gs://download-sixprotocol/latest/macos_darwin_amd64/sixd_darwin_amd64.tar.gz .


# ARM64(M1) processror
wget https://storage.googleapis.com/download-sixprotocol/latest/macos_darwin_arm64/sixd_darwin_amd64.tar.gz
#or
curl -G https://storage.googleapis.com/download-sixprotocol/latest/macos_darwin_arm64/sixd_darwin_amd64.tar.gz -o ./sixd_darwin_amd64.tar.gz
#or
gsutil cp gs://download-sixprotocol/latest/macos_darwin_arm64/sixd_darwin_amd64.tar.gz .

After downloaded we need to extract zip file and it appear "sixd" binary file

move binary file go bin path

mv ./sixd $GOPATH/bin

Make binary file executable (MacOS only)

xattr -d com.apple.quarantine $GOPATH/bin/sixd
sudo chmod 755 $GOPATH/bin/sixd

To test binary is executable try command and it will list all available command

sixd --help

# and checking version of binary
sixd version
PreviousInstallation (Golang)NextBasic CLI Command

Last updated 2 years ago