Versions in this module Expand all Collapse all v0 v0.6.1 Oct 1, 2021 v0.6.0 Sep 25, 2021 v0.5.5 Sep 25, 2021 v0.5.4 Sep 23, 2021 v0.5.3 Sep 23, 2021 v0.5.2 Sep 23, 2021 Changes in this version + const AttributeKeyContractAddress + const AttributeKeyEthereumBloom + const AttributeKeyEthereumTxFailed + const AttributeKeyEthereumTxHash + const AttributeKeyRecipient + const AttributeKeyTxHash + const AttributeKeyTxLog + const AttributeKeyTxType + const AttributeValueCategory + const DefaultEVMDenom + const EventTypeBlockBloom + const EventTypeEthereumTx + const EventTypeTxLog + const MetricKeyStaticCall + const MetricKeyTransitionDB + const ModuleName + const RouterKey + const StoreKey + const TracerAccessList + const TracerJSON + const TracerMarkdown + const TracerStruct + const TransientKey + const TypeMsgEthereumTx + var AvailableExtraEIPs = []int64 + var EmptyCodeHash = crypto.Keccak256(nil) + var ErrBloomNotFound = sdkerrors.Register(ModuleName, codeErrBloomNotFound, "block bloom not found") + var ErrCallDisabled = sdkerrors.Register(ModuleName, codeErrCallDisabled, "EVM Call operation is disabled") + var ErrChainConfigNotFound = sdkerrors.Register(ModuleName, codeErrChainConfigNotFound, "chain configuration not found") + var ErrCreateDisabled = sdkerrors.Register(ModuleName, codeErrCreateDisabled, "EVM Create operation is disabled") + var ErrEmptyHash = sdkerrors.Register(ModuleName, codeErrEmptyHash, "empty hash") + var ErrExecutionReverted = sdkerrors.Register(ModuleName, codeErrExecutionReverted, vm.ErrExecutionReverted.Error()) + var ErrInconsistentGas = sdkerrors.Register(ModuleName, codeErrInconsistentGas, "inconsistent gas") + var ErrIntOverflowEvm = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowQuery = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + var ErrInvalidAmount = sdkerrors.Register(ModuleName, codeErrInvalidAmount, "invalid transaction amount") + var ErrInvalidBaseFee = sdkerrors.Register(ModuleName, codeErrInvalidBaseFee, "invalid base fee") + var ErrInvalidChainConfig = sdkerrors.Register(ModuleName, codeErrInvalidChainConfig, "invalid chain configuration") + var ErrInvalidGasCap = sdkerrors.Register(ModuleName, codeErrInvalidGasCap, "invalid gas cap") + var ErrInvalidGasPrice = sdkerrors.Register(ModuleName, codeErrInvalidGasPrice, "invalid gas price") + var ErrInvalidLengthEvm = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthQuery = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidRefund = sdkerrors.Register(ModuleName, codeErrInvalidRefund, "invalid gas refund amount") + var ErrInvalidState = sdkerrors.Register(ModuleName, codeErrInvalidState, "invalid storage state") + var ErrPostTxProcessing = errors.New("failed to execute post processing") + var ErrTxReceiptNotFound = sdkerrors.Register(ModuleName, codeErrTxReceiptNotFound, "transaction receipt not found") + var ErrUnexpectedEndOfGroupEvm = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") + var ErrVMExecution = sdkerrors.Register(ModuleName, codeErrVMExecution, "evm transaction execution failed") + var ErrZeroAddress = sdkerrors.Register(ModuleName, codeErrZeroAddress, "invalid zero address") + var KeyPrefixCode = []byte + var KeyPrefixStorage = []byte + var KeyPrefixTransientAccessListAddress = []byte + var KeyPrefixTransientAccessListSlot = []byte + var KeyPrefixTransientBloom = []byte + var KeyPrefixTransientLogSize = []byte + var KeyPrefixTransientRefund = []byte + var KeyPrefixTransientSuicided = []byte + var KeyPrefixTransientTxHash = []byte + var KeyPrefixTransientTxIndex = []byte + var KeyPrefixTransientTxLogs = []byte + var ModuleCdc = codec.NewProtoCodec(codectypes.NewInterfaceRegistry()) + var ParamStoreKeyChainConfig = []byte("ChainConfig") + var ParamStoreKeyEVMDenom = []byte("EVMDenom") + var ParamStoreKeyEnableCall = []byte("EnableCall") + var ParamStoreKeyEnableCreate = []byte("EnableCreate") + var ParamStoreKeyExtraEIPs = []byte("EnableExtraEIPs") + var ParamStoreKeyNoBaseFee = []byte("NoBaseFee") + func AddressStoragePrefix(address common.Address) []byte + func BinSearch(lo, hi uint64, executable func(uint64) (bool, *MsgEthereumTxResponse, error)) (uint64, error) + func DeriveChainID(v *big.Int) *big.Int + func EncodeTransactionLogs(res *TransactionLogs) ([]byte, error) + func KeyAddressStorage(address common.Address, hash common.Hash) common.Hash + func LogsToEthereum(logs []*Log) []*ethtypes.Log + func NewTracer(tracer string, msg core.Message, cfg *params.ChainConfig, height int64, ...) vm.Tracer + func PackTxData(txData TxData) (*codectypes.Any, error) + func ParamKeyTable() paramtypes.KeyTable + func RegisterInterfaces(registry codectypes.InterfaceRegistry) + func RegisterMsgServer(s grpc1.Server, srv MsgServer) + func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error + func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error + func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error) + func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error + func RegisterQueryServer(s grpc1.Server, srv QueryServer) + func StateKey(address common.Address, key []byte) []byte + type AccessList []AccessTuple + func NewAccessList(ethAccessList *ethtypes.AccessList) AccessList + func (al AccessList) ToEthAccessList() *ethtypes.AccessList + type AccessListTx struct + Accesses AccessList + Amount *github_com_cosmos_cosmos_sdk_types.Int + ChainID *github_com_cosmos_cosmos_sdk_types.Int + Data []byte + GasLimit uint64 + GasPrice *github_com_cosmos_cosmos_sdk_types.Int + Nonce uint64 + R []byte + S []byte + To string + V []byte + func (*AccessListTx) Descriptor() ([]byte, []int) + func (*AccessListTx) ProtoMessage() + func (m *AccessListTx) Marshal() (dAtA []byte, err error) + func (m *AccessListTx) MarshalTo(dAtA []byte) (int, error) + func (m *AccessListTx) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AccessListTx) Reset() + func (m *AccessListTx) Size() (n int) + func (m *AccessListTx) String() string + func (m *AccessListTx) Unmarshal(dAtA []byte) error + func (m *AccessListTx) XXX_DiscardUnknown() + func (m *AccessListTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AccessListTx) XXX_Merge(src proto.Message) + func (m *AccessListTx) XXX_Size() int + func (m *AccessListTx) XXX_Unmarshal(b []byte) error + func (tx *AccessListTx) AsEthereumData() ethtypes.TxData + func (tx *AccessListTx) Copy() TxData + func (tx *AccessListTx) GetAccessList() ethtypes.AccessList + func (tx *AccessListTx) GetChainID() *big.Int + func (tx *AccessListTx) GetData() []byte + func (tx *AccessListTx) GetGas() uint64 + func (tx *AccessListTx) GetGasFeeCap() *big.Int + func (tx *AccessListTx) GetGasPrice() *big.Int + func (tx *AccessListTx) GetGasTipCap() *big.Int + func (tx *AccessListTx) GetNonce() uint64 + func (tx *AccessListTx) GetRawSignatureValues() (v, r, s *big.Int) + func (tx *AccessListTx) GetTo() *common.Address + func (tx *AccessListTx) GetValue() *big.Int + func (tx *AccessListTx) SetSignatureValues(chainID, v, r, s *big.Int) + func (tx *AccessListTx) TxType() uint8 + func (tx AccessListTx) Cost() *big.Int + func (tx AccessListTx) Fee() *big.Int + func (tx AccessListTx) Validate() error + type AccessTuple struct + Address string + StorageKeys []string + func (*AccessTuple) Descriptor() ([]byte, []int) + func (*AccessTuple) ProtoMessage() + func (m *AccessTuple) Marshal() (dAtA []byte, err error) + func (m *AccessTuple) MarshalTo(dAtA []byte) (int, error) + func (m *AccessTuple) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AccessTuple) Reset() + func (m *AccessTuple) Size() (n int) + func (m *AccessTuple) String() string + func (m *AccessTuple) Unmarshal(dAtA []byte) error + func (m *AccessTuple) XXX_DiscardUnknown() + func (m *AccessTuple) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AccessTuple) XXX_Merge(src proto.Message) + func (m *AccessTuple) XXX_Size() int + func (m *AccessTuple) XXX_Unmarshal(b []byte) error + type AccountKeeper interface + GetAccount func(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI + GetAllAccounts func(ctx sdk.Context) (accounts []authtypes.AccountI) + GetModuleAddress func(moduleName string) sdk.AccAddress + GetParams func(ctx sdk.Context) (params authtypes.Params) + GetSequence func(sdk.Context, sdk.AccAddress) (uint64, error) + IterateAccounts func(ctx sdk.Context, cb func(account authtypes.AccountI) bool) + NewAccountWithAddress func(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI + RemoveAccount func(ctx sdk.Context, account authtypes.AccountI) + SetAccount func(ctx sdk.Context, account authtypes.AccountI) + type BankKeeper interface + BurnCoins func(ctx sdk.Context, moduleName string, amt sdk.Coins) error + GetBalance func(ctx sdk.Context, addr sdk.AccAddress, denom string) sdk.Coin + MintCoins func(ctx sdk.Context, moduleName string, amt sdk.Coins) error + SendCoinsFromAccountToModule func(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, ...) error + SendCoinsFromModuleToAccount func(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, ...) error + type CallArgs struct + AccessList *ethtypes.AccessList + Data *hexutil.Bytes + From *common.Address + Gas *hexutil.Uint64 + GasPrice *hexutil.Big + To *common.Address + Value *hexutil.Big + func (args *CallArgs) String() string + func (args *CallArgs) ToMessage(globalGasCap uint64) ethtypes.Message + type ChainConfig struct + BerlinBlock *github_com_cosmos_cosmos_sdk_types.Int + ByzantiumBlock *github_com_cosmos_cosmos_sdk_types.Int + CatalystBlock *github_com_cosmos_cosmos_sdk_types.Int + ConstantinopleBlock *github_com_cosmos_cosmos_sdk_types.Int + DAOForkBlock *github_com_cosmos_cosmos_sdk_types.Int + DAOForkSupport bool + EIP150Block *github_com_cosmos_cosmos_sdk_types.Int + EIP150Hash string + EIP155Block *github_com_cosmos_cosmos_sdk_types.Int + EIP158Block *github_com_cosmos_cosmos_sdk_types.Int + HomesteadBlock *github_com_cosmos_cosmos_sdk_types.Int + IstanbulBlock *github_com_cosmos_cosmos_sdk_types.Int + LondonBlock *github_com_cosmos_cosmos_sdk_types.Int + MuirGlacierBlock *github_com_cosmos_cosmos_sdk_types.Int + PetersburgBlock *github_com_cosmos_cosmos_sdk_types.Int + func DefaultChainConfig() ChainConfig + func (*ChainConfig) Descriptor() ([]byte, []int) + func (*ChainConfig) ProtoMessage() + func (cc ChainConfig) EthereumConfig(chainID *big.Int) *params.ChainConfig + func (cc ChainConfig) Validate() error + func (m *ChainConfig) GetDAOForkSupport() bool + func (m *ChainConfig) GetEIP150Hash() string + func (m *ChainConfig) Marshal() (dAtA []byte, err error) + func (m *ChainConfig) MarshalTo(dAtA []byte) (int, error) + func (m *ChainConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *ChainConfig) Reset() + func (m *ChainConfig) Size() (n int) + func (m *ChainConfig) String() string + func (m *ChainConfig) Unmarshal(dAtA []byte) error + func (m *ChainConfig) XXX_DiscardUnknown() + func (m *ChainConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *ChainConfig) XXX_Merge(src proto.Message) + func (m *ChainConfig) XXX_Size() int + func (m *ChainConfig) XXX_Unmarshal(b []byte) error + type DynamicFeeTx struct + Accesses AccessList + Amount *github_com_cosmos_cosmos_sdk_types.Int + ChainID *github_com_cosmos_cosmos_sdk_types.Int + Data []byte + GasFeeCap *github_com_cosmos_cosmos_sdk_types.Int + GasLimit uint64 + GasTipCap *github_com_cosmos_cosmos_sdk_types.Int + Nonce uint64 + R []byte + S []byte + To string + V []byte + func (*DynamicFeeTx) Descriptor() ([]byte, []int) + func (*DynamicFeeTx) ProtoMessage() + func (m *DynamicFeeTx) Marshal() (dAtA []byte, err error) + func (m *DynamicFeeTx) MarshalTo(dAtA []byte) (int, error) + func (m *DynamicFeeTx) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *DynamicFeeTx) Reset() + func (m *DynamicFeeTx) Size() (n int) + func (m *DynamicFeeTx) String() string + func (m *DynamicFeeTx) Unmarshal(dAtA []byte) error + func (m *DynamicFeeTx) XXX_DiscardUnknown() + func (m *DynamicFeeTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *DynamicFeeTx) XXX_Merge(src proto.Message) + func (m *DynamicFeeTx) XXX_Size() int + func (m *DynamicFeeTx) XXX_Unmarshal(b []byte) error + func (tx *DynamicFeeTx) AsEthereumData() ethtypes.TxData + func (tx *DynamicFeeTx) Copy() TxData + func (tx *DynamicFeeTx) GetAccessList() ethtypes.AccessList + func (tx *DynamicFeeTx) GetChainID() *big.Int + func (tx *DynamicFeeTx) GetData() []byte + func (tx *DynamicFeeTx) GetGas() uint64 + func (tx *DynamicFeeTx) GetGasFeeCap() *big.Int + func (tx *DynamicFeeTx) GetGasPrice() *big.Int + func (tx *DynamicFeeTx) GetGasTipCap() *big.Int + func (tx *DynamicFeeTx) GetNonce() uint64 + func (tx *DynamicFeeTx) GetRawSignatureValues() (v, r, s *big.Int) + func (tx *DynamicFeeTx) GetTo() *common.Address + func (tx *DynamicFeeTx) GetValue() *big.Int + func (tx *DynamicFeeTx) SetSignatureValues(chainID, v, r, s *big.Int) + func (tx *DynamicFeeTx) TxType() uint8 + func (tx DynamicFeeTx) Cost() *big.Int + func (tx DynamicFeeTx) Fee() *big.Int + func (tx DynamicFeeTx) Validate() error + type EstimateGasResponse struct + Gas uint64 + func (*EstimateGasResponse) Descriptor() ([]byte, []int) + func (*EstimateGasResponse) ProtoMessage() + func (m *EstimateGasResponse) GetGas() uint64 + func (m *EstimateGasResponse) Marshal() (dAtA []byte, err error) + func (m *EstimateGasResponse) MarshalTo(dAtA []byte) (int, error) + func (m *EstimateGasResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *EstimateGasResponse) Reset() + func (m *EstimateGasResponse) Size() (n int) + func (m *EstimateGasResponse) String() string + func (m *EstimateGasResponse) Unmarshal(dAtA []byte) error + func (m *EstimateGasResponse) XXX_DiscardUnknown() + func (m *EstimateGasResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *EstimateGasResponse) XXX_Merge(src proto.Message) + func (m *EstimateGasResponse) XXX_Size() int + func (m *EstimateGasResponse) XXX_Unmarshal(b []byte) error + type EthCallRequest struct + Args []byte + GasCap uint64 + func (*EthCallRequest) Descriptor() ([]byte, []int) + func (*EthCallRequest) ProtoMessage() + func (m *EthCallRequest) GetArgs() []byte + func (m *EthCallRequest) GetGasCap() uint64 + func (m *EthCallRequest) Marshal() (dAtA []byte, err error) + func (m *EthCallRequest) MarshalTo(dAtA []byte) (int, error) + func (m *EthCallRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *EthCallRequest) Reset() + func (m *EthCallRequest) Size() (n int) + func (m *EthCallRequest) String() string + func (m *EthCallRequest) Unmarshal(dAtA []byte) error + func (m *EthCallRequest) XXX_DiscardUnknown() + func (m *EthCallRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *EthCallRequest) XXX_Merge(src proto.Message) + func (m *EthCallRequest) XXX_Size() int + func (m *EthCallRequest) XXX_Unmarshal(b []byte) error + type EvmHooks interface + PostTxProcessing func(ctx sdk.Context, txHash common.Hash, logs []*ethtypes.Log) error + type ExecutionResult struct + Failed bool + Gas uint64 + ReturnValue string + StructLogs []StructLogRes + type ExtensionOptionsEthereumTx struct + func (*ExtensionOptionsEthereumTx) Descriptor() ([]byte, []int) + func (*ExtensionOptionsEthereumTx) ProtoMessage() + func (m *ExtensionOptionsEthereumTx) Marshal() (dAtA []byte, err error) + func (m *ExtensionOptionsEthereumTx) MarshalTo(dAtA []byte) (int, error) + func (m *ExtensionOptionsEthereumTx) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *ExtensionOptionsEthereumTx) Reset() + func (m *ExtensionOptionsEthereumTx) Size() (n int) + func (m *ExtensionOptionsEthereumTx) String() string + func (m *ExtensionOptionsEthereumTx) Unmarshal(dAtA []byte) error + func (m *ExtensionOptionsEthereumTx) XXX_DiscardUnknown() + func (m *ExtensionOptionsEthereumTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *ExtensionOptionsEthereumTx) XXX_Merge(src proto.Message) + func (m *ExtensionOptionsEthereumTx) XXX_Size() int + func (m *ExtensionOptionsEthereumTx) XXX_Unmarshal(b []byte) error + type ExtensionOptionsEthereumTxI interface + type GenesisAccount struct + Address string + Code string + Storage Storage + func (*GenesisAccount) Descriptor() ([]byte, []int) + func (*GenesisAccount) ProtoMessage() + func (ga GenesisAccount) Validate() error + func (m *GenesisAccount) GetAddress() string + func (m *GenesisAccount) GetCode() string + func (m *GenesisAccount) GetStorage() Storage + func (m *GenesisAccount) Marshal() (dAtA []byte, err error) + func (m *GenesisAccount) MarshalTo(dAtA []byte) (int, error) + func (m *GenesisAccount) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *GenesisAccount) Reset() + func (m *GenesisAccount) Size() (n int) + func (m *GenesisAccount) String() string + func (m *GenesisAccount) Unmarshal(dAtA []byte) error + func (m *GenesisAccount) XXX_DiscardUnknown() + func (m *GenesisAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *GenesisAccount) XXX_Merge(src proto.Message) + func (m *GenesisAccount) XXX_Size() int + func (m *GenesisAccount) XXX_Unmarshal(b []byte) error + type GenesisState struct + Accounts []GenesisAccount + Params Params + func DefaultGenesisState() *GenesisState + func (*GenesisState) Descriptor() ([]byte, []int) + func (*GenesisState) ProtoMessage() + func (gs GenesisState) Validate() error + func (m *GenesisState) GetAccounts() []GenesisAccount + func (m *GenesisState) GetParams() Params + func (m *GenesisState) Marshal() (dAtA []byte, err error) + func (m *GenesisState) MarshalTo(dAtA []byte) (int, error) + func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *GenesisState) Reset() + func (m *GenesisState) Size() (n int) + func (m *GenesisState) String() string + func (m *GenesisState) Unmarshal(dAtA []byte) error + func (m *GenesisState) XXX_DiscardUnknown() + func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *GenesisState) XXX_Merge(src proto.Message) + func (m *GenesisState) XXX_Size() int + func (m *GenesisState) XXX_Unmarshal(b []byte) error + type LegacyTx struct + Amount *github_com_cosmos_cosmos_sdk_types.Int + Data []byte + GasLimit uint64 + GasPrice *github_com_cosmos_cosmos_sdk_types.Int + Nonce uint64 + R []byte + S []byte + To string + V []byte + func (*LegacyTx) Descriptor() ([]byte, []int) + func (*LegacyTx) ProtoMessage() + func (m *LegacyTx) Marshal() (dAtA []byte, err error) + func (m *LegacyTx) MarshalTo(dAtA []byte) (int, error) + func (m *LegacyTx) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *LegacyTx) Reset() + func (m *LegacyTx) Size() (n int) + func (m *LegacyTx) String() string + func (m *LegacyTx) Unmarshal(dAtA []byte) error + func (m *LegacyTx) XXX_DiscardUnknown() + func (m *LegacyTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *LegacyTx) XXX_Merge(src proto.Message) + func (m *LegacyTx) XXX_Size() int + func (m *LegacyTx) XXX_Unmarshal(b []byte) error + func (tx *LegacyTx) AsEthereumData() ethtypes.TxData + func (tx *LegacyTx) Copy() TxData + func (tx *LegacyTx) GetAccessList() ethtypes.AccessList + func (tx *LegacyTx) GetChainID() *big.Int + func (tx *LegacyTx) GetData() []byte + func (tx *LegacyTx) GetGas() uint64 + func (tx *LegacyTx) GetGasFeeCap() *big.Int + func (tx *LegacyTx) GetGasPrice() *big.Int + func (tx *LegacyTx) GetGasTipCap() *big.Int + func (tx *LegacyTx) GetNonce() uint64 + func (tx *LegacyTx) GetRawSignatureValues() (v, r, s *big.Int) + func (tx *LegacyTx) GetTo() *common.Address + func (tx *LegacyTx) GetValue() *big.Int + func (tx *LegacyTx) SetSignatureValues(_, v, r, s *big.Int) + func (tx *LegacyTx) TxType() uint8 + func (tx LegacyTx) Cost() *big.Int + func (tx LegacyTx) Fee() *big.Int + func (tx LegacyTx) Validate() error + type Log struct + Address string + BlockHash string + BlockNumber uint64 + Data []byte + Index uint64 + Removed bool + Topics []string + TxHash string + TxIndex uint64 + func NewLogFromEth(log *ethtypes.Log) *Log + func NewLogsFromEth(ethlogs []*ethtypes.Log) []*Log + func (*Log) Descriptor() ([]byte, []int) + func (*Log) ProtoMessage() + func (log *Log) ToEthereum() *ethtypes.Log + func (log *Log) Validate() error + func (m *Log) GetAddress() string + func (m *Log) GetBlockHash() string + func (m *Log) GetBlockNumber() uint64 + func (m *Log) GetData() []byte + func (m *Log) GetIndex() uint64 + func (m *Log) GetRemoved() bool + func (m *Log) GetTopics() []string + func (m *Log) GetTxHash() string + func (m *Log) GetTxIndex() uint64 + func (m *Log) Marshal() (dAtA []byte, err error) + func (m *Log) MarshalTo(dAtA []byte) (int, error) + func (m *Log) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Log) Reset() + func (m *Log) Size() (n int) + func (m *Log) String() string + func (m *Log) Unmarshal(dAtA []byte) error + func (m *Log) XXX_DiscardUnknown() + func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Log) XXX_Merge(src proto.Message) + func (m *Log) XXX_Size() int + func (m *Log) XXX_Unmarshal(b []byte) error + type MsgClient interface + EthereumTx func(ctx context.Context, in *MsgEthereumTx, opts ...grpc.CallOption) (*MsgEthereumTxResponse, error) + func NewMsgClient(cc grpc1.ClientConn) MsgClient + type MsgEthereumTx struct + Data *types.Any + From string + Hash string + Size_ float64 + func NewTx(chainID *big.Int, nonce uint64, to *common.Address, amount *big.Int, ...) *MsgEthereumTx + func NewTxContract(chainID *big.Int, nonce uint64, amount *big.Int, gasLimit uint64, ...) *MsgEthereumTx + func UnwrapEthereumMsg(tx *sdk.Tx) (*MsgEthereumTx, error) + func (*MsgEthereumTx) Descriptor() ([]byte, []int) + func (*MsgEthereumTx) ProtoMessage() + func (m *MsgEthereumTx) Marshal() (dAtA []byte, err error) + func (m *MsgEthereumTx) MarshalTo(dAtA []byte) (int, error) + func (m *MsgEthereumTx) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgEthereumTx) Reset() + func (m *MsgEthereumTx) Size() (n int) + func (m *MsgEthereumTx) String() string + func (m *MsgEthereumTx) Unmarshal(dAtA []byte) error + func (m *MsgEthereumTx) XXX_DiscardUnknown() + func (m *MsgEthereumTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgEthereumTx) XXX_Merge(src proto.Message) + func (m *MsgEthereumTx) XXX_Size() int + func (m *MsgEthereumTx) XXX_Unmarshal(b []byte) error + func (msg *MsgEthereumTx) FromEthereumTx(tx *ethtypes.Transaction) + func (msg *MsgEthereumTx) GetFrom() sdk.AccAddress + func (msg *MsgEthereumTx) GetMsgs() []sdk.Msg + func (msg *MsgEthereumTx) GetSender(chainID *big.Int) (common.Address, error) + func (msg *MsgEthereumTx) GetSigners() []sdk.AccAddress + func (msg *MsgEthereumTx) Sign(ethSigner ethtypes.Signer, keyringSigner keyring.Signer) error + func (msg MsgEthereumTx) AsMessage(signer ethtypes.Signer) (core.Message, error) + func (msg MsgEthereumTx) AsTransaction() *ethtypes.Transaction + func (msg MsgEthereumTx) GetGas() uint64 + func (msg MsgEthereumTx) GetSignBytes() []byte + func (msg MsgEthereumTx) Route() string + func (msg MsgEthereumTx) Type() string + func (msg MsgEthereumTx) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error + func (msg MsgEthereumTx) ValidateBasic() error + type MsgEthereumTxResponse struct + GasUsed uint64 + Hash string + Logs []*Log + Ret []byte + VmError string + func DecodeTxResponse(in []byte) (*MsgEthereumTxResponse, error) + func (*MsgEthereumTxResponse) Descriptor() ([]byte, []int) + func (*MsgEthereumTxResponse) ProtoMessage() + func (m *MsgEthereumTxResponse) Failed() bool + func (m *MsgEthereumTxResponse) Marshal() (dAtA []byte, err error) + func (m *MsgEthereumTxResponse) MarshalTo(dAtA []byte) (int, error) + func (m *MsgEthereumTxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgEthereumTxResponse) Reset() + func (m *MsgEthereumTxResponse) Size() (n int) + func (m *MsgEthereumTxResponse) String() string + func (m *MsgEthereumTxResponse) Unmarshal(dAtA []byte) error + func (m *MsgEthereumTxResponse) XXX_DiscardUnknown() + func (m *MsgEthereumTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgEthereumTxResponse) XXX_Merge(src proto.Message) + func (m *MsgEthereumTxResponse) XXX_Size() int + func (m *MsgEthereumTxResponse) XXX_Unmarshal(b []byte) error + type MsgServer interface + EthereumTx func(context.Context, *MsgEthereumTx) (*MsgEthereumTxResponse, error) + type NoOpTracer struct + func NewNoOpTracer() *NoOpTracer + func (dt NoOpTracer) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) + func (dt NoOpTracer) CaptureFault(env *vm.EVM, pc uint64, op vm.OpCode, gas, cost uint64, scope *vm.ScopeContext, ...) + func (dt NoOpTracer) CaptureStart(env *vm.EVM, from, to common.Address, create bool, input []byte, gas uint64, ...) + func (dt NoOpTracer) CaptureState(env *vm.EVM, pc uint64, op vm.OpCode, gas, cost uint64, scope *vm.ScopeContext, ...) + type Params struct + ChainConfig ChainConfig + EnableCall bool + EnableCreate bool + EvmDenom string + ExtraEIPs []int64 + func DefaultParams() Params + func NewParams(evmDenom string, enableCreate, enableCall bool, config ChainConfig, ...) Params + func (*Params) Descriptor() ([]byte, []int) + func (*Params) ProtoMessage() + func (m *Params) GetChainConfig() ChainConfig + func (m *Params) GetEnableCall() bool + func (m *Params) GetEnableCreate() bool + func (m *Params) GetEvmDenom() string + func (m *Params) GetExtraEIPs() []int64 + func (m *Params) Marshal() (dAtA []byte, err error) + func (m *Params) MarshalTo(dAtA []byte) (int, error) + func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Params) Reset() + func (m *Params) Size() (n int) + func (m *Params) Unmarshal(dAtA []byte) error + func (m *Params) XXX_DiscardUnknown() + func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Params) XXX_Merge(src proto.Message) + func (m *Params) XXX_Size() int + func (m *Params) XXX_Unmarshal(b []byte) error + func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs + func (p Params) EIPs() []int + func (p Params) String() string + func (p Params) Validate() error + type QueryAccountRequest struct + Address string + func (*QueryAccountRequest) Descriptor() ([]byte, []int) + func (*QueryAccountRequest) ProtoMessage() + func (m *QueryAccountRequest) Marshal() (dAtA []byte, err error) + func (m *QueryAccountRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryAccountRequest) Reset() + func (m *QueryAccountRequest) Size() (n int) + func (m *QueryAccountRequest) String() string + func (m *QueryAccountRequest) Unmarshal(dAtA []byte) error + func (m *QueryAccountRequest) XXX_DiscardUnknown() + func (m *QueryAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryAccountRequest) XXX_Merge(src proto.Message) + func (m *QueryAccountRequest) XXX_Size() int + func (m *QueryAccountRequest) XXX_Unmarshal(b []byte) error + type QueryAccountResponse struct + Balance string + CodeHash string + Nonce uint64 + func (*QueryAccountResponse) Descriptor() ([]byte, []int) + func (*QueryAccountResponse) ProtoMessage() + func (m *QueryAccountResponse) GetBalance() string + func (m *QueryAccountResponse) GetCodeHash() string + func (m *QueryAccountResponse) GetNonce() uint64 + func (m *QueryAccountResponse) Marshal() (dAtA []byte, err error) + func (m *QueryAccountResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryAccountResponse) Reset() + func (m *QueryAccountResponse) Size() (n int) + func (m *QueryAccountResponse) String() string + func (m *QueryAccountResponse) Unmarshal(dAtA []byte) error + func (m *QueryAccountResponse) XXX_DiscardUnknown() + func (m *QueryAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryAccountResponse) XXX_Merge(src proto.Message) + func (m *QueryAccountResponse) XXX_Size() int + func (m *QueryAccountResponse) XXX_Unmarshal(b []byte) error + type QueryBalanceRequest struct + Address string + func (*QueryBalanceRequest) Descriptor() ([]byte, []int) + func (*QueryBalanceRequest) ProtoMessage() + func (m *QueryBalanceRequest) Marshal() (dAtA []byte, err error) + func (m *QueryBalanceRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryBalanceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryBalanceRequest) Reset() + func (m *QueryBalanceRequest) Size() (n int) + func (m *QueryBalanceRequest) String() string + func (m *QueryBalanceRequest) Unmarshal(dAtA []byte) error + func (m *QueryBalanceRequest) XXX_DiscardUnknown() + func (m *QueryBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryBalanceRequest) XXX_Merge(src proto.Message) + func (m *QueryBalanceRequest) XXX_Size() int + func (m *QueryBalanceRequest) XXX_Unmarshal(b []byte) error + type QueryBalanceResponse struct + Balance string + func (*QueryBalanceResponse) Descriptor() ([]byte, []int) + func (*QueryBalanceResponse) ProtoMessage() + func (m *QueryBalanceResponse) GetBalance() string + func (m *QueryBalanceResponse) Marshal() (dAtA []byte, err error) + func (m *QueryBalanceResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryBalanceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryBalanceResponse) Reset() + func (m *QueryBalanceResponse) Size() (n int) + func (m *QueryBalanceResponse) String() string + func (m *QueryBalanceResponse) Unmarshal(dAtA []byte) error + func (m *QueryBalanceResponse) XXX_DiscardUnknown() + func (m *QueryBalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryBalanceResponse) XXX_Merge(src proto.Message) + func (m *QueryBalanceResponse) XXX_Size() int + func (m *QueryBalanceResponse) XXX_Unmarshal(b []byte) error + type QueryClient interface + Account func(ctx context.Context, in *QueryAccountRequest, opts ...grpc.CallOption) (*QueryAccountResponse, error) + Balance func(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) + Code func(ctx context.Context, in *QueryCodeRequest, opts ...grpc.CallOption) (*QueryCodeResponse, error) + CosmosAccount func(ctx context.Context, in *QueryCosmosAccountRequest, opts ...grpc.CallOption) (*QueryCosmosAccountResponse, error) + EstimateGas func(ctx context.Context, in *EthCallRequest, opts ...grpc.CallOption) (*EstimateGasResponse, error) + EthCall func(ctx context.Context, in *EthCallRequest, opts ...grpc.CallOption) (*MsgEthereumTxResponse, error) + Params func(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) + Storage func(ctx context.Context, in *QueryStorageRequest, opts ...grpc.CallOption) (*QueryStorageResponse, error) + TraceTx func(ctx context.Context, in *QueryTraceTxRequest, opts ...grpc.CallOption) (*QueryTraceTxResponse, error) + ValidatorAccount func(ctx context.Context, in *QueryValidatorAccountRequest, opts ...grpc.CallOption) (*QueryValidatorAccountResponse, error) + func NewQueryClient(cc grpc1.ClientConn) QueryClient + type QueryCodeRequest struct + Address string + func (*QueryCodeRequest) Descriptor() ([]byte, []int) + func (*QueryCodeRequest) ProtoMessage() + func (m *QueryCodeRequest) Marshal() (dAtA []byte, err error) + func (m *QueryCodeRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryCodeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryCodeRequest) Reset() + func (m *QueryCodeRequest) Size() (n int) + func (m *QueryCodeRequest) String() string + func (m *QueryCodeRequest) Unmarshal(dAtA []byte) error + func (m *QueryCodeRequest) XXX_DiscardUnknown() + func (m *QueryCodeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryCodeRequest) XXX_Merge(src proto.Message) + func (m *QueryCodeRequest) XXX_Size() int + func (m *QueryCodeRequest) XXX_Unmarshal(b []byte) error + type QueryCodeResponse struct + Code []byte + func (*QueryCodeResponse) Descriptor() ([]byte, []int) + func (*QueryCodeResponse) ProtoMessage() + func (m *QueryCodeResponse) GetCode() []byte + func (m *QueryCodeResponse) Marshal() (dAtA []byte, err error) + func (m *QueryCodeResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryCodeResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryCodeResponse) Reset() + func (m *QueryCodeResponse) Size() (n int) + func (m *QueryCodeResponse) String() string + func (m *QueryCodeResponse) Unmarshal(dAtA []byte) error + func (m *QueryCodeResponse) XXX_DiscardUnknown() + func (m *QueryCodeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryCodeResponse) XXX_Merge(src proto.Message) + func (m *QueryCodeResponse) XXX_Size() int + func (m *QueryCodeResponse) XXX_Unmarshal(b []byte) error + type QueryCosmosAccountRequest struct + Address string + func (*QueryCosmosAccountRequest) Descriptor() ([]byte, []int) + func (*QueryCosmosAccountRequest) ProtoMessage() + func (m *QueryCosmosAccountRequest) Marshal() (dAtA []byte, err error) + func (m *QueryCosmosAccountRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryCosmosAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryCosmosAccountRequest) Reset() + func (m *QueryCosmosAccountRequest) Size() (n int) + func (m *QueryCosmosAccountRequest) String() string + func (m *QueryCosmosAccountRequest) Unmarshal(dAtA []byte) error + func (m *QueryCosmosAccountRequest) XXX_DiscardUnknown() + func (m *QueryCosmosAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryCosmosAccountRequest) XXX_Merge(src proto.Message) + func (m *QueryCosmosAccountRequest) XXX_Size() int + func (m *QueryCosmosAccountRequest) XXX_Unmarshal(b []byte) error + type QueryCosmosAccountResponse struct + AccountNumber uint64 + CosmosAddress string + Sequence uint64 + func (*QueryCosmosAccountResponse) Descriptor() ([]byte, []int) + func (*QueryCosmosAccountResponse) ProtoMessage() + func (m *QueryCosmosAccountResponse) GetAccountNumber() uint64 + func (m *QueryCosmosAccountResponse) GetCosmosAddress() string + func (m *QueryCosmosAccountResponse) GetSequence() uint64 + func (m *QueryCosmosAccountResponse) Marshal() (dAtA []byte, err error) + func (m *QueryCosmosAccountResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryCosmosAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryCosmosAccountResponse) Reset() + func (m *QueryCosmosAccountResponse) Size() (n int) + func (m *QueryCosmosAccountResponse) String() string + func (m *QueryCosmosAccountResponse) Unmarshal(dAtA []byte) error + func (m *QueryCosmosAccountResponse) XXX_DiscardUnknown() + func (m *QueryCosmosAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryCosmosAccountResponse) XXX_Merge(src proto.Message) + func (m *QueryCosmosAccountResponse) XXX_Size() int + func (m *QueryCosmosAccountResponse) XXX_Unmarshal(b []byte) error + type QueryParamsRequest struct + func (*QueryParamsRequest) Descriptor() ([]byte, []int) + func (*QueryParamsRequest) ProtoMessage() + func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) + func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryParamsRequest) Reset() + func (m *QueryParamsRequest) Size() (n int) + func (m *QueryParamsRequest) String() string + func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error + func (m *QueryParamsRequest) XXX_DiscardUnknown() + func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryParamsRequest) XXX_Merge(src proto.Message) + func (m *QueryParamsRequest) XXX_Size() int + func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error + type QueryParamsResponse struct + Params Params + func (*QueryParamsResponse) Descriptor() ([]byte, []int) + func (*QueryParamsResponse) ProtoMessage() + func (m *QueryParamsResponse) GetParams() Params + func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) + func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryParamsResponse) Reset() + func (m *QueryParamsResponse) Size() (n int) + func (m *QueryParamsResponse) String() string + func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error + func (m *QueryParamsResponse) XXX_DiscardUnknown() + func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryParamsResponse) XXX_Merge(src proto.Message) + func (m *QueryParamsResponse) XXX_Size() int + func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error + type QueryServer interface + Account func(context.Context, *QueryAccountRequest) (*QueryAccountResponse, error) + Balance func(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error) + Code func(context.Context, *QueryCodeRequest) (*QueryCodeResponse, error) + CosmosAccount func(context.Context, *QueryCosmosAccountRequest) (*QueryCosmosAccountResponse, error) + EstimateGas func(context.Context, *EthCallRequest) (*EstimateGasResponse, error) + EthCall func(context.Context, *EthCallRequest) (*MsgEthereumTxResponse, error) + Params func(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) + Storage func(context.Context, *QueryStorageRequest) (*QueryStorageResponse, error) + TraceTx func(context.Context, *QueryTraceTxRequest) (*QueryTraceTxResponse, error) + ValidatorAccount func(context.Context, *QueryValidatorAccountRequest) (*QueryValidatorAccountResponse, error) + type QueryStaticCallResponse struct + Data []byte + func (*QueryStaticCallResponse) Descriptor() ([]byte, []int) + func (*QueryStaticCallResponse) ProtoMessage() + func (m *QueryStaticCallResponse) GetData() []byte + func (m *QueryStaticCallResponse) Marshal() (dAtA []byte, err error) + func (m *QueryStaticCallResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryStaticCallResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryStaticCallResponse) Reset() + func (m *QueryStaticCallResponse) Size() (n int) + func (m *QueryStaticCallResponse) String() string + func (m *QueryStaticCallResponse) Unmarshal(dAtA []byte) error + func (m *QueryStaticCallResponse) XXX_DiscardUnknown() + func (m *QueryStaticCallResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryStaticCallResponse) XXX_Merge(src proto.Message) + func (m *QueryStaticCallResponse) XXX_Size() int + func (m *QueryStaticCallResponse) XXX_Unmarshal(b []byte) error + type QueryStorageRequest struct + Address string + Key string + func (*QueryStorageRequest) Descriptor() ([]byte, []int) + func (*QueryStorageRequest) ProtoMessage() + func (m *QueryStorageRequest) Marshal() (dAtA []byte, err error) + func (m *QueryStorageRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryStorageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryStorageRequest) Reset() + func (m *QueryStorageRequest) Size() (n int) + func (m *QueryStorageRequest) String() string + func (m *QueryStorageRequest) Unmarshal(dAtA []byte) error + func (m *QueryStorageRequest) XXX_DiscardUnknown() + func (m *QueryStorageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryStorageRequest) XXX_Merge(src proto.Message) + func (m *QueryStorageRequest) XXX_Size() int + func (m *QueryStorageRequest) XXX_Unmarshal(b []byte) error + type QueryStorageResponse struct + Value string + func (*QueryStorageResponse) Descriptor() ([]byte, []int) + func (*QueryStorageResponse) ProtoMessage() + func (m *QueryStorageResponse) GetValue() string + func (m *QueryStorageResponse) Marshal() (dAtA []byte, err error) + func (m *QueryStorageResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryStorageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryStorageResponse) Reset() + func (m *QueryStorageResponse) Size() (n int) + func (m *QueryStorageResponse) String() string + func (m *QueryStorageResponse) Unmarshal(dAtA []byte) error + func (m *QueryStorageResponse) XXX_DiscardUnknown() + func (m *QueryStorageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryStorageResponse) XXX_Merge(src proto.Message) + func (m *QueryStorageResponse) XXX_Size() int + func (m *QueryStorageResponse) XXX_Unmarshal(b []byte) error + type QueryTraceTxRequest struct + Msg *MsgEthereumTx + TraceConfig *TraceConfig + TxIndex uint64 + func (*QueryTraceTxRequest) Descriptor() ([]byte, []int) + func (*QueryTraceTxRequest) ProtoMessage() + func (m *QueryTraceTxRequest) GetMsg() *MsgEthereumTx + func (m *QueryTraceTxRequest) GetTraceConfig() *TraceConfig + func (m *QueryTraceTxRequest) GetTxIndex() uint64 + func (m *QueryTraceTxRequest) Marshal() (dAtA []byte, err error) + func (m *QueryTraceTxRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryTraceTxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryTraceTxRequest) Reset() + func (m *QueryTraceTxRequest) Size() (n int) + func (m *QueryTraceTxRequest) String() string + func (m *QueryTraceTxRequest) Unmarshal(dAtA []byte) error + func (m *QueryTraceTxRequest) XXX_DiscardUnknown() + func (m *QueryTraceTxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryTraceTxRequest) XXX_Merge(src proto.Message) + func (m *QueryTraceTxRequest) XXX_Size() int + func (m *QueryTraceTxRequest) XXX_Unmarshal(b []byte) error + func (m QueryTraceTxRequest) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error + type QueryTraceTxResponse struct + Data []byte + func (*QueryTraceTxResponse) Descriptor() ([]byte, []int) + func (*QueryTraceTxResponse) ProtoMessage() + func (m *QueryTraceTxResponse) GetData() []byte + func (m *QueryTraceTxResponse) Marshal() (dAtA []byte, err error) + func (m *QueryTraceTxResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryTraceTxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryTraceTxResponse) Reset() + func (m *QueryTraceTxResponse) Size() (n int) + func (m *QueryTraceTxResponse) String() string + func (m *QueryTraceTxResponse) Unmarshal(dAtA []byte) error + func (m *QueryTraceTxResponse) XXX_DiscardUnknown() + func (m *QueryTraceTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryTraceTxResponse) XXX_Merge(src proto.Message) + func (m *QueryTraceTxResponse) XXX_Size() int + func (m *QueryTraceTxResponse) XXX_Unmarshal(b []byte) error + type QueryTxLogsRequest struct + Hash string + Pagination *query.PageRequest + func (*QueryTxLogsRequest) Descriptor() ([]byte, []int) + func (*QueryTxLogsRequest) ProtoMessage() + func (m *QueryTxLogsRequest) Marshal() (dAtA []byte, err error) + func (m *QueryTxLogsRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryTxLogsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryTxLogsRequest) Reset() + func (m *QueryTxLogsRequest) Size() (n int) + func (m *QueryTxLogsRequest) String() string + func (m *QueryTxLogsRequest) Unmarshal(dAtA []byte) error + func (m *QueryTxLogsRequest) XXX_DiscardUnknown() + func (m *QueryTxLogsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryTxLogsRequest) XXX_Merge(src proto.Message) + func (m *QueryTxLogsRequest) XXX_Size() int + func (m *QueryTxLogsRequest) XXX_Unmarshal(b []byte) error + type QueryTxLogsResponse struct + Logs []*Log + Pagination *query.PageResponse + func (*QueryTxLogsResponse) Descriptor() ([]byte, []int) + func (*QueryTxLogsResponse) ProtoMessage() + func (m *QueryTxLogsResponse) GetLogs() []*Log + func (m *QueryTxLogsResponse) GetPagination() *query.PageResponse + func (m *QueryTxLogsResponse) Marshal() (dAtA []byte, err error) + func (m *QueryTxLogsResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryTxLogsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryTxLogsResponse) Reset() + func (m *QueryTxLogsResponse) Size() (n int) + func (m *QueryTxLogsResponse) String() string + func (m *QueryTxLogsResponse) Unmarshal(dAtA []byte) error + func (m *QueryTxLogsResponse) XXX_DiscardUnknown() + func (m *QueryTxLogsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryTxLogsResponse) XXX_Merge(src proto.Message) + func (m *QueryTxLogsResponse) XXX_Size() int + func (m *QueryTxLogsResponse) XXX_Unmarshal(b []byte) error + type QueryValidatorAccountRequest struct + ConsAddress string + func (*QueryValidatorAccountRequest) Descriptor() ([]byte, []int) + func (*QueryValidatorAccountRequest) ProtoMessage() + func (m *QueryValidatorAccountRequest) Marshal() (dAtA []byte, err error) + func (m *QueryValidatorAccountRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryValidatorAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryValidatorAccountRequest) Reset() + func (m *QueryValidatorAccountRequest) Size() (n int) + func (m *QueryValidatorAccountRequest) String() string + func (m *QueryValidatorAccountRequest) Unmarshal(dAtA []byte) error + func (m *QueryValidatorAccountRequest) XXX_DiscardUnknown() + func (m *QueryValidatorAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryValidatorAccountRequest) XXX_Merge(src proto.Message) + func (m *QueryValidatorAccountRequest) XXX_Size() int + func (m *QueryValidatorAccountRequest) XXX_Unmarshal(b []byte) error + type QueryValidatorAccountResponse struct + AccountAddress string + AccountNumber uint64 + Sequence uint64 + func (*QueryValidatorAccountResponse) Descriptor() ([]byte, []int) + func (*QueryValidatorAccountResponse) ProtoMessage() + func (m *QueryValidatorAccountResponse) GetAccountAddress() string + func (m *QueryValidatorAccountResponse) GetAccountNumber() uint64 + func (m *QueryValidatorAccountResponse) GetSequence() uint64 + func (m *QueryValidatorAccountResponse) Marshal() (dAtA []byte, err error) + func (m *QueryValidatorAccountResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryValidatorAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryValidatorAccountResponse) Reset() + func (m *QueryValidatorAccountResponse) Size() (n int) + func (m *QueryValidatorAccountResponse) String() string + func (m *QueryValidatorAccountResponse) Unmarshal(dAtA []byte) error + func (m *QueryValidatorAccountResponse) XXX_DiscardUnknown() + func (m *QueryValidatorAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryValidatorAccountResponse) XXX_Merge(src proto.Message) + func (m *QueryValidatorAccountResponse) XXX_Size() int + func (m *QueryValidatorAccountResponse) XXX_Unmarshal(b []byte) error + type RevertError struct + func NewExecErrorWithReason(revertReason []byte) *RevertError + func (e *RevertError) ErrorCode() int + func (e *RevertError) ErrorData() interface{} + type StakingKeeper interface + GetHistoricalInfo func(ctx sdk.Context, height int64) (stakingtypes.HistoricalInfo, bool) + GetValidatorByConsAddr func(ctx sdk.Context, consAddr sdk.ConsAddress) (validator stakingtypes.Validator, found bool) + type State struct + Key string + Value string + func NewState(key, value common.Hash) State + func (*State) Descriptor() ([]byte, []int) + func (*State) ProtoMessage() + func (m *State) GetKey() string + func (m *State) GetValue() string + func (m *State) Marshal() (dAtA []byte, err error) + func (m *State) MarshalTo(dAtA []byte) (int, error) + func (m *State) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *State) Reset() + func (m *State) Size() (n int) + func (m *State) String() string + func (m *State) Unmarshal(dAtA []byte) error + func (m *State) XXX_DiscardUnknown() + func (m *State) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *State) XXX_Merge(src proto.Message) + func (m *State) XXX_Size() int + func (m *State) XXX_Unmarshal(b []byte) error + func (s State) Validate() error + type Storage []State + func (s Storage) Copy() Storage + func (s Storage) String() string + func (s Storage) Validate() error + type StructLogRes struct + Depth int + Error string + Gas uint64 + GasCost uint64 + Memory *[]string + Op string + Pc uint64 + Stack *[]string + Storage *map[string]string + func FormatLogs(logs []vm.StructLog) []StructLogRes + type TraceConfig struct + Debug bool + DisableMemory bool + DisableReturnData bool + DisableStack bool + DisableStorage bool + Limit int32 + Overrides *ChainConfig + Reexec uint64 + Timeout string + Tracer string + func (*TraceConfig) Descriptor() ([]byte, []int) + func (*TraceConfig) ProtoMessage() + func (m *TraceConfig) GetDebug() bool + func (m *TraceConfig) GetDisableMemory() bool + func (m *TraceConfig) GetDisableReturnData() bool + func (m *TraceConfig) GetDisableStack() bool + func (m *TraceConfig) GetDisableStorage() bool + func (m *TraceConfig) GetLimit() int32 + func (m *TraceConfig) GetOverrides() *ChainConfig + func (m *TraceConfig) GetReexec() uint64 + func (m *TraceConfig) GetTimeout() string + func (m *TraceConfig) GetTracer() string + func (m *TraceConfig) Marshal() (dAtA []byte, err error) + func (m *TraceConfig) MarshalTo(dAtA []byte) (int, error) + func (m *TraceConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *TraceConfig) Reset() + func (m *TraceConfig) Size() (n int) + func (m *TraceConfig) String() string + func (m *TraceConfig) Unmarshal(dAtA []byte) error + func (m *TraceConfig) XXX_DiscardUnknown() + func (m *TraceConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *TraceConfig) XXX_Merge(src proto.Message) + func (m *TraceConfig) XXX_Size() int + func (m *TraceConfig) XXX_Unmarshal(b []byte) error + type TransactionLogs struct + Hash string + Logs []*Log + func DecodeTransactionLogs(data []byte) (TransactionLogs, error) + func NewTransactionLogs(hash common.Hash, logs []*Log) TransactionLogs + func NewTransactionLogsFromEth(hash common.Hash, ethlogs []*ethtypes.Log) TransactionLogs + func (*TransactionLogs) Descriptor() ([]byte, []int) + func (*TransactionLogs) ProtoMessage() + func (m *TransactionLogs) GetHash() string + func (m *TransactionLogs) GetLogs() []*Log + func (m *TransactionLogs) Marshal() (dAtA []byte, err error) + func (m *TransactionLogs) MarshalTo(dAtA []byte) (int, error) + func (m *TransactionLogs) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *TransactionLogs) Reset() + func (m *TransactionLogs) Size() (n int) + func (m *TransactionLogs) String() string + func (m *TransactionLogs) Unmarshal(dAtA []byte) error + func (m *TransactionLogs) XXX_DiscardUnknown() + func (m *TransactionLogs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *TransactionLogs) XXX_Merge(src proto.Message) + func (m *TransactionLogs) XXX_Size() int + func (m *TransactionLogs) XXX_Unmarshal(b []byte) error + func (tx TransactionLogs) EthLogs() []*ethtypes.Log + func (tx TransactionLogs) Validate() error + type TxData interface + AsEthereumData func() ethtypes.TxData + Copy func() TxData + Cost func() *big.Int + Fee func() *big.Int + GetAccessList func() ethtypes.AccessList + GetChainID func() *big.Int + GetData func() []byte + GetGas func() uint64 + GetGasFeeCap func() *big.Int + GetGasPrice func() *big.Int + GetGasTipCap func() *big.Int + GetNonce func() uint64 + GetRawSignatureValues func() (v, r, s *big.Int) + GetTo func() *common.Address + GetValue func() *big.Int + SetSignatureValues func(chainID, v, r, s *big.Int) + TxType func() byte + Validate func() error + func NewTxDataFromTx(tx *ethtypes.Transaction) TxData + func UnpackTxData(any *codectypes.Any) (TxData, error) + type TxResult struct + Bloom []byte + ContractAddress string + GasUsed uint64 + Ret []byte + Reverted bool + TxLogs TransactionLogs + func (*TxResult) Descriptor() ([]byte, []int) + func (*TxResult) ProtoMessage() + func (m *TxResult) Marshal() (dAtA []byte, err error) + func (m *TxResult) MarshalTo(dAtA []byte) (int, error) + func (m *TxResult) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *TxResult) Reset() + func (m *TxResult) Size() (n int) + func (m *TxResult) String() string + func (m *TxResult) Unmarshal(dAtA []byte) error + func (m *TxResult) XXX_DiscardUnknown() + func (m *TxResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *TxResult) XXX_Merge(src proto.Message) + func (m *TxResult) XXX_Size() int + func (m *TxResult) XXX_Unmarshal(b []byte) error + type TxTraceResult struct + Error string + Result interface{} + type TxTraceTask struct + Index int + type UnimplementedMsgServer struct + func (*UnimplementedMsgServer) EthereumTx(ctx context.Context, req *MsgEthereumTx) (*MsgEthereumTxResponse, error) + type UnimplementedQueryServer struct + func (*UnimplementedQueryServer) Account(ctx context.Context, req *QueryAccountRequest) (*QueryAccountResponse, error) + func (*UnimplementedQueryServer) Balance(ctx context.Context, req *QueryBalanceRequest) (*QueryBalanceResponse, error) + func (*UnimplementedQueryServer) Code(ctx context.Context, req *QueryCodeRequest) (*QueryCodeResponse, error) + func (*UnimplementedQueryServer) CosmosAccount(ctx context.Context, req *QueryCosmosAccountRequest) (*QueryCosmosAccountResponse, error) + func (*UnimplementedQueryServer) EstimateGas(ctx context.Context, req *EthCallRequest) (*EstimateGasResponse, error) + func (*UnimplementedQueryServer) EthCall(ctx context.Context, req *EthCallRequest) (*MsgEthereumTxResponse, error) + func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) + func (*UnimplementedQueryServer) Storage(ctx context.Context, req *QueryStorageRequest) (*QueryStorageResponse, error) + func (*UnimplementedQueryServer) TraceTx(ctx context.Context, req *QueryTraceTxRequest) (*QueryTraceTxResponse, error) + func (*UnimplementedQueryServer) ValidatorAccount(ctx context.Context, req *QueryValidatorAccountRequest) (*QueryValidatorAccountResponse, error)