package mxgateway const ( // ClientVersion is the released semantic version of this Go client module. // Keep it in sync with the module tag applied by scripts/tag-go-module.ps1. ClientVersion = "0.1.2" // GatewayProtocolVersion matches GatewayContractInfo.GatewayProtocolVersion // in the shared .NET contracts. GatewayProtocolVersion uint32 = 3 // WorkerProtocolVersion matches GatewayContractInfo.WorkerProtocolVersion // and is exposed for fake-worker and parity tests. WorkerProtocolVersion uint32 = 1 )