cosmos-sdk/codec/codec.go

49 lines
892 B
Go

package codec
import (
"bytes"
"encoding/json"
amino "github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/crypto/encoding/amino"
)
// amino codec to marshal/unmarshal
type Codec = amino.Codec
func New() *Codec {
cdc := amino.NewCodec()
return cdc
}
// Register the go-crypto to the codec
func RegisterCrypto(cdc *Codec) {
cryptoAmino.RegisterAmino(cdc)
}
// attempt to make some pretty json
func MarshalJSONIndent(cdc *Codec, obj interface{}) ([]byte, error) {
bz, err := cdc.MarshalJSON(obj)
if err != nil {
return nil, err
}
var out bytes.Buffer
err = json.Indent(&out, bz, "", " ")
if err != nil {
return nil, err
}
return out.Bytes(), nil
}
//__________________________________________________________________
// generic sealed codec to be used throughout sdk
var Cdc *Codec
func init() {
cdc := New()
RegisterCrypto(cdc)
Cdc = cdc.Seal()
}