planetmint-go/app/params/encoding.go
Lorenz Herzberger e7d3ce3412
added ignite scaffold chain planetmint-go --no-module
Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
2023-04-17 13:26:10 +02:00

17 lines
489 B
Go

package params
import (
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
)
// EncodingConfig specifies the concrete encoding types to use for a given app.
// This is provided for compatibility between protobuf and amino implementations.
type EncodingConfig struct {
InterfaceRegistry types.InterfaceRegistry
Marshaler codec.Codec
TxConfig client.TxConfig
Amino *codec.LegacyAmino
}