The axelar-core app based on the Cosmos SDK is the main application of the axelar network. This repository is used to build the necessary binaries and docker image to run a core node.
Note: For a release build, checkout the release tag via git checkout vX.Y.Z first.
Execute make build-static to create a statically linked axelard binary in the ./bin folder.
This is the recommended option as it produces a portable binary that runs on any Linux distribution
without glibc compatibility issues. Requires Docker.
Execute make build to create a dynamically linked axelard binary in the ./bin folder.
This binary depends on your system's glibc and may not be portable to other Linux distributions.
To create a regular docker image for the node, execute make docker-image. This creates the image axelar/core:
latest.
To create a docker image for debugging (with delve),
execute make docker-image-debug. This creates the image axelar/core-debug:latest.
In order to run/build the project locally we need to import the bytecode from gateway smart contracts.
- Find the required version of the bytecode here
contract-version.json - Download that version from the axelar-cgp-solidity releases.
Example:
Bytecode-v4.3.0 - Unzip the json files under
contract-artifacts/ - Run
make generateto generatex/evm/types/contracts.go
See RELEASE.md for the release process for axelard.
Before interacting with the axelar network, ensure you have the correct axelard binary and that it's verified:
-
Download the Binary and Signature File:
- Go to the Axelar Core releases page.
- Download the
axelardbinary for your operating system and architecture. - Also, download the corresponding
.ascsignature file.
-
Import Axelar's Public Key:
- Run the following command to import the public key:
curl https://keybase.io/axelardev/pgp_keys.asc | gpg --import
- Run the following command to import the public key:
-
Trust the Imported Key:
- Enter GPG interactive mode:
gpg --edit-key 5D9FFADEED11FA5D
- Type
trustthen select option5to trust ultimately.
- Enter GPG interactive mode:
-
Verify the Binary:
- For example, for version v0.34.3, use:
gpg --verify axelard-darwin-amd64-v0.34.3.asc axelard-darwin-amd64-v0.34.3
- A message indicating a good signature should appear, like:
Good signature from "Axelar Network Devs <[email protected]>" [ultimate]
- For example, for version v0.34.3, use:
With a local (dockerized) node running, the axelard binary can be used to interact with the node.
Run ./bin/axelard or ./bin/axelard <command> --help after building the binaries to get information about the available commands.
Execute GO111MODULE=off go install -u golang.org/x/tools/cmd/godoc to ensure that godoc is installed on the host.
After the installation, execute godoc -http ":{port}" -index to host a local godoc server. For example, with
port 8080 and godoc -http ":8080" -index, the documentation is hosted at
http://localhost:8080/pkg/github.com/axelarnetwork/axelar-core. The index flag makes the documentation searchable.
Comments at the beginning of packages, before types and before functions are automatically taken from the source files to populate the documentation. See https://blog.golang.org/godoc for more information.
For the full list of available CLI commands for axelard see here
Dev tool dependencies, such as moq and goimports, can be installed via make prereqs.
Make sure they're on available on your PATH.
See the Axelar documentation website.