112 lines
3.0 KiB
Go
112 lines
3.0 KiB
Go
package keys
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// KeyOutput defines a structure wrapping around an Info object used for output
|
|
// functionality.
|
|
type KeyOutput struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Address string `json:"address"`
|
|
PubKey string `json:"pubkey"`
|
|
Mnemonic string `json:"mnemonic,omitempty"`
|
|
Threshold uint `json:"threshold,omitempty"`
|
|
PubKeys []multisigPubKeyOutput `json:"pubkeys,omitempty"`
|
|
}
|
|
|
|
type multisigPubKeyOutput struct {
|
|
Address string `json:"address"`
|
|
PubKey string `json:"pubkey"`
|
|
Weight uint `json:"weight"`
|
|
}
|
|
|
|
// Bech32KeysOutput returns a slice of KeyOutput objects, each with the "acc"
|
|
// Bech32 prefixes, given a slice of Info objects. It returns an error if any
|
|
// call to Bech32KeyOutput fails.
|
|
func Bech32KeysOutput(infos []Info) ([]KeyOutput, error) {
|
|
kos := make([]KeyOutput, len(infos))
|
|
for i, info := range infos {
|
|
ko, err := Bech32KeyOutput(info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
kos[i] = ko
|
|
}
|
|
|
|
return kos, nil
|
|
}
|
|
|
|
// Bech32ConsKeyOutput create a KeyOutput in with "cons" Bech32 prefixes.
|
|
func Bech32ConsKeyOutput(keyInfo Info) (KeyOutput, error) {
|
|
consAddr := sdk.ConsAddress(keyInfo.GetPubKey().Address().Bytes())
|
|
|
|
bechPubKey, err := sdk.Bech32ifyConsPub(keyInfo.GetPubKey())
|
|
if err != nil {
|
|
return KeyOutput{}, err
|
|
}
|
|
|
|
return KeyOutput{
|
|
Name: keyInfo.GetName(),
|
|
Type: keyInfo.GetType().String(),
|
|
Address: consAddr.String(),
|
|
PubKey: bechPubKey,
|
|
}, nil
|
|
}
|
|
|
|
// Bech32ValKeyOutput create a KeyOutput in with "val" Bech32 prefixes.
|
|
func Bech32ValKeyOutput(keyInfo Info) (KeyOutput, error) {
|
|
valAddr := sdk.ValAddress(keyInfo.GetPubKey().Address().Bytes())
|
|
|
|
bechPubKey, err := sdk.Bech32ifyValPub(keyInfo.GetPubKey())
|
|
if err != nil {
|
|
return KeyOutput{}, err
|
|
}
|
|
|
|
return KeyOutput{
|
|
Name: keyInfo.GetName(),
|
|
Type: keyInfo.GetType().String(),
|
|
Address: valAddr.String(),
|
|
PubKey: bechPubKey,
|
|
}, nil
|
|
}
|
|
|
|
// Bech32KeyOutput create a KeyOutput in with "acc" Bech32 prefixes. If the
|
|
// public key is a multisig public key, then the threshold and constituent
|
|
// public keys will be added.
|
|
func Bech32KeyOutput(info Info) (KeyOutput, error) {
|
|
accAddr := sdk.AccAddress(info.GetPubKey().Address().Bytes())
|
|
bechPubKey, err := sdk.Bech32ifyAccPub(info.GetPubKey())
|
|
if err != nil {
|
|
return KeyOutput{}, err
|
|
}
|
|
|
|
ko := KeyOutput{
|
|
Name: info.GetName(),
|
|
Type: info.GetType().String(),
|
|
Address: accAddr.String(),
|
|
PubKey: bechPubKey,
|
|
}
|
|
|
|
if mInfo, ok := info.(multiInfo); ok {
|
|
pubKeys := make([]multisigPubKeyOutput, len(mInfo.PubKeys))
|
|
|
|
for i, pk := range mInfo.PubKeys {
|
|
accAddr := sdk.AccAddress(pk.PubKey.Address().Bytes())
|
|
|
|
bechPubKey, err := sdk.Bech32ifyAccPub(pk.PubKey)
|
|
if err != nil {
|
|
return KeyOutput{}, err
|
|
}
|
|
|
|
pubKeys[i] = multisigPubKeyOutput{accAddr.String(), bechPubKey, pk.Weight}
|
|
}
|
|
|
|
ko.Threshold = mInfo.Threshold
|
|
ko.PubKeys = pubKeys
|
|
}
|
|
|
|
return ko, nil
|
|
}
|