github.com/vipernet-xyz/tm@v0.34.24/version/version.go (about)

     1  package version
     2  
     3  var TMCoreSemVer = TMVersionDefault
     4  
     5  const (
     6  	// TMVersionDefault is the used as the fallback version of Tendermint Core
     7  	// when not using git describe. It is formatted with semantic versioning.
     8  	TMVersionDefault = "0.34.24"
     9  	// ABCISemVer is the semantic version of the ABCI library
    10  	ABCISemVer = "0.17.0"
    11  
    12  	ABCIVersion = ABCISemVer
    13  )
    14  
    15  var (
    16  	// P2PProtocol versions all p2p behaviour and msgs.
    17  	// This includes proposer selection.
    18  	P2PProtocol uint64 = 8
    19  
    20  	// BlockProtocol versions all block data structures and processing.
    21  	// This includes validity of blocks and state updates.
    22  	BlockProtocol uint64 = 11
    23  )