Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/mpcium-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
// Version information
VERSION = "0.2.1"
VERSION = "0.3.5"
)

func main() {
Expand Down
23 changes: 15 additions & 8 deletions cmd/mpcium/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,25 @@ import (
)

const (
Version = "0.3.3"
Version = "0.3.5"
DefaultBackupPeriodSeconds = 300 // (5 minutes)
)

func printBanner() {
banner := fmt.Sprintf(`
╔══════════════════════════════════════════════════════════════╗
║ MPCIUM v%s ║
║ Multi-Party Computation Threshold Signatures Node ║
╚══════════════════════════════════════════════════════════════╝
`, Version)
fmt.Print(banner)
c := "\033[38;2;0;206;200m"
d := "\033[38;2;0;140;136m"
r := "\033[0m"

fmt.Printf(`
%s __ __ ____ ____ ___ _ _ __ __
| \/ | _ \ / ___|_ _| | | | \/ |
| |\/| | |_) | | | || | | | |\/| |
| | | | __/| |___ | || |_| | | | |
|_| |_|_| \____|___|\___/|_| |_|
%s Distributed MPC Node for Threshold Signatures v%s
──────────────────────────────────────────%s

`, c, d, Version, r)
}

func main() {
Expand Down
Loading