github.com/KYVENetwork/cometbft/v38@v38.0.3/proxy/version.go (about)

     1  package proxy
     2  
     3  import (
     4  	abci "github.com/KYVENetwork/cometbft/v38/abci/types"
     5  	"github.com/KYVENetwork/cometbft/v38/version"
     6  )
     7  
     8  // RequestInfo contains all the information for sending
     9  // the abci.RequestInfo message during handshake with the app.
    10  // It contains only compile-time version information.
    11  var RequestInfo = &abci.RequestInfo{
    12  	Version:      version.TMCoreSemVer,
    13  	BlockVersion: version.BlockProtocol,
    14  	P2PVersion:   version.P2PProtocol,
    15  	AbciVersion:  version.ABCIVersion,
    16  }