github.com/line/ostracon@v1.0.10-0.20230328032236-7f20145f065d/version/version.go (about)

     1  package version
     2  
     3  var (
     4  	// OCCoreSemVer is the current version of Ostracon Core.
     5  	// It's the Semantic Version of the software.
     6  	OCCoreSemVer string
     7  )
     8  
     9  const (
    10  	// ABCISemVer is the semantic version of the ABCI library
    11  	ABCISemVer = "0.17.0"
    12  
    13  	ABCIVersion = ABCISemVer
    14  )
    15  
    16  var (
    17  	// P2PProtocol versions all p2p behaviour and msgs.
    18  	// This includes proposer selection.
    19  	P2PProtocol uint64 = 8
    20  
    21  	// BlockProtocol versions all block data structures and processing.
    22  	// This includes validity of blocks and state updates.
    23  	BlockProtocol uint64 = 11
    24  
    25  	// AppProtocol versions ABCI application.
    26  	AppProtocol uint64 = 0
    27  )