-
Notifications
You must be signed in to change notification settings - Fork 211
/
gen.go
89 lines (80 loc) · 2.39 KB
/
gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package gen
import (
"bytes"
"encoding/hex"
"fmt"
"os"
"github.com/oasisprotocol/curve25519-voi/primitives/ed25519"
"github.com/spacemeshos/economics/constants"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/genvm/core"
"github.com/spacemeshos/go-spacemesh/genvm/templates/multisig"
"github.com/spacemeshos/go-spacemesh/genvm/templates/vault"
"github.com/spacemeshos/go-spacemesh/genvm/templates/vesting"
)
type Input struct {
Keys []string `json:"keys"`
Required int `json:"required"`
Total float64 `json:"total"`
}
type Output struct {
Debug struct {
VestingAddress string
VestingArgs multisig.SpawnArguments
VaultAddress string
VaultArgs vault.SpawnArguments
} `json:"-"`
Address string `json:"address"`
Balance uint64 `json:"balance"`
}
func Generate(input Input) Output {
var keys []core.PublicKey
for _, data := range input.Keys {
keys = append(keys, decodeHexKey([]byte(data)))
}
vestingArgs := &multisig.SpawnArguments{
Required: uint8(input.Required),
PublicKeys: keys,
}
if int(vestingArgs.Required) > len(vestingArgs.PublicKeys) {
fmt.Printf("requires more signatures (%d) then public keys (%d) in the wallet\n",
vestingArgs.Required,
len(vestingArgs.PublicKeys),
)
os.Exit(1)
}
vestingAddress := core.ComputePrincipal(vesting.TemplateAddress, vestingArgs)
vaultArgs := &vault.SpawnArguments{
Owner: vestingAddress,
TotalAmount: uint64(input.Total),
InitialUnlockAmount: uint64(input.Total) / 4,
VestingStart: types.LayerID(constants.VestStart),
VestingEnd: types.LayerID(constants.VestEnd),
}
vaultAddress := core.ComputePrincipal(vault.TemplateAddress, vaultArgs)
output := Output{
Address: vaultAddress.String(),
Balance: uint64(input.Total),
}
output.Debug.VestingAddress = vestingAddress.String()
output.Debug.VestingArgs = *vestingArgs
output.Debug.VaultAddress = vaultAddress.String()
output.Debug.VaultArgs = *vaultArgs
return output
}
func decodeHexKey(data []byte) [ed25519.PublicKeySize]byte {
data = bytes.Trim(data, "\n")
key := [ed25519.PublicKeySize]byte{}
n, err := hex.Decode(key[:], data)
must(err)
if n != len(key) {
must(fmt.Errorf("key %s can't be decoded from hex into %d bytes", key, len(key)))
}
return key
}
func must(err error) {
if err != nil {
fmt.Println("fatal error: ", err.Error())
os.Exit(1)
}
}