2021-06-04 13:14:45 +00:00
|
|
|
package encoding
|
2021-04-17 10:00:07 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
amino "github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp/params"
|
2021-06-04 13:14:45 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
2021-11-02 10:24:24 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth/tx"
|
2021-04-17 10:00:07 +00:00
|
|
|
|
2022-06-19 09:43:41 +00:00
|
|
|
enccodec "github.com/evmos/ethermint/encoding/codec"
|
2021-04-17 10:00:07 +00:00
|
|
|
)
|
|
|
|
|
2021-06-25 09:18:37 +00:00
|
|
|
// MakeConfig creates an EncodingConfig for testing
|
2021-06-04 13:14:45 +00:00
|
|
|
func MakeConfig(mb module.BasicManager) params.EncodingConfig {
|
2021-04-17 10:00:07 +00:00
|
|
|
cdc := amino.NewLegacyAmino()
|
|
|
|
interfaceRegistry := types.NewInterfaceRegistry()
|
|
|
|
marshaler := amino.NewProtoCodec(interfaceRegistry)
|
|
|
|
|
|
|
|
encodingConfig := params.EncodingConfig{
|
|
|
|
InterfaceRegistry: interfaceRegistry,
|
|
|
|
Marshaler: marshaler,
|
2021-11-02 10:24:24 +00:00
|
|
|
TxConfig: tx.NewTxConfig(marshaler, tx.DefaultSignModes),
|
2021-04-17 10:00:07 +00:00
|
|
|
Amino: cdc,
|
|
|
|
}
|
|
|
|
|
2021-06-04 13:45:37 +00:00
|
|
|
enccodec.RegisterLegacyAminoCodec(encodingConfig.Amino)
|
2021-06-04 13:14:45 +00:00
|
|
|
mb.RegisterLegacyAminoCodec(encodingConfig.Amino)
|
2021-06-04 13:45:37 +00:00
|
|
|
enccodec.RegisterInterfaces(encodingConfig.InterfaceRegistry)
|
2021-06-04 13:14:45 +00:00
|
|
|
mb.RegisterInterfaces(encodingConfig.InterfaceRegistry)
|
2021-04-17 10:00:07 +00:00
|
|
|
return encodingConfig
|
|
|
|
}
|