Installation
Install Go
Go 1.19+ is required.
Install the panacead
panacead
If you want to install the panacead
binary to run your node or to communicate with other nodes, please clone the panacea-core
project and build it.
Verify that the panacead
binary is installed successfully.
Import panacea-core
as a Go dependency
panacea-core
as a Go dependencyIf you want to develop Go applications by importing the panacea-core
, you cannot run go get github.com/medibloc/panacea-core/v2
directly due to the design of Go Modules , which doesn't honor replace
directives in the go.mod
of the panacea-core
.
As a workaround, please add replace
directives in your go.mod
as below.
Then, you can go get
the panacea-core
.
Last updated