Documentation ¶
Index ¶
Constants ¶
View Source
const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release VersionPatch = 1 // Patch version component of the current release VersionMeta = "develop" // Version metadata to append to the version string )
Variables ¶
View Source
var Version = func() string { return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch) }()
Version holds the textual version string.
View Source
var VersionWithMeta = func() string { v := Version if VersionMeta != "" { v += "-" + VersionMeta } return v }()
VersionWithMeta holds the textual version string including the metadata.
Functions ¶
This section is empty.
Types ¶
type TransmuteConfig ¶
type TransmuteConfig struct { Port uint64 `json:"port"` TrustedProxies []string `json:"trustedProxies"` Alchemy common.AlchemyConfig `json:"alchemy"` }
Click to show internal directories.
Click to hide internal directories.