Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
21 lines
755 B
Go
21 lines
755 B
Go
package version
|
|
|
|
const (
|
|
// TMCoreSemVer is the used as the fallback version of CometBFT
|
|
// when not using git describe. It is formatted with semantic versioning.
|
|
TMCoreSemVer = "0.38.19"
|
|
// ABCISemVer is the semantic version of the ABCI protocol
|
|
ABCISemVer = "2.0.0"
|
|
ABCIVersion = ABCISemVer
|
|
// P2PProtocol versions all p2p behavior and msgs.
|
|
// This includes proposer selection.
|
|
P2PProtocol uint64 = 8
|
|
|
|
// BlockProtocol versions all block data structures and processing.
|
|
// This includes validity of blocks and state updates.
|
|
BlockProtocol uint64 = 11
|
|
)
|
|
|
|
// TMGitCommitHash uses git rev-parse HEAD to find commit hash which is helpful
|
|
// for the engineering team when working with the cometbft binary. See Makefile
|
|
var TMGitCommitHash = ""
|