laconicd/types/codec.go

33 lines
853 B
Go
Raw Normal View History

package types
import (
2021-04-17 10:00:07 +00:00
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
2022-06-02 07:53:03 +00:00
"github.com/cosmos/cosmos-sdk/types/tx"
2021-04-17 10:00:07 +00:00
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
type ExtensionOptionsWeb3TxI interface{}
2021-04-17 10:00:07 +00:00
// RegisterInterfaces registers the tendermint concrete client-related
// implementations and interfaces.
func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
registry.RegisterImplementations(
(*authtypes.AccountI)(nil),
&EthAccount{},
)
registry.RegisterImplementations(
(*authtypes.GenesisAccount)(nil),
&EthAccount{},
)
registry.RegisterInterface(
2022-04-28 17:34:20 +00:00
"ethermint.types.v1.ExtensionOptionsWeb3Tx",
(*ExtensionOptionsWeb3TxI)(nil),
&ExtensionOptionsWeb3Tx{},
)
2022-06-02 07:53:03 +00:00
registry.RegisterInterface(
"ethermint.types.v1.ExtensionOptionsWeb3Tx",
(*tx.TxExtensionOptionI)(nil),
&ExtensionOptionsWeb3Tx{},
)
}