Installation - inscription-c/cins GitHub Wiki

Prerequisites

To run an C-INS node, a Bitcoin full node is required. Please download the latest version of Bitcoin Core. Please DO NOT use the btcd, because it lacks certain JSON RPC APIs necessary for the node. Additionally, it does not have wallet functionality for transaction signing.

Pre-built Releases

The pre-built binary is only available for Linux for now. It can be downloaded from releases. Afterward, unzip the binary to a directory in your $PATH .

Build from source

The node is written in Go, so it is easy to build from the source:

git clone https://github.com/inscription-c/insc.git
cd insc && go mod download
go build

Set go proxy if a connection to GitHub is not possible:

go env -w GOPROXY=https://goproxy.io,direct