* Use v034auth RegisterCrypto * Add custom amino for LegacyAminoPubKey * Fix registercrypto * Revert old PR * revert some genutil stuff * Add comment * Add changelog * Remove binary marshalling * Fix lint * Fix lint again * Fix lint, 3rd time's a charm * ignore wrong linter warning * Fix UnmarshalAmioJSON Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Alessio Treglia <alessio@tendermint.com> Co-authored-by: Anil Kumar Kammari <anil@vitwit.com>
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
package multisig
|
|
|
|
import (
|
|
"github.com/tendermint/tendermint/crypto/sr25519"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
|
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
|
)
|
|
|
|
// TODO: Figure out API for others to either add their own pubkey types, or
|
|
// to make verify / marshal accept a AminoCdc.
|
|
const (
|
|
PubKeyAminoRoute = "tendermint/PubKeyMultisigThreshold"
|
|
)
|
|
|
|
//nolint
|
|
// Deprecated: Amino is being deprecated in the SDK. But even if you need to
|
|
// use Amino for some reason, please use `codec/legacy.Cdc` instead.
|
|
var AminoCdc = codec.NewLegacyAmino()
|
|
|
|
func init() {
|
|
AminoCdc.RegisterInterface((*cryptotypes.PubKey)(nil), nil)
|
|
AminoCdc.RegisterConcrete(ed25519.PubKey{},
|
|
ed25519.PubKeyName, nil)
|
|
AminoCdc.RegisterConcrete(sr25519.PubKey{},
|
|
sr25519.PubKeyName, nil)
|
|
AminoCdc.RegisterConcrete(&secp256k1.PubKey{},
|
|
secp256k1.PubKeyName, nil)
|
|
AminoCdc.RegisterConcrete(&LegacyAminoPubKey{},
|
|
PubKeyAminoRoute, nil)
|
|
}
|