Skip to content

Commit cafc7e4

Browse files
authored
Merge pull request #156 from fystack/chore/bump-versions
Update versions
2 parents 68c1c1a + f92ecfa commit cafc7e4

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

cmd/mpcium-cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
const (
1313
// Version information
14-
VERSION = "0.2.1"
14+
VERSION = "0.3.5"
1515
)
1616

1717
func main() {

cmd/mpcium/main.go

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,25 @@ import (
3333
)
3434

3535
const (
36-
Version = "0.3.3"
36+
Version = "0.3.5"
3737
DefaultBackupPeriodSeconds = 300 // (5 minutes)
3838
)
3939

4040
func printBanner() {
41-
banner := fmt.Sprintf(`
42-
╔══════════════════════════════════════════════════════════════╗
43-
║ MPCIUM v%s ║
44-
║ Multi-Party Computation Threshold Signatures Node ║
45-
╚══════════════════════════════════════════════════════════════╝
46-
`, Version)
47-
fmt.Print(banner)
41+
c := "\033[38;2;0;206;200m"
42+
d := "\033[38;2;0;140;136m"
43+
r := "\033[0m"
44+
45+
fmt.Printf(`
46+
%s __ __ ____ ____ ___ _ _ __ __
47+
| \/ | _ \ / ___|_ _| | | | \/ |
48+
| |\/| | |_) | | | || | | | |\/| |
49+
| | | | __/| |___ | || |_| | | | |
50+
|_| |_|_| \____|___|\___/|_| |_|
51+
%s Distributed MPC Node for Threshold Signatures v%s
52+
──────────────────────────────────────────%s
53+
54+
`, c, d, Version, r)
4855
}
4956

5057
func main() {

0 commit comments

Comments
 (0)