types

package
v0.0.38 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 15, 2024 License: Apache-2.0 Imports: 38 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeAddressAssociated = "address_associated"
	EventTypePointerRegistered = "pointer_registered"
	EventTypeSigner            = "signer"

	AttributeKeySeiAddress     = "sei_addr"
	AttributeKeyEvmAddress     = "evm_addr"
	AttributeKeyPointerType    = "pointer_type"
	AttributeKeyPointee        = "pointee"
	AttributeKeyPointerAddress = "pointer_address"
	AttributeKeyPointerVersion = "pointer_version"
)
View Source
const (
	ProposalTypeAddERCNativePointer = "AddERCNativePointer"
	ProposalTypeAddERCCW20Pointer   = "AddERCCW20Pointer"
	ProposalTypeAddERCCW721Pointer  = "AddERCCW721Pointer"
)
View Source
const (
	// module name
	ModuleName = "evm"

	RouterKey = ModuleName

	// StoreKey is string representation of the store key for auth
	StoreKey = "evm"

	MemStoreKey = "evm_mem"

	// QuerierRoute is the querier route for auth
	QuerierRoute = ModuleName
)
View Source
const TypeMsgEVMTransaction = "evm_transaction"
View Source
const TypeMsgRegisterPointer = "evm_register_pointer"
View Source
const TypeMsgSend = "evm_send"

Variables

View Source
var (
	ErrInvalidLengthConfig        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowConfig          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupConfig = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGov        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGov          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGov = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	EVMAddressToSeiAddressKeyPrefix            = []byte{0x01}
	SeiAddressToEVMAddressKeyPrefix            = []byte{0x02}
	StateKeyPrefix                             = []byte{0x03}
	TransientStateKeyPrefix                    = []byte{0x04} // deprecated
	AccountTransientStateKeyPrefix             = []byte{0x05} // deprecated
	TransientModuleStateKeyPrefix              = []byte{0x06} // deprecated
	CodeKeyPrefix                              = []byte{0x07}
	CodeHashKeyPrefix                          = []byte{0x08}
	CodeSizeKeyPrefix                          = []byte{0x09}
	NonceKeyPrefix                             = []byte{0x0a}
	ReceiptKeyPrefix                           = []byte{0x0b}
	WhitelistedCodeHashesForBankSendPrefix     = []byte{0x0c}
	BlockBloomPrefix                           = []byte{0x0d}
	TxHashesPrefix                             = []byte{0x0e}
	WhitelistedCodeHashesForDelegateCallPrefix = []byte{0x0f}
	//mem
	TxHashPrefix  = []byte{0x10}
	TxBloomPrefix = []byte{0x11}

	ReplaySeenAddrPrefix = []byte{0x12}
	ReplayedHeight       = []byte{0x13}
	ReplayInitialHeight  = []byte{0x14}

	PointerRegistryPrefix        = []byte{0x15}
	PointerCWCodePrefix          = []byte{0x16}
	PointerReverseRegistryPrefix = []byte{0x17}

	AnteSurplusPrefix = []byte{0x18}
)
View Source
var (
	PointerERC20NativePrefix = []byte{0x0}
	PointerERC20CW20Prefix   = []byte{0x1}
	PointerERC721CW721Prefix = []byte{0x2}
	PointerCW20ERC20Prefix   = []byte{0x3}
	PointerCW721ERC721Prefix = []byte{0x4}
)
View Source
var (
	KeyPriorityNormalizer = []byte("KeyPriorityNormalizer")
	KeyBaseFeePerGas      = []byte("KeyBaseFeePerGas")
	KeyMinFeePerGas       = []byte("KeyMinFeePerGas")
	// deprecated
	KeyWhitelistedCwCodeHashesForDelegateCall = []byte("KeyWhitelistedCwCodeHashesForDelegateCall")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthReceipt        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowReceipt          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupReceipt = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var CancunTime int64 = 0
View Source
var DefaultBaseFeePerGas = sdk.NewDec(0)

DefaultBaseFeePerGas determines how much usei per gas spent is burnt rather than go to validators (similar to base fee on Ethereum).

View Source
var DefaultMinFeePerGas = sdk.NewDec(1000000000)
View Source
var DefaultPriorityNormalizer = sdk.NewDec(1)
View Source
var DefaultWhitelistedCwCodeHashesForDelegateCall = generateDefaultWhitelistedCwCodeHashesForDelegateCall()
View Source
var PointerType_name = map[int32]string{
	0: "ERC20",
	1: "ERC721",
	2: "NATIVE",
	3: "CW20",
	4: "CW721",
}
View Source
var PointerType_value = map[string]int32{
	"ERC20":  0,
	"ERC721": 1,
	"NATIVE": 2,
	"CW20":   3,
	"CW721":  4,
}

Functions

func BlockBloomKey

func BlockBloomKey(height int64) []byte

func EVMAddressToSeiAddressKey

func EVMAddressToSeiAddressKey(evmAddress common.Address) []byte

func GetAmino

func GetAmino() *codec.LegacyAmino

func PackTxData

func PackTxData(txData ethtx.TxData) (*codectypes.Any, error)

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

func PointerCW20ERC20Key

func PointerCW20ERC20Key(erc20Addr common.Address) []byte

func PointerCW721ERC721Key

func PointerCW721ERC721Key(erc721Addr common.Address) []byte

func PointerERC20CW20Key

func PointerERC20CW20Key(cw20Address string) []byte

func PointerERC20NativeKey

func PointerERC20NativeKey(token string) []byte

func PointerERC721CW721Key

func PointerERC721CW721Key(cw721Address string) []byte

func PointerReverseRegistryKey

func PointerReverseRegistryKey(addr common.Address) []byte

func ReceiptKey

func ReceiptKey(txHash common.Hash) []byte

func RegisterInterfaces

func RegisterInterfaces(registry codectypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func SeiAddressToEVMAddressKey

func SeiAddressToEVMAddressKey(seiAddress sdk.AccAddress) []byte

func StateKey

func StateKey(evmAddress common.Address) []byte

func TxHashesKey

func TxHashesKey(height int64) []byte

func UnpackTxData

func UnpackTxData(any *codectypes.Any) (ethtx.TxData, error)

Types

type AddERCCW20PointerProposal

type AddERCCW20PointerProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty" yaml:"title"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" yaml:"description"`
	Pointee     string `protobuf:"bytes,3,opt,name=pointee,proto3" json:"pointee,omitempty" yaml:"pointee"`
	Pointer     string `protobuf:"bytes,4,opt,name=pointer,proto3" json:"pointer,omitempty" yaml:"pointer"`
	Version     uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty" yaml:"version"`
}

func (*AddERCCW20PointerProposal) Descriptor

func (*AddERCCW20PointerProposal) Descriptor() ([]byte, []int)

func (*AddERCCW20PointerProposal) GetDescription

func (p *AddERCCW20PointerProposal) GetDescription() string

func (*AddERCCW20PointerProposal) GetTitle

func (p *AddERCCW20PointerProposal) GetTitle() string

func (*AddERCCW20PointerProposal) Marshal

func (m *AddERCCW20PointerProposal) Marshal() (dAtA []byte, err error)

func (*AddERCCW20PointerProposal) MarshalTo

func (m *AddERCCW20PointerProposal) MarshalTo(dAtA []byte) (int, error)

func (*AddERCCW20PointerProposal) MarshalToSizedBuffer

func (m *AddERCCW20PointerProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddERCCW20PointerProposal) ProposalRoute

func (p *AddERCCW20PointerProposal) ProposalRoute() string

func (*AddERCCW20PointerProposal) ProposalType

func (p *AddERCCW20PointerProposal) ProposalType() string

func (*AddERCCW20PointerProposal) ProtoMessage

func (*AddERCCW20PointerProposal) ProtoMessage()

func (*AddERCCW20PointerProposal) Reset

func (m *AddERCCW20PointerProposal) Reset()

func (*AddERCCW20PointerProposal) Size

func (m *AddERCCW20PointerProposal) Size() (n int)

func (AddERCCW20PointerProposal) String

func (p AddERCCW20PointerProposal) String() string

func (*AddERCCW20PointerProposal) Unmarshal

func (m *AddERCCW20PointerProposal) Unmarshal(dAtA []byte) error

func (*AddERCCW20PointerProposal) ValidateBasic

func (p *AddERCCW20PointerProposal) ValidateBasic() error

func (*AddERCCW20PointerProposal) XXX_DiscardUnknown

func (m *AddERCCW20PointerProposal) XXX_DiscardUnknown()

func (*AddERCCW20PointerProposal) XXX_Marshal

func (m *AddERCCW20PointerProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddERCCW20PointerProposal) XXX_Merge

func (m *AddERCCW20PointerProposal) XXX_Merge(src proto.Message)

func (*AddERCCW20PointerProposal) XXX_Size

func (m *AddERCCW20PointerProposal) XXX_Size() int

func (*AddERCCW20PointerProposal) XXX_Unmarshal

func (m *AddERCCW20PointerProposal) XXX_Unmarshal(b []byte) error

type AddERCCW721PointerProposal

type AddERCCW721PointerProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty" yaml:"title"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" yaml:"description"`
	Pointee     string `protobuf:"bytes,3,opt,name=pointee,proto3" json:"pointee,omitempty" yaml:"pointee"`
	Pointer     string `protobuf:"bytes,4,opt,name=pointer,proto3" json:"pointer,omitempty" yaml:"pointer"`
	Version     uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty" yaml:"version"`
}

func (*AddERCCW721PointerProposal) Descriptor

func (*AddERCCW721PointerProposal) Descriptor() ([]byte, []int)

func (*AddERCCW721PointerProposal) GetDescription

func (p *AddERCCW721PointerProposal) GetDescription() string

func (*AddERCCW721PointerProposal) GetTitle

func (p *AddERCCW721PointerProposal) GetTitle() string

func (*AddERCCW721PointerProposal) Marshal

func (m *AddERCCW721PointerProposal) Marshal() (dAtA []byte, err error)

func (*AddERCCW721PointerProposal) MarshalTo

func (m *AddERCCW721PointerProposal) MarshalTo(dAtA []byte) (int, error)

func (*AddERCCW721PointerProposal) MarshalToSizedBuffer

func (m *AddERCCW721PointerProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddERCCW721PointerProposal) ProposalRoute

func (p *AddERCCW721PointerProposal) ProposalRoute() string

func (*AddERCCW721PointerProposal) ProposalType

func (p *AddERCCW721PointerProposal) ProposalType() string

func (*AddERCCW721PointerProposal) ProtoMessage

func (*AddERCCW721PointerProposal) ProtoMessage()

func (*AddERCCW721PointerProposal) Reset

func (m *AddERCCW721PointerProposal) Reset()

func (*AddERCCW721PointerProposal) Size

func (m *AddERCCW721PointerProposal) Size() (n int)

func (AddERCCW721PointerProposal) String

func (*AddERCCW721PointerProposal) Unmarshal

func (m *AddERCCW721PointerProposal) Unmarshal(dAtA []byte) error

func (*AddERCCW721PointerProposal) ValidateBasic

func (p *AddERCCW721PointerProposal) ValidateBasic() error

func (*AddERCCW721PointerProposal) XXX_DiscardUnknown

func (m *AddERCCW721PointerProposal) XXX_DiscardUnknown()

func (*AddERCCW721PointerProposal) XXX_Marshal

func (m *AddERCCW721PointerProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddERCCW721PointerProposal) XXX_Merge

func (m *AddERCCW721PointerProposal) XXX_Merge(src proto.Message)

func (*AddERCCW721PointerProposal) XXX_Size

func (m *AddERCCW721PointerProposal) XXX_Size() int

func (*AddERCCW721PointerProposal) XXX_Unmarshal

func (m *AddERCCW721PointerProposal) XXX_Unmarshal(b []byte) error

type AddERCNativePointerProposal

type AddERCNativePointerProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty" yaml:"title"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" yaml:"description"`
	Token       string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty" yaml:"token"`
	Pointer     string `protobuf:"bytes,4,opt,name=pointer,proto3" json:"pointer,omitempty" yaml:"pointer"`
	Version     uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty" yaml:"version"`
}

func (*AddERCNativePointerProposal) Descriptor

func (*AddERCNativePointerProposal) Descriptor() ([]byte, []int)

func (*AddERCNativePointerProposal) GetDescription

func (p *AddERCNativePointerProposal) GetDescription() string

func (*AddERCNativePointerProposal) GetTitle

func (p *AddERCNativePointerProposal) GetTitle() string

func (*AddERCNativePointerProposal) Marshal

func (m *AddERCNativePointerProposal) Marshal() (dAtA []byte, err error)

func (*AddERCNativePointerProposal) MarshalTo

func (m *AddERCNativePointerProposal) MarshalTo(dAtA []byte) (int, error)

func (*AddERCNativePointerProposal) MarshalToSizedBuffer

func (m *AddERCNativePointerProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddERCNativePointerProposal) ProposalRoute

func (p *AddERCNativePointerProposal) ProposalRoute() string

func (*AddERCNativePointerProposal) ProposalType

func (p *AddERCNativePointerProposal) ProposalType() string

func (*AddERCNativePointerProposal) ProtoMessage

func (*AddERCNativePointerProposal) ProtoMessage()

func (*AddERCNativePointerProposal) Reset

func (m *AddERCNativePointerProposal) Reset()

func (*AddERCNativePointerProposal) Size

func (m *AddERCNativePointerProposal) Size() (n int)

func (AddERCNativePointerProposal) String

func (*AddERCNativePointerProposal) Unmarshal

func (m *AddERCNativePointerProposal) Unmarshal(dAtA []byte) error

func (*AddERCNativePointerProposal) ValidateBasic

func (p *AddERCNativePointerProposal) ValidateBasic() error

func (*AddERCNativePointerProposal) XXX_DiscardUnknown

func (m *AddERCNativePointerProposal) XXX_DiscardUnknown()

func (*AddERCNativePointerProposal) XXX_Marshal

func (m *AddERCNativePointerProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddERCNativePointerProposal) XXX_Merge

func (m *AddERCNativePointerProposal) XXX_Merge(src proto.Message)

func (*AddERCNativePointerProposal) XXX_Size

func (m *AddERCNativePointerProposal) XXX_Size() int

func (*AddERCNativePointerProposal) XXX_Unmarshal

func (m *AddERCNativePointerProposal) XXX_Unmarshal(b []byte) error

type AddressAssociation

type AddressAssociation struct {
	SeiAddress string `protobuf:"bytes,1,opt,name=sei_address,json=seiAddress,proto3" json:"sei_address,omitempty"`
	EthAddress string `protobuf:"bytes,2,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
}

AddressAssociation represents an association between a Cosmos and an Ethereum address.

func (*AddressAssociation) Descriptor

func (*AddressAssociation) Descriptor() ([]byte, []int)

func (*AddressAssociation) GetEthAddress

func (m *AddressAssociation) GetEthAddress() string

func (*AddressAssociation) GetSeiAddress

func (m *AddressAssociation) GetSeiAddress() string

func (*AddressAssociation) Marshal

func (m *AddressAssociation) Marshal() (dAtA []byte, err error)

func (*AddressAssociation) MarshalTo

func (m *AddressAssociation) MarshalTo(dAtA []byte) (int, error)

func (*AddressAssociation) MarshalToSizedBuffer

func (m *AddressAssociation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddressAssociation) ProtoMessage

func (*AddressAssociation) ProtoMessage()

func (*AddressAssociation) Reset

func (m *AddressAssociation) Reset()

func (*AddressAssociation) Size

func (m *AddressAssociation) Size() (n int)

func (*AddressAssociation) String

func (m *AddressAssociation) String() string

func (*AddressAssociation) Unmarshal

func (m *AddressAssociation) Unmarshal(dAtA []byte) error

func (*AddressAssociation) XXX_DiscardUnknown

func (m *AddressAssociation) XXX_DiscardUnknown()

func (*AddressAssociation) XXX_Marshal

func (m *AddressAssociation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddressAssociation) XXX_Merge

func (m *AddressAssociation) XXX_Merge(src proto.Message)

func (*AddressAssociation) XXX_Size

func (m *AddressAssociation) XXX_Size() int

func (*AddressAssociation) XXX_Unmarshal

func (m *AddressAssociation) XXX_Unmarshal(b []byte) error

type ChainConfig

type ChainConfig struct {
	CancunTime int64 `protobuf:"varint,1,opt,name=cancun_time,json=cancunTime,proto3" json:"cancun_time,omitempty" yaml:"cancun_time"`
	PragueTime int64 `protobuf:"varint,2,opt,name=prague_time,json=pragueTime,proto3" json:"prague_time,omitempty" yaml:"prague_time"`
	VerkleTime int64 `protobuf:"varint,3,opt,name=verkle_time,json=verkleTime,proto3" json:"verkle_time,omitempty" yaml:"verkle_time"`
}

XXTime fields indicate upgrade timestamps. For example, a ShanghaiTime of 42198537129 means the chain upgraded to the Shanghai version at timestamp 42198537129. A value of 0 means the upgrade is included in the genesis of the EVM on Sei. -1 means upgrade not reached yet.

func DefaultChainConfig

func DefaultChainConfig() ChainConfig

func (*ChainConfig) Descriptor

func (*ChainConfig) Descriptor() ([]byte, []int)

func (ChainConfig) EthereumConfig

func (cc ChainConfig) EthereumConfig(chainID *big.Int) *params.ChainConfig

* XXBlock/Time fields indicate upgrade heights/timestamps. For example, a BerlinBlock of 123 means the chain upgraded to the Berlin version at height 123; a ShanghaiTime of 42198537129 means the chain upgraded to the Shanghai version at timestamp 42198537129. A value of 0 means the upgrade is included in the genesis of the EVM, which will be the case on Sei for all versions up to Cancun. Still, we want to keep these fields in the config for backward compatibility with the official EVM lib.

func (*ChainConfig) GetCancunTime

func (m *ChainConfig) GetCancunTime() int64

func (*ChainConfig) GetPragueTime

func (m *ChainConfig) GetPragueTime() int64

func (*ChainConfig) GetVerkleTime

func (m *ChainConfig) GetVerkleTime() int64

func (*ChainConfig) Marshal

func (m *ChainConfig) Marshal() (dAtA []byte, err error)

func (*ChainConfig) MarshalTo

func (m *ChainConfig) MarshalTo(dAtA []byte) (int, error)

func (*ChainConfig) MarshalToSizedBuffer

func (m *ChainConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChainConfig) ProtoMessage

func (*ChainConfig) ProtoMessage()

func (*ChainConfig) Reset

func (m *ChainConfig) Reset()

func (*ChainConfig) Size

func (m *ChainConfig) Size() (n int)

func (*ChainConfig) String

func (m *ChainConfig) String() string

func (*ChainConfig) Unmarshal

func (m *ChainConfig) Unmarshal(dAtA []byte) error

func (ChainConfig) Validate

func (cc ChainConfig) Validate() error

func (*ChainConfig) XXX_DiscardUnknown

func (m *ChainConfig) XXX_DiscardUnknown()

func (*ChainConfig) XXX_Marshal

func (m *ChainConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChainConfig) XXX_Merge

func (m *ChainConfig) XXX_Merge(src proto.Message)

func (*ChainConfig) XXX_Size

func (m *ChainConfig) XXX_Size() int

func (*ChainConfig) XXX_Unmarshal

func (m *ChainConfig) XXX_Unmarshal(b []byte) error

type Code

type Code struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Code    []byte `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
}

func (*Code) Descriptor

func (*Code) Descriptor() ([]byte, []int)

func (*Code) GetAddress

func (m *Code) GetAddress() string

func (*Code) GetCode

func (m *Code) GetCode() []byte

func (*Code) Marshal

func (m *Code) Marshal() (dAtA []byte, err error)

func (*Code) MarshalTo

func (m *Code) MarshalTo(dAtA []byte) (int, error)

func (*Code) MarshalToSizedBuffer

func (m *Code) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Code) ProtoMessage

func (*Code) ProtoMessage()

func (*Code) Reset

func (m *Code) Reset()

func (*Code) Size

func (m *Code) Size() (n int)

func (*Code) String

func (m *Code) String() string

func (*Code) Unmarshal

func (m *Code) Unmarshal(dAtA []byte) error

func (*Code) XXX_DiscardUnknown

func (m *Code) XXX_DiscardUnknown()

func (*Code) XXX_Marshal

func (m *Code) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Code) XXX_Merge

func (m *Code) XXX_Merge(src proto.Message)

func (*Code) XXX_Size

func (m *Code) XXX_Size() int

func (*Code) XXX_Unmarshal

func (m *Code) XXX_Unmarshal(b []byte) error

type ContractState

type ContractState struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Key     []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Value   []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
}

func (*ContractState) Descriptor

func (*ContractState) Descriptor() ([]byte, []int)

func (*ContractState) GetAddress

func (m *ContractState) GetAddress() string

func (*ContractState) GetKey

func (m *ContractState) GetKey() []byte

func (*ContractState) GetValue

func (m *ContractState) GetValue() []byte

func (*ContractState) Marshal

func (m *ContractState) Marshal() (dAtA []byte, err error)

func (*ContractState) MarshalTo

func (m *ContractState) MarshalTo(dAtA []byte) (int, error)

func (*ContractState) MarshalToSizedBuffer

func (m *ContractState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContractState) ProtoMessage

func (*ContractState) ProtoMessage()

func (*ContractState) Reset

func (m *ContractState) Reset()

func (*ContractState) Size

func (m *ContractState) Size() (n int)

func (*ContractState) String

func (m *ContractState) String() string

func (*ContractState) Unmarshal

func (m *ContractState) Unmarshal(dAtA []byte) error

func (*ContractState) XXX_DiscardUnknown

func (m *ContractState) XXX_DiscardUnknown()

func (*ContractState) XXX_Marshal

func (m *ContractState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContractState) XXX_Merge

func (m *ContractState) XXX_Merge(src proto.Message)

func (*ContractState) XXX_Size

func (m *ContractState) XXX_Size() int

func (*ContractState) XXX_Unmarshal

func (m *ContractState) XXX_Unmarshal(b []byte) error

type GenesisState

type GenesisState struct {
	Params              Params                `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	AddressAssociations []*AddressAssociation `protobuf:"bytes,2,rep,name=address_associations,json=addressAssociations,proto3" json:"address_associations,omitempty"`
	Codes               []*Code               `protobuf:"bytes,3,rep,name=codes,proto3" json:"codes,omitempty"`
	States              []*ContractState      `protobuf:"bytes,4,rep,name=states,proto3" json:"states,omitempty"`
	Nonces              []*Nonce              `protobuf:"bytes,5,rep,name=nonces,proto3" json:"nonces,omitempty"`
	Serialized          []*Serialized         `protobuf:"bytes,6,rep,name=serialized,proto3" json:"serialized,omitempty"`
}

GenesisState defines the evm module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

func (*GenesisState) Descriptor

func (*GenesisState) Descriptor() ([]byte, []int)

func (*GenesisState) GetAddressAssociations

func (m *GenesisState) GetAddressAssociations() []*AddressAssociation

func (*GenesisState) GetCodes

func (m *GenesisState) GetCodes() []*Code

func (*GenesisState) GetNonces

func (m *GenesisState) GetNonces() []*Nonce

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetSerialized

func (m *GenesisState) GetSerialized() []*Serialized

func (*GenesisState) GetStates

func (m *GenesisState) GetStates() []*ContractState

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (GenesisState) Validate

func (gs GenesisState) Validate() error

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

func (m *GenesisState) XXX_Unmarshal(b []byte) error

type Log

type Log struct {
	Address string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Topics  []string `protobuf:"bytes,2,rep,name=topics,proto3" json:"topics,omitempty"`
	Data    []byte   `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	Index   uint32   `protobuf:"varint,4,opt,name=index,proto3" json:"index,omitempty"`
}

func (*Log) Descriptor

func (*Log) Descriptor() ([]byte, []int)

func (*Log) GetAddress

func (m *Log) GetAddress() string

func (*Log) GetData

func (m *Log) GetData() []byte

func (*Log) GetIndex

func (m *Log) GetIndex() uint32

func (*Log) GetTopics

func (m *Log) GetTopics() []string

func (*Log) Marshal

func (m *Log) Marshal() (dAtA []byte, err error)

func (*Log) MarshalTo

func (m *Log) MarshalTo(dAtA []byte) (int, error)

func (*Log) MarshalToSizedBuffer

func (m *Log) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Log) ProtoMessage

func (*Log) ProtoMessage()

func (*Log) Reset

func (m *Log) Reset()

func (*Log) Size

func (m *Log) Size() (n int)

func (*Log) String

func (m *Log) String() string

func (*Log) Unmarshal

func (m *Log) Unmarshal(dAtA []byte) error

func (*Log) XXX_DiscardUnknown

func (m *Log) XXX_DiscardUnknown()

func (*Log) XXX_Marshal

func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Log) XXX_Merge

func (m *Log) XXX_Merge(src proto.Message)

func (*Log) XXX_Size

func (m *Log) XXX_Size() int

func (*Log) XXX_Unmarshal

func (m *Log) XXX_Unmarshal(b []byte) error

type MsgClient

type MsgClient interface {
	EVMTransaction(ctx context.Context, in *MsgEVMTransaction, opts ...grpc.CallOption) (*MsgEVMTransactionResponse, error)
	Send(ctx context.Context, in *MsgSend, opts ...grpc.CallOption) (*MsgSendResponse, error)
	RegisterPointer(ctx context.Context, in *MsgRegisterPointer, opts ...grpc.CallOption) (*MsgRegisterPointerResponse, error)
}

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgEVMTransaction

type MsgEVMTransaction struct {
	Data    *types.Any                                               `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Derived *github_com_sei_protocol_sei_chain_x_evm_derived.Derived `` /* 134-byte string literal not displayed */
}

func MustGetEVMTransactionMessage

func MustGetEVMTransactionMessage(tx sdk.Tx) *MsgEVMTransaction

func NewMsgEVMTransaction

func NewMsgEVMTransaction(txData proto.Message) (*MsgEVMTransaction, error)

func (*MsgEVMTransaction) AsTransaction

func (msg *MsgEVMTransaction) AsTransaction() (*ethtypes.Transaction, ethtx.TxData)

func (*MsgEVMTransaction) Descriptor

func (*MsgEVMTransaction) Descriptor() ([]byte, []int)

func (*MsgEVMTransaction) GetData

func (m *MsgEVMTransaction) GetData() *types.Any

func (*MsgEVMTransaction) GetSignBytes

func (msg *MsgEVMTransaction) GetSignBytes() []byte

func (*MsgEVMTransaction) GetSigners

func (msg *MsgEVMTransaction) GetSigners() []sdk.AccAddress

func (*MsgEVMTransaction) IsAssociateTx

func (msg *MsgEVMTransaction) IsAssociateTx() bool

func (*MsgEVMTransaction) Marshal

func (m *MsgEVMTransaction) Marshal() (dAtA []byte, err error)

func (*MsgEVMTransaction) MarshalTo

func (m *MsgEVMTransaction) MarshalTo(dAtA []byte) (int, error)

func (*MsgEVMTransaction) MarshalToSizedBuffer

func (m *MsgEVMTransaction) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgEVMTransaction) ProtoMessage

func (*MsgEVMTransaction) ProtoMessage()

func (*MsgEVMTransaction) Reset

func (m *MsgEVMTransaction) Reset()

func (*MsgEVMTransaction) Route

func (msg *MsgEVMTransaction) Route() string

func (*MsgEVMTransaction) Size

func (m *MsgEVMTransaction) Size() (n int)

func (*MsgEVMTransaction) String

func (m *MsgEVMTransaction) String() string

func (*MsgEVMTransaction) Type

func (msg *MsgEVMTransaction) Type() string

func (*MsgEVMTransaction) Unmarshal

func (m *MsgEVMTransaction) Unmarshal(dAtA []byte) error

func (*MsgEVMTransaction) UnpackInterfaces

func (msg *MsgEVMTransaction) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error

UnpackInterfaces implements UnpackInterfacesMesssage.UnpackInterfaces

func (*MsgEVMTransaction) ValidateBasic

func (msg *MsgEVMTransaction) ValidateBasic() error

func (*MsgEVMTransaction) XXX_DiscardUnknown

func (m *MsgEVMTransaction) XXX_DiscardUnknown()

func (*MsgEVMTransaction) XXX_Marshal

func (m *MsgEVMTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgEVMTransaction) XXX_Merge

func (m *MsgEVMTransaction) XXX_Merge(src proto.Message)

func (*MsgEVMTransaction) XXX_Size

func (m *MsgEVMTransaction) XXX_Size() int

func (*MsgEVMTransaction) XXX_Unmarshal

func (m *MsgEVMTransaction) XXX_Unmarshal(b []byte) error

type MsgEVMTransactionResponse

type MsgEVMTransactionResponse struct {
	GasUsed    uint64 `protobuf:"varint,1,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	VmError    string `protobuf:"bytes,2,opt,name=vm_error,json=vmError,proto3" json:"vm_error,omitempty"`
	ReturnData []byte `protobuf:"bytes,3,opt,name=return_data,json=returnData,proto3" json:"return_data,omitempty"`
	Hash       string `protobuf:"bytes,4,opt,name=hash,proto3" json:"hash,omitempty"`
}

func (*MsgEVMTransactionResponse) DecorateSdkResult

func (res *MsgEVMTransactionResponse) DecorateSdkResult(sdkRes *sdk.Result)

func (*MsgEVMTransactionResponse) Descriptor

func (*MsgEVMTransactionResponse) Descriptor() ([]byte, []int)

func (*MsgEVMTransactionResponse) GetGasUsed

func (m *MsgEVMTransactionResponse) GetGasUsed() uint64

func (*MsgEVMTransactionResponse) GetHash

func (m *MsgEVMTransactionResponse) GetHash() string

func (*MsgEVMTransactionResponse) GetReturnData

func (m *MsgEVMTransactionResponse) GetReturnData() []byte

func (*MsgEVMTransactionResponse) GetVmError

func (m *MsgEVMTransactionResponse) GetVmError() string

func (*MsgEVMTransactionResponse) Marshal

func (m *MsgEVMTransactionResponse) Marshal() (dAtA []byte, err error)

func (*MsgEVMTransactionResponse) MarshalTo

func (m *MsgEVMTransactionResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgEVMTransactionResponse) MarshalToSizedBuffer

func (m *MsgEVMTransactionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgEVMTransactionResponse) ProtoMessage

func (*MsgEVMTransactionResponse) ProtoMessage()

func (*MsgEVMTransactionResponse) Reset

func (m *MsgEVMTransactionResponse) Reset()

func (*MsgEVMTransactionResponse) Size

func (m *MsgEVMTransactionResponse) Size() (n int)

func (*MsgEVMTransactionResponse) String

func (m *MsgEVMTransactionResponse) String() string

func (*MsgEVMTransactionResponse) Unmarshal

func (m *MsgEVMTransactionResponse) Unmarshal(dAtA []byte) error

func (*MsgEVMTransactionResponse) XXX_DiscardUnknown

func (m *MsgEVMTransactionResponse) XXX_DiscardUnknown()

func (*MsgEVMTransactionResponse) XXX_Marshal

func (m *MsgEVMTransactionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgEVMTransactionResponse) XXX_Merge

func (m *MsgEVMTransactionResponse) XXX_Merge(src proto.Message)

func (*MsgEVMTransactionResponse) XXX_Size

func (m *MsgEVMTransactionResponse) XXX_Size() int

func (*MsgEVMTransactionResponse) XXX_Unmarshal

func (m *MsgEVMTransactionResponse) XXX_Unmarshal(b []byte) error

type MsgInternalEVMCall

type MsgInternalEVMCall struct {
	Sender string                                  `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Value  *github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=value,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"value,omitempty"`
	To     string                                  `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Data   []byte                                  `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
}

func NewMessageInternalEVMCall

func NewMessageInternalEVMCall(from sdk.AccAddress, to string, value *sdk.Int, data []byte) *MsgInternalEVMCall

func (*MsgInternalEVMCall) Descriptor

func (*MsgInternalEVMCall) Descriptor() ([]byte, []int)

func (*MsgInternalEVMCall) GetData

func (m *MsgInternalEVMCall) GetData() []byte

func (*MsgInternalEVMCall) GetSender

func (m *MsgInternalEVMCall) GetSender() string

func (*MsgInternalEVMCall) GetSigners

func (msg *MsgInternalEVMCall) GetSigners() []sdk.AccAddress

func (*MsgInternalEVMCall) GetTo

func (m *MsgInternalEVMCall) GetTo() string

func (*MsgInternalEVMCall) Marshal

func (m *MsgInternalEVMCall) Marshal() (dAtA []byte, err error)

func (*MsgInternalEVMCall) MarshalTo

func (m *MsgInternalEVMCall) MarshalTo(dAtA []byte) (int, error)

func (*MsgInternalEVMCall) MarshalToSizedBuffer

func (m *MsgInternalEVMCall) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgInternalEVMCall) ProtoMessage

func (*MsgInternalEVMCall) ProtoMessage()

func (*MsgInternalEVMCall) Reset

func (m *MsgInternalEVMCall) Reset()

func (*MsgInternalEVMCall) Size

func (m *MsgInternalEVMCall) Size() (n int)

func (*MsgInternalEVMCall) String

func (m *MsgInternalEVMCall) String() string

func (*MsgInternalEVMCall) Unmarshal

func (m *MsgInternalEVMCall) Unmarshal(dAtA []byte) error

func (*MsgInternalEVMCall) ValidateBasic

func (msg *MsgInternalEVMCall) ValidateBasic() error

func (*MsgInternalEVMCall) XXX_DiscardUnknown

func (m *MsgInternalEVMCall) XXX_DiscardUnknown()

func (*MsgInternalEVMCall) XXX_Marshal

func (m *MsgInternalEVMCall) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgInternalEVMCall) XXX_Merge

func (m *MsgInternalEVMCall) XXX_Merge(src proto.Message)

func (*MsgInternalEVMCall) XXX_Size

func (m *MsgInternalEVMCall) XXX_Size() int

func (*MsgInternalEVMCall) XXX_Unmarshal

func (m *MsgInternalEVMCall) XXX_Unmarshal(b []byte) error

type MsgInternalEVMCallResponse

type MsgInternalEVMCallResponse struct {
}

func (*MsgInternalEVMCallResponse) Descriptor

func (*MsgInternalEVMCallResponse) Descriptor() ([]byte, []int)

func (*MsgInternalEVMCallResponse) Marshal

func (m *MsgInternalEVMCallResponse) Marshal() (dAtA []byte, err error)

func (*MsgInternalEVMCallResponse) MarshalTo

func (m *MsgInternalEVMCallResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgInternalEVMCallResponse) MarshalToSizedBuffer

func (m *MsgInternalEVMCallResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgInternalEVMCallResponse) ProtoMessage

func (*MsgInternalEVMCallResponse) ProtoMessage()

func (*MsgInternalEVMCallResponse) Reset

func (m *MsgInternalEVMCallResponse) Reset()

func (*MsgInternalEVMCallResponse) Size

func (m *MsgInternalEVMCallResponse) Size() (n int)

func (*MsgInternalEVMCallResponse) String

func (m *MsgInternalEVMCallResponse) String() string

func (*MsgInternalEVMCallResponse) Unmarshal

func (m *MsgInternalEVMCallResponse) Unmarshal(dAtA []byte) error

func (*MsgInternalEVMCallResponse) XXX_DiscardUnknown

func (m *MsgInternalEVMCallResponse) XXX_DiscardUnknown()

func (*MsgInternalEVMCallResponse) XXX_Marshal

func (m *MsgInternalEVMCallResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgInternalEVMCallResponse) XXX_Merge

func (m *MsgInternalEVMCallResponse) XXX_Merge(src proto.Message)

func (*MsgInternalEVMCallResponse) XXX_Size

func (m *MsgInternalEVMCallResponse) XXX_Size() int

func (*MsgInternalEVMCallResponse) XXX_Unmarshal

func (m *MsgInternalEVMCallResponse) XXX_Unmarshal(b []byte) error

type MsgInternalEVMDelegateCall

type MsgInternalEVMDelegateCall struct {
	Sender       string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	CodeHash     []byte `protobuf:"bytes,2,opt,name=codeHash,proto3" json:"codeHash,omitempty"`
	To           string `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Data         []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	FromContract string `protobuf:"bytes,5,opt,name=fromContract,proto3" json:"fromContract,omitempty"`
}

func NewMessageInternalEVMDelegateCall

func NewMessageInternalEVMDelegateCall(from sdk.AccAddress, to string, codeHash []byte, data []byte, fromContract string) *MsgInternalEVMDelegateCall

func (*MsgInternalEVMDelegateCall) Descriptor

func (*MsgInternalEVMDelegateCall) Descriptor() ([]byte, []int)

func (*MsgInternalEVMDelegateCall) GetCodeHash

func (m *MsgInternalEVMDelegateCall) GetCodeHash() []byte

func (*MsgInternalEVMDelegateCall) GetData

func (m *MsgInternalEVMDelegateCall) GetData() []byte

func (*MsgInternalEVMDelegateCall) GetFromContract

func (m *MsgInternalEVMDelegateCall) GetFromContract() string

func (*MsgInternalEVMDelegateCall) GetSender

func (m *MsgInternalEVMDelegateCall) GetSender() string

func (*MsgInternalEVMDelegateCall) GetSigners

func (msg *MsgInternalEVMDelegateCall) GetSigners() []sdk.AccAddress

func (*MsgInternalEVMDelegateCall) GetTo

func (*MsgInternalEVMDelegateCall) Marshal

func (m *MsgInternalEVMDelegateCall) Marshal() (dAtA []byte, err error)

func (*MsgInternalEVMDelegateCall) MarshalTo

func (m *MsgInternalEVMDelegateCall) MarshalTo(dAtA []byte) (int, error)

func (*MsgInternalEVMDelegateCall) MarshalToSizedBuffer

func (m *MsgInternalEVMDelegateCall) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgInternalEVMDelegateCall) ProtoMessage

func (*MsgInternalEVMDelegateCall) ProtoMessage()

func (*MsgInternalEVMDelegateCall) Reset

func (m *MsgInternalEVMDelegateCall) Reset()

func (*MsgInternalEVMDelegateCall) Size

func (m *MsgInternalEVMDelegateCall) Size() (n int)

func (*MsgInternalEVMDelegateCall) String

func (m *MsgInternalEVMDelegateCall) String() string

func (*MsgInternalEVMDelegateCall) Unmarshal

func (m *MsgInternalEVMDelegateCall) Unmarshal(dAtA []byte) error

func (*MsgInternalEVMDelegateCall) ValidateBasic

func (msg *MsgInternalEVMDelegateCall) ValidateBasic() error

func (*MsgInternalEVMDelegateCall) XXX_DiscardUnknown

func (m *MsgInternalEVMDelegateCall) XXX_DiscardUnknown()

func (*MsgInternalEVMDelegateCall) XXX_Marshal

func (m *MsgInternalEVMDelegateCall) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgInternalEVMDelegateCall) XXX_Merge

func (m *MsgInternalEVMDelegateCall) XXX_Merge(src proto.Message)

func (*MsgInternalEVMDelegateCall) XXX_Size

func (m *MsgInternalEVMDelegateCall) XXX_Size() int

func (*MsgInternalEVMDelegateCall) XXX_Unmarshal

func (m *MsgInternalEVMDelegateCall) XXX_Unmarshal(b []byte) error

type MsgInternalEVMDelegateCallResponse

type MsgInternalEVMDelegateCallResponse struct {
}

func (*MsgInternalEVMDelegateCallResponse) Descriptor

func (*MsgInternalEVMDelegateCallResponse) Descriptor() ([]byte, []int)

func (*MsgInternalEVMDelegateCallResponse) Marshal

func (m *MsgInternalEVMDelegateCallResponse) Marshal() (dAtA []byte, err error)

func (*MsgInternalEVMDelegateCallResponse) MarshalTo

func (m *MsgInternalEVMDelegateCallResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgInternalEVMDelegateCallResponse) MarshalToSizedBuffer

func (m *MsgInternalEVMDelegateCallResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgInternalEVMDelegateCallResponse) ProtoMessage

func (*MsgInternalEVMDelegateCallResponse) ProtoMessage()

func (*MsgInternalEVMDelegateCallResponse) Reset

func (*MsgInternalEVMDelegateCallResponse) Size

func (*MsgInternalEVMDelegateCallResponse) String

func (*MsgInternalEVMDelegateCallResponse) Unmarshal

func (m *MsgInternalEVMDelegateCallResponse) Unmarshal(dAtA []byte) error

func (*MsgInternalEVMDelegateCallResponse) XXX_DiscardUnknown

func (m *MsgInternalEVMDelegateCallResponse) XXX_DiscardUnknown()

func (*MsgInternalEVMDelegateCallResponse) XXX_Marshal

func (m *MsgInternalEVMDelegateCallResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgInternalEVMDelegateCallResponse) XXX_Merge

func (*MsgInternalEVMDelegateCallResponse) XXX_Size

func (*MsgInternalEVMDelegateCallResponse) XXX_Unmarshal

func (m *MsgInternalEVMDelegateCallResponse) XXX_Unmarshal(b []byte) error

type MsgRegisterPointer

type MsgRegisterPointer struct {
	Sender      string      `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	PointerType PointerType `` /* 137-byte string literal not displayed */
	ErcAddress  string      `protobuf:"bytes,3,opt,name=erc_address,json=ercAddress,proto3" json:"erc_address,omitempty"`
}

func NewMsgRegisterERC20Pointer

func NewMsgRegisterERC20Pointer(sender sdk.AccAddress, ercAddress common.Address) *MsgRegisterPointer

func NewMsgRegisterERC721Pointer

func NewMsgRegisterERC721Pointer(sender sdk.AccAddress, ercAddress common.Address) *MsgRegisterPointer

func (*MsgRegisterPointer) Descriptor

func (*MsgRegisterPointer) Descriptor() ([]byte, []int)

func (*MsgRegisterPointer) GetErcAddress

func (m *MsgRegisterPointer) GetErcAddress() string

func (*MsgRegisterPointer) GetPointerType

func (m *MsgRegisterPointer) GetPointerType() PointerType

func (*MsgRegisterPointer) GetSender

func (m *MsgRegisterPointer) GetSender() string

func (*MsgRegisterPointer) GetSignBytes

func (msg *MsgRegisterPointer) GetSignBytes() []byte

func (*MsgRegisterPointer) GetSigners

func (msg *MsgRegisterPointer) GetSigners() []sdk.AccAddress

func (*MsgRegisterPointer) Marshal

func (m *MsgRegisterPointer) Marshal() (dAtA []byte, err error)

func (*MsgRegisterPointer) MarshalTo

func (m *MsgRegisterPointer) MarshalTo(dAtA []byte) (int, error)

func (*MsgRegisterPointer) MarshalToSizedBuffer

func (m *MsgRegisterPointer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgRegisterPointer) ProtoMessage

func (*MsgRegisterPointer) ProtoMessage()

func (*MsgRegisterPointer) Reset

func (m *MsgRegisterPointer) Reset()

func (*MsgRegisterPointer) Route

func (msg *MsgRegisterPointer) Route() string

func (*MsgRegisterPointer) Size

func (m *MsgRegisterPointer) Size() (n int)

func (*MsgRegisterPointer) String

func (m *MsgRegisterPointer) String() string

func (*MsgRegisterPointer) Type

func (msg *MsgRegisterPointer) Type() string

func (*MsgRegisterPointer) Unmarshal

func (m *MsgRegisterPointer) Unmarshal(dAtA []byte) error

func (*MsgRegisterPointer) ValidateBasic

func (msg *MsgRegisterPointer) ValidateBasic() error

func (*MsgRegisterPointer) XXX_DiscardUnknown

func (m *MsgRegisterPointer) XXX_DiscardUnknown()

func (*MsgRegisterPointer) XXX_Marshal

func (m *MsgRegisterPointer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgRegisterPointer) XXX_Merge

func (m *MsgRegisterPointer) XXX_Merge(src proto.Message)

func (*MsgRegisterPointer) XXX_Size

func (m *MsgRegisterPointer) XXX_Size() int

func (*MsgRegisterPointer) XXX_Unmarshal

func (m *MsgRegisterPointer) XXX_Unmarshal(b []byte) error

type MsgRegisterPointerResponse

type MsgRegisterPointerResponse struct {
	PointerAddress string `protobuf:"bytes,1,opt,name=pointer_address,json=pointerAddress,proto3" json:"pointer_address,omitempty"`
}

func (*MsgRegisterPointerResponse) Descriptor

func (*MsgRegisterPointerResponse) Descriptor() ([]byte, []int)

func (*MsgRegisterPointerResponse) GetPointerAddress

func (m *MsgRegisterPointerResponse) GetPointerAddress() string

func (*MsgRegisterPointerResponse) Marshal

func (m *MsgRegisterPointerResponse) Marshal() (dAtA []byte, err error)

func (*MsgRegisterPointerResponse) MarshalTo

func (m *MsgRegisterPointerResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgRegisterPointerResponse) MarshalToSizedBuffer

func (m *MsgRegisterPointerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgRegisterPointerResponse) ProtoMessage

func (*MsgRegisterPointerResponse) ProtoMessage()

func (*MsgRegisterPointerResponse) Reset

func (m *MsgRegisterPointerResponse) Reset()

func (*MsgRegisterPointerResponse) Size

func (m *MsgRegisterPointerResponse) Size() (n int)

func (*MsgRegisterPointerResponse) String

func (m *MsgRegisterPointerResponse) String() string

func (*MsgRegisterPointerResponse) Unmarshal

func (m *MsgRegisterPointerResponse) Unmarshal(dAtA []byte) error

func (*MsgRegisterPointerResponse) XXX_DiscardUnknown

func (m *MsgRegisterPointerResponse) XXX_DiscardUnknown()

func (*MsgRegisterPointerResponse) XXX_Marshal

func (m *MsgRegisterPointerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgRegisterPointerResponse) XXX_Merge

func (m *MsgRegisterPointerResponse) XXX_Merge(src proto.Message)

func (*MsgRegisterPointerResponse) XXX_Size

func (m *MsgRegisterPointerResponse) XXX_Size() int

func (*MsgRegisterPointerResponse) XXX_Unmarshal

func (m *MsgRegisterPointerResponse) XXX_Unmarshal(b []byte) error

type MsgSend

type MsgSend struct {
	FromAddress string                                   `protobuf:"bytes,1,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"`
	ToAddress   string                                   `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"`
	Amount      github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"`
}

func NewMsgSend

func NewMsgSend(fromAddr sdk.AccAddress, toAddress common.Address, amount sdk.Coins) *MsgSend

func (*MsgSend) Descriptor

func (*MsgSend) Descriptor() ([]byte, []int)

func (*MsgSend) GetAmount

func (*MsgSend) GetFromAddress

func (m *MsgSend) GetFromAddress() string

func (*MsgSend) GetSignBytes

func (msg *MsgSend) GetSignBytes() []byte

func (*MsgSend) GetSigners

func (msg *MsgSend) GetSigners() []sdk.AccAddress

func (*MsgSend) GetToAddress

func (m *MsgSend) GetToAddress() string

func (*MsgSend) Marshal

func (m *MsgSend) Marshal() (dAtA []byte, err error)

func (*MsgSend) MarshalTo

func (m *MsgSend) MarshalTo(dAtA []byte) (int, error)

func (*MsgSend) MarshalToSizedBuffer

func (m *MsgSend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgSend) ProtoMessage

func (*MsgSend) ProtoMessage()

func (*MsgSend) Reset

func (m *MsgSend) Reset()

func (*MsgSend) Route

func (msg *MsgSend) Route() string

func (*MsgSend) Size

func (m *MsgSend) Size() (n int)

func (*MsgSend) String

func (m *MsgSend) String() string

func (*MsgSend) Type

func (msg *MsgSend) Type() string

func (*MsgSend) Unmarshal

func (m *MsgSend) Unmarshal(dAtA []byte) error

func (*MsgSend) ValidateBasic

func (msg *MsgSend) ValidateBasic() error

func (*MsgSend) XXX_DiscardUnknown

func (m *MsgSend) XXX_DiscardUnknown()

func (*MsgSend) XXX_Marshal

func (m *MsgSend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgSend) XXX_Merge

func (m *MsgSend) XXX_Merge(src proto.Message)

func (*MsgSend) XXX_Size

func (m *MsgSend) XXX_Size() int

func (*MsgSend) XXX_Unmarshal

func (m *MsgSend) XXX_Unmarshal(b []byte) error

type MsgSendResponse

type MsgSendResponse struct {
}

func (*MsgSendResponse) Descriptor

func (*MsgSendResponse) Descriptor() ([]byte, []int)

func (*MsgSendResponse) Marshal

func (m *MsgSendResponse) Marshal() (dAtA []byte, err error)

func (*MsgSendResponse) MarshalTo

func (m *MsgSendResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgSendResponse) MarshalToSizedBuffer

func (m *MsgSendResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgSendResponse) ProtoMessage

func (*MsgSendResponse) ProtoMessage()

func (*MsgSendResponse) Reset

func (m *MsgSendResponse) Reset()

func (*MsgSendResponse) Size

func (m *MsgSendResponse) Size() (n int)

func (*MsgSendResponse) String

func (m *MsgSendResponse) String() string

func (*MsgSendResponse) Unmarshal

func (m *MsgSendResponse) Unmarshal(dAtA []byte) error

func (*MsgSendResponse) XXX_DiscardUnknown

func (m *MsgSendResponse) XXX_DiscardUnknown()

func (*MsgSendResponse) XXX_Marshal

func (m *MsgSendResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgSendResponse) XXX_Merge

func (m *MsgSendResponse) XXX_Merge(src proto.Message)

func (*MsgSendResponse) XXX_Size

func (m *MsgSendResponse) XXX_Size() int

func (*MsgSendResponse) XXX_Unmarshal

func (m *MsgSendResponse) XXX_Unmarshal(b []byte) error

type MsgServer

MsgServer is the server API for Msg service.

type Nonce

type Nonce struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Nonce   uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*Nonce) Descriptor

func (*Nonce) Descriptor() ([]byte, []int)

func (*Nonce) GetAddress

func (m *Nonce) GetAddress() string

func (*Nonce) GetNonce

func (m *Nonce) GetNonce() uint64

func (*Nonce) Marshal

func (m *Nonce) Marshal() (dAtA []byte, err error)

func (*Nonce) MarshalTo

func (m *Nonce) MarshalTo(dAtA []byte) (int, error)

func (*Nonce) MarshalToSizedBuffer

func (m *Nonce) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Nonce) ProtoMessage

func (*Nonce) ProtoMessage()

func (*Nonce) Reset

func (m *Nonce) Reset()

func (*Nonce) Size

func (m *Nonce) Size() (n int)

func (*Nonce) String

func (m *Nonce) String() string

func (*Nonce) Unmarshal

func (m *Nonce) Unmarshal(dAtA []byte) error

func (*Nonce) XXX_DiscardUnknown

func (m *Nonce) XXX_DiscardUnknown()

func (*Nonce) XXX_Marshal

func (m *Nonce) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Nonce) XXX_Merge

func (m *Nonce) XXX_Merge(src proto.Message)

func (*Nonce) XXX_Size

func (m *Nonce) XXX_Size() int

func (*Nonce) XXX_Unmarshal

func (m *Nonce) XXX_Unmarshal(b []byte) error

type Params

type Params struct {
	// string base_denom = 1 [
	//   (gogoproto.moretags)   = "yaml:\"base_denom\"",
	//   (gogoproto.jsontag) = "base_denom"
	// ];
	PriorityNormalizer github_com_cosmos_cosmos_sdk_types.Dec `` /* 182-byte string literal not displayed */
	BaseFeePerGas      github_com_cosmos_cosmos_sdk_types.Dec `` /* 168-byte string literal not displayed */
	MinimumFeePerGas   github_com_cosmos_cosmos_sdk_types.Dec `` /* 180-byte string literal not displayed */
	// ChainConfig chain_config = 5 [(gogoproto.moretags) = "yaml:\"chain_config\"", (gogoproto.nullable) = false];
	//   string chain_id = 6 [
	//   (gogoproto.moretags)   = "yaml:\"chain_id\"",
	//   (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
	//   (gogoproto.nullable)   = false,
	//   (gogoproto.jsontag) = "chain_id"
	// ];
	// repeated string whitelisted_codehashes_bank_send = 7 [
	//   (gogoproto.moretags)   = "yaml:\"whitelisted_codehashes_bank_send\"",
	//   (gogoproto.jsontag) = "whitelisted_codehashes_bank_send"
	// ];
	WhitelistedCwCodeHashesForDelegateCall [][]byte `` /* 227-byte string literal not displayed */
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

func (*Params) Descriptor

func (*Params) Descriptor() ([]byte, []int)

func (*Params) GetWhitelistedCwCodeHashesForDelegateCall

func (m *Params) GetWhitelistedCwCodeHashesForDelegateCall() [][]byte

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (Params) String

func (p Params) String() string

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (Params) Validate

func (p Params) Validate() error

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

func (m *Params) XXX_Unmarshal(b []byte) error

type PointerType

type PointerType int32
const (
	PointerType_ERC20  PointerType = 0
	PointerType_ERC721 PointerType = 1
	PointerType_NATIVE PointerType = 2
	PointerType_CW20   PointerType = 3
	PointerType_CW721  PointerType = 4
)

func (PointerType) EnumDescriptor

func (PointerType) EnumDescriptor() ([]byte, []int)

func (PointerType) String

func (x PointerType) String() string

type QueryClient

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryEVMAddressBySeiAddressRequest

type QueryEVMAddressBySeiAddressRequest struct {
	SeiAddress string `protobuf:"bytes,1,opt,name=sei_address,json=seiAddress,proto3" json:"sei_address,omitempty"`
}

func (*QueryEVMAddressBySeiAddressRequest) Descriptor

func (*QueryEVMAddressBySeiAddressRequest) Descriptor() ([]byte, []int)

func (*QueryEVMAddressBySeiAddressRequest) GetSeiAddress

func (m *QueryEVMAddressBySeiAddressRequest) GetSeiAddress() string

func (*QueryEVMAddressBySeiAddressRequest) Marshal

func (m *QueryEVMAddressBySeiAddressRequest) Marshal() (dAtA []byte, err error)

func (*QueryEVMAddressBySeiAddressRequest) MarshalTo

func (m *QueryEVMAddressBySeiAddressRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryEVMAddressBySeiAddressRequest) MarshalToSizedBuffer

func (m *QueryEVMAddressBySeiAddressRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryEVMAddressBySeiAddressRequest) ProtoMessage

func (*QueryEVMAddressBySeiAddressRequest) ProtoMessage()

func (*QueryEVMAddressBySeiAddressRequest) Reset

func (*QueryEVMAddressBySeiAddressRequest) Size

func (*QueryEVMAddressBySeiAddressRequest) String

func (*QueryEVMAddressBySeiAddressRequest) Unmarshal

func (m *QueryEVMAddressBySeiAddressRequest) Unmarshal(dAtA []byte) error

func (*QueryEVMAddressBySeiAddressRequest) XXX_DiscardUnknown

func (m *QueryEVMAddressBySeiAddressRequest) XXX_DiscardUnknown()

func (*QueryEVMAddressBySeiAddressRequest) XXX_Marshal

func (m *QueryEVMAddressBySeiAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryEVMAddressBySeiAddressRequest) XXX_Merge

func (*QueryEVMAddressBySeiAddressRequest) XXX_Size

func (*QueryEVMAddressBySeiAddressRequest) XXX_Unmarshal

func (m *QueryEVMAddressBySeiAddressRequest) XXX_Unmarshal(b []byte) error

type QueryEVMAddressBySeiAddressResponse

type QueryEVMAddressBySeiAddressResponse struct {
	EvmAddress string `protobuf:"bytes,1,opt,name=evm_address,json=evmAddress,proto3" json:"evm_address,omitempty"`
	Associated bool   `protobuf:"varint,2,opt,name=associated,proto3" json:"associated,omitempty"`
}

func (*QueryEVMAddressBySeiAddressResponse) Descriptor

func (*QueryEVMAddressBySeiAddressResponse) Descriptor() ([]byte, []int)

func (*QueryEVMAddressBySeiAddressResponse) GetAssociated

func (m *QueryEVMAddressBySeiAddressResponse) GetAssociated() bool

func (*QueryEVMAddressBySeiAddressResponse) GetEvmAddress

func (m *QueryEVMAddressBySeiAddressResponse) GetEvmAddress() string

func (*QueryEVMAddressBySeiAddressResponse) Marshal

func (m *QueryEVMAddressBySeiAddressResponse) Marshal() (dAtA []byte, err error)

func (*QueryEVMAddressBySeiAddressResponse) MarshalTo

func (m *QueryEVMAddressBySeiAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryEVMAddressBySeiAddressResponse) MarshalToSizedBuffer

func (m *QueryEVMAddressBySeiAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryEVMAddressBySeiAddressResponse) ProtoMessage

func (*QueryEVMAddressBySeiAddressResponse) ProtoMessage()

func (*QueryEVMAddressBySeiAddressResponse) Reset

func (*QueryEVMAddressBySeiAddressResponse) Size

func (*QueryEVMAddressBySeiAddressResponse) String

func (*QueryEVMAddressBySeiAddressResponse) Unmarshal

func (m *QueryEVMAddressBySeiAddressResponse) Unmarshal(dAtA []byte) error

func (*QueryEVMAddressBySeiAddressResponse) XXX_DiscardUnknown

func (m *QueryEVMAddressBySeiAddressResponse) XXX_DiscardUnknown()

func (*QueryEVMAddressBySeiAddressResponse) XXX_Marshal

func (m *QueryEVMAddressBySeiAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryEVMAddressBySeiAddressResponse) XXX_Merge

func (*QueryEVMAddressBySeiAddressResponse) XXX_Size

func (*QueryEVMAddressBySeiAddressResponse) XXX_Unmarshal

func (m *QueryEVMAddressBySeiAddressResponse) XXX_Unmarshal(b []byte) error

type QueryPointerRequest

type QueryPointerRequest struct {
	PointerType PointerType `` /* 137-byte string literal not displayed */
	Pointee     string      `protobuf:"bytes,2,opt,name=pointee,proto3" json:"pointee,omitempty"`
}

func (*QueryPointerRequest) Descriptor

func (*QueryPointerRequest) Descriptor() ([]byte, []int)

func (*QueryPointerRequest) GetPointee

func (m *QueryPointerRequest) GetPointee() string

func (*QueryPointerRequest) GetPointerType

func (m *QueryPointerRequest) GetPointerType() PointerType

func (*QueryPointerRequest) Marshal

func (m *QueryPointerRequest) Marshal() (dAtA []byte, err error)

func (*QueryPointerRequest) MarshalTo

func (m *QueryPointerRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryPointerRequest) MarshalToSizedBuffer

func (m *QueryPointerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPointerRequest) ProtoMessage

func (*QueryPointerRequest) ProtoMessage()

func (*QueryPointerRequest) Reset

func (m *QueryPointerRequest) Reset()

func (*QueryPointerRequest) Size

func (m *QueryPointerRequest) Size() (n int)

func (*QueryPointerRequest) String

func (m *QueryPointerRequest) String() string

func (*QueryPointerRequest) Unmarshal

func (m *QueryPointerRequest) Unmarshal(dAtA []byte) error

func (*QueryPointerRequest) XXX_DiscardUnknown

func (m *QueryPointerRequest) XXX_DiscardUnknown()

func (*QueryPointerRequest) XXX_Marshal

func (m *QueryPointerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPointerRequest) XXX_Merge

func (m *QueryPointerRequest) XXX_Merge(src proto.Message)

func (*QueryPointerRequest) XXX_Size

func (m *QueryPointerRequest) XXX_Size() int

func (*QueryPointerRequest) XXX_Unmarshal

func (m *QueryPointerRequest) XXX_Unmarshal(b []byte) error

type QueryPointerResponse

type QueryPointerResponse struct {
	Pointer string `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
	Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	Exists  bool   `protobuf:"varint,3,opt,name=exists,proto3" json:"exists,omitempty"`
}

func (*QueryPointerResponse) Descriptor

func (*QueryPointerResponse) Descriptor() ([]byte, []int)

func (*QueryPointerResponse) GetExists

func (m *QueryPointerResponse) GetExists() bool

func (*QueryPointerResponse) GetPointer

func (m *QueryPointerResponse) GetPointer() string

func (*QueryPointerResponse) GetVersion

func (m *QueryPointerResponse) GetVersion() uint32

func (*QueryPointerResponse) Marshal

func (m *QueryPointerResponse) Marshal() (dAtA []byte, err error)

func (*QueryPointerResponse) MarshalTo

func (m *QueryPointerResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryPointerResponse) MarshalToSizedBuffer

func (m *QueryPointerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPointerResponse) ProtoMessage

func (*QueryPointerResponse) ProtoMessage()

func (*QueryPointerResponse) Reset

func (m *QueryPointerResponse) Reset()

func (*QueryPointerResponse) Size

func (m *QueryPointerResponse) Size() (n int)

func (*QueryPointerResponse) String

func (m *QueryPointerResponse) String() string

func (*QueryPointerResponse) Unmarshal

func (m *QueryPointerResponse) Unmarshal(dAtA []byte) error

func (*QueryPointerResponse) XXX_DiscardUnknown

func (m *QueryPointerResponse) XXX_DiscardUnknown()

func (*QueryPointerResponse) XXX_Marshal

func (m *QueryPointerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPointerResponse) XXX_Merge

func (m *QueryPointerResponse) XXX_Merge(src proto.Message)

func (*QueryPointerResponse) XXX_Size

func (m *QueryPointerResponse) XXX_Size() int

func (*QueryPointerResponse) XXX_Unmarshal

func (m *QueryPointerResponse) XXX_Unmarshal(b []byte) error

type QueryPointerVersionRequest

type QueryPointerVersionRequest struct {
	PointerType PointerType `` /* 137-byte string literal not displayed */
}

func (*QueryPointerVersionRequest) Descriptor

func (*QueryPointerVersionRequest) Descriptor() ([]byte, []int)

func (*QueryPointerVersionRequest) GetPointerType

func (m *QueryPointerVersionRequest) GetPointerType() PointerType

func (*QueryPointerVersionRequest) Marshal

func (m *QueryPointerVersionRequest) Marshal() (dAtA []byte, err error)

func (*QueryPointerVersionRequest) MarshalTo

func (m *QueryPointerVersionRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryPointerVersionRequest) MarshalToSizedBuffer

func (m *QueryPointerVersionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPointerVersionRequest) ProtoMessage

func (*QueryPointerVersionRequest) ProtoMessage()

func (*QueryPointerVersionRequest) Reset

func (m *QueryPointerVersionRequest) Reset()

func (*QueryPointerVersionRequest) Size

func (m *QueryPointerVersionRequest) Size() (n int)

func (*QueryPointerVersionRequest) String

func (m *QueryPointerVersionRequest) String() string

func (*QueryPointerVersionRequest) Unmarshal

func (m *QueryPointerVersionRequest) Unmarshal(dAtA []byte) error

func (*QueryPointerVersionRequest) XXX_DiscardUnknown

func (m *QueryPointerVersionRequest) XXX_DiscardUnknown()

func (*QueryPointerVersionRequest) XXX_Marshal

func (m *QueryPointerVersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPointerVersionRequest) XXX_Merge

func (m *QueryPointerVersionRequest) XXX_Merge(src proto.Message)

func (*QueryPointerVersionRequest) XXX_Size

func (m *QueryPointerVersionRequest) XXX_Size() int

func (*QueryPointerVersionRequest) XXX_Unmarshal

func (m *QueryPointerVersionRequest) XXX_Unmarshal(b []byte) error

type QueryPointerVersionResponse

type QueryPointerVersionResponse struct {
	Version  uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	CwCodeId uint64 `protobuf:"varint,2,opt,name=cw_code_id,json=cwCodeId,proto3" json:"cw_code_id,omitempty"`
}

func (*QueryPointerVersionResponse) Descriptor

func (*QueryPointerVersionResponse) Descriptor() ([]byte, []int)

func (*QueryPointerVersionResponse) GetCwCodeId

func (m *QueryPointerVersionResponse) GetCwCodeId() uint64

func (*QueryPointerVersionResponse) GetVersion

func (m *QueryPointerVersionResponse) GetVersion() uint32

func (*QueryPointerVersionResponse) Marshal

func (m *QueryPointerVersionResponse) Marshal() (dAtA []byte, err error)

func (*QueryPointerVersionResponse) MarshalTo

func (m *QueryPointerVersionResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryPointerVersionResponse) MarshalToSizedBuffer

func (m *QueryPointerVersionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPointerVersionResponse) ProtoMessage

func (*QueryPointerVersionResponse) ProtoMessage()

func (*QueryPointerVersionResponse) Reset

func (m *QueryPointerVersionResponse) Reset()

func (*QueryPointerVersionResponse) Size

func (m *QueryPointerVersionResponse) Size() (n int)

func (*QueryPointerVersionResponse) String

func (m *QueryPointerVersionResponse) String() string

func (*QueryPointerVersionResponse) Unmarshal

func (m *QueryPointerVersionResponse) Unmarshal(dAtA []byte) error

func (*QueryPointerVersionResponse) XXX_DiscardUnknown

func (m *QueryPointerVersionResponse) XXX_DiscardUnknown()

func (*QueryPointerVersionResponse) XXX_Marshal

func (m *QueryPointerVersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPointerVersionResponse) XXX_Merge

func (m *QueryPointerVersionResponse) XXX_Merge(src proto.Message)

func (*QueryPointerVersionResponse) XXX_Size

func (m *QueryPointerVersionResponse) XXX_Size() int

func (*QueryPointerVersionResponse) XXX_Unmarshal

func (m *QueryPointerVersionResponse) XXX_Unmarshal(b []byte) error

type QuerySeiAddressByEVMAddressRequest

type QuerySeiAddressByEVMAddressRequest struct {
	EvmAddress string `protobuf:"bytes,1,opt,name=evm_address,json=evmAddress,proto3" json:"evm_address,omitempty"`
}

func (*QuerySeiAddressByEVMAddressRequest) Descriptor

func (*QuerySeiAddressByEVMAddressRequest) Descriptor() ([]byte, []int)

func (*QuerySeiAddressByEVMAddressRequest) GetEvmAddress

func (m *QuerySeiAddressByEVMAddressRequest) GetEvmAddress() string

func (*QuerySeiAddressByEVMAddressRequest) Marshal

func (m *QuerySeiAddressByEVMAddressRequest) Marshal() (dAtA []byte, err error)

func (*QuerySeiAddressByEVMAddressRequest) MarshalTo

func (m *QuerySeiAddressByEVMAddressRequest) MarshalTo(dAtA []byte) (int, error)

func (*QuerySeiAddressByEVMAddressRequest) MarshalToSizedBuffer

func (m *QuerySeiAddressByEVMAddressRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QuerySeiAddressByEVMAddressRequest) ProtoMessage

func (*QuerySeiAddressByEVMAddressRequest) ProtoMessage()

func (*QuerySeiAddressByEVMAddressRequest) Reset

func (*QuerySeiAddressByEVMAddressRequest) Size

func (*QuerySeiAddressByEVMAddressRequest) String

func (*QuerySeiAddressByEVMAddressRequest) Unmarshal

func (m *QuerySeiAddressByEVMAddressRequest) Unmarshal(dAtA []byte) error

func (*QuerySeiAddressByEVMAddressRequest) XXX_DiscardUnknown

func (m *QuerySeiAddressByEVMAddressRequest) XXX_DiscardUnknown()

func (*QuerySeiAddressByEVMAddressRequest) XXX_Marshal

func (m *QuerySeiAddressByEVMAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuerySeiAddressByEVMAddressRequest) XXX_Merge

func (*QuerySeiAddressByEVMAddressRequest) XXX_Size

func (*QuerySeiAddressByEVMAddressRequest) XXX_Unmarshal

func (m *QuerySeiAddressByEVMAddressRequest) XXX_Unmarshal(b []byte) error

type QuerySeiAddressByEVMAddressResponse

type QuerySeiAddressByEVMAddressResponse struct {
	SeiAddress string `protobuf:"bytes,1,opt,name=sei_address,json=seiAddress,proto3" json:"sei_address,omitempty"`
	Associated bool   `protobuf:"varint,2,opt,name=associated,proto3" json:"associated,omitempty"`
}

func (*QuerySeiAddressByEVMAddressResponse) Descriptor

func (*QuerySeiAddressByEVMAddressResponse) Descriptor() ([]byte, []int)

func (*QuerySeiAddressByEVMAddressResponse) GetAssociated

func (m *QuerySeiAddressByEVMAddressResponse) GetAssociated() bool

func (*QuerySeiAddressByEVMAddressResponse) GetSeiAddress

func (m *QuerySeiAddressByEVMAddressResponse) GetSeiAddress() string

func (*QuerySeiAddressByEVMAddressResponse) Marshal

func (m *QuerySeiAddressByEVMAddressResponse) Marshal() (dAtA []byte, err error)

func (*QuerySeiAddressByEVMAddressResponse) MarshalTo

func (m *QuerySeiAddressByEVMAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*QuerySeiAddressByEVMAddressResponse) MarshalToSizedBuffer

func (m *QuerySeiAddressByEVMAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QuerySeiAddressByEVMAddressResponse) ProtoMessage

func (*QuerySeiAddressByEVMAddressResponse) ProtoMessage()

func (*QuerySeiAddressByEVMAddressResponse) Reset

func (*QuerySeiAddressByEVMAddressResponse) Size

func (*QuerySeiAddressByEVMAddressResponse) String

func (*QuerySeiAddressByEVMAddressResponse) Unmarshal

func (m *QuerySeiAddressByEVMAddressResponse) Unmarshal(dAtA []byte) error

func (*QuerySeiAddressByEVMAddressResponse) XXX_DiscardUnknown

func (m *QuerySeiAddressByEVMAddressResponse) XXX_DiscardUnknown()

func (*QuerySeiAddressByEVMAddressResponse) XXX_Marshal

func (m *QuerySeiAddressByEVMAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuerySeiAddressByEVMAddressResponse) XXX_Merge

func (*QuerySeiAddressByEVMAddressResponse) XXX_Size

func (*QuerySeiAddressByEVMAddressResponse) XXX_Unmarshal

func (m *QuerySeiAddressByEVMAddressResponse) XXX_Unmarshal(b []byte) error

type QueryStaticCallRequest

type QueryStaticCallRequest struct {
	Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	To   string `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
}

func (*QueryStaticCallRequest) Descriptor

func (*QueryStaticCallRequest) Descriptor() ([]byte, []int)

func (*QueryStaticCallRequest) GetData

func (m *QueryStaticCallRequest) GetData() []byte

func (*QueryStaticCallRequest) GetTo

func (m *QueryStaticCallRequest) GetTo() string

func (*QueryStaticCallRequest) Marshal

func (m *QueryStaticCallRequest) Marshal() (dAtA []byte, err error)

func (*QueryStaticCallRequest) MarshalTo

func (m *QueryStaticCallRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryStaticCallRequest) MarshalToSizedBuffer

func (m *QueryStaticCallRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryStaticCallRequest) ProtoMessage

func (*QueryStaticCallRequest) ProtoMessage()

func (*QueryStaticCallRequest) Reset

func (m *QueryStaticCallRequest) Reset()

func (*QueryStaticCallRequest) Size

func (m *QueryStaticCallRequest) Size() (n int)

func (*QueryStaticCallRequest) String

func (m *QueryStaticCallRequest) String() string

func (*QueryStaticCallRequest) Unmarshal

func (m *QueryStaticCallRequest) Unmarshal(dAtA []byte) error

func (*QueryStaticCallRequest) XXX_DiscardUnknown

func (m *QueryStaticCallRequest) XXX_DiscardUnknown()

func (*QueryStaticCallRequest) XXX_Marshal

func (m *QueryStaticCallRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryStaticCallRequest) XXX_Merge

func (m *QueryStaticCallRequest) XXX_Merge(src proto.Message)

func (*QueryStaticCallRequest) XXX_Size

func (m *QueryStaticCallRequest) XXX_Size() int

func (*QueryStaticCallRequest) XXX_Unmarshal

func (m *QueryStaticCallRequest) XXX_Unmarshal(b []byte) error

type QueryStaticCallResponse

type QueryStaticCallResponse struct {
	Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (*QueryStaticCallResponse) Descriptor

func (*QueryStaticCallResponse) Descriptor() ([]byte, []int)

func (*QueryStaticCallResponse) GetData

func (m *QueryStaticCallResponse) GetData() []byte

func (*QueryStaticCallResponse) Marshal

func (m *QueryStaticCallResponse) Marshal() (dAtA []byte, err error)

func (*QueryStaticCallResponse) MarshalTo

func (m *QueryStaticCallResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryStaticCallResponse) MarshalToSizedBuffer

func (m *QueryStaticCallResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryStaticCallResponse) ProtoMessage

func (*QueryStaticCallResponse) ProtoMessage()

func (*QueryStaticCallResponse) Reset

func (m *QueryStaticCallResponse) Reset()

func (*QueryStaticCallResponse) Size

func (m *QueryStaticCallResponse) Size() (n int)

func (*QueryStaticCallResponse) String

func (m *QueryStaticCallResponse) String() string

func (*QueryStaticCallResponse) Unmarshal

func (m *QueryStaticCallResponse) Unmarshal(dAtA []byte) error

func (*QueryStaticCallResponse) XXX_DiscardUnknown

func (m *QueryStaticCallResponse) XXX_DiscardUnknown()

func (*QueryStaticCallResponse) XXX_Marshal

func (m *QueryStaticCallResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryStaticCallResponse) XXX_Merge

func (m *QueryStaticCallResponse) XXX_Merge(src proto.Message)

func (*QueryStaticCallResponse) XXX_Size

func (m *QueryStaticCallResponse) XXX_Size() int

func (*QueryStaticCallResponse) XXX_Unmarshal

func (m *QueryStaticCallResponse) XXX_Unmarshal(b []byte) error

type Receipt

type Receipt struct {
	TxType            uint32 `protobuf:"varint,1,opt,name=tx_type,json=txType,proto3" json:"tx_type,omitempty" yaml:"tx_type"`
	CumulativeGasUsed uint64 `` /* 142-byte string literal not displayed */
	ContractAddress   string `` /* 130-byte string literal not displayed */
	TxHashHex         string `protobuf:"bytes,4,opt,name=tx_hash_hex,json=txHashHex,proto3" json:"tx_hash_hex,omitempty" yaml:"tx_hash_hex"`
	GasUsed           uint64 `protobuf:"varint,5,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty" yaml:"gas_used"`
	EffectiveGasPrice uint64 `` /* 142-byte string literal not displayed */
	BlockNumber       uint64 `protobuf:"varint,7,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty" yaml:"block_number"`
	TransactionIndex  uint32 `` /* 135-byte string literal not displayed */
	Status            uint32 `protobuf:"varint,9,opt,name=status,proto3" json:"status,omitempty" yaml:"status"`
	From              string `protobuf:"bytes,10,opt,name=from,proto3" json:"from,omitempty" yaml:"from"`
	To                string `protobuf:"bytes,11,opt,name=to,proto3" json:"to,omitempty" yaml:"to"`
	VmError           string `protobuf:"bytes,12,opt,name=vm_error,json=vmError,proto3" json:"vm_error,omitempty" yaml:"vm_error"`
	Logs              []*Log `protobuf:"bytes,13,rep,name=logs,proto3" json:"logs,omitempty"`
	LogsBloom         []byte `protobuf:"bytes,14,opt,name=logsBloom,proto3" json:"logsBloom,omitempty"`
}

func (*Receipt) Descriptor

func (*Receipt) Descriptor() ([]byte, []int)

func (*Receipt) GetBlockNumber

func (m *Receipt) GetBlockNumber() uint64

func (*Receipt) GetContractAddress

func (m *Receipt) GetContractAddress() string

func (*Receipt) GetCumulativeGasUsed

func (m *Receipt) GetCumulativeGasUsed() uint64

func (*Receipt) GetEffectiveGasPrice

func (m *Receipt) GetEffectiveGasPrice() uint64

func (*Receipt) GetFrom

func (m *Receipt) GetFrom() string

func (*Receipt) GetGasUsed

func (m *Receipt) GetGasUsed() uint64

func (*Receipt) GetLogs

func (m *Receipt) GetLogs() []*Log

func (*Receipt) GetLogsBloom

func (m *Receipt) GetLogsBloom() []byte

func (*Receipt) GetStatus

func (m *Receipt) GetStatus() uint32

func (*Receipt) GetTo

func (m *Receipt) GetTo() string

func (*Receipt) GetTransactionIndex

func (m *Receipt) GetTransactionIndex() uint32

func (*Receipt) GetTxHashHex

func (m *Receipt) GetTxHashHex() string

func (*Receipt) GetTxType

func (m *Receipt) GetTxType() uint32

func (*Receipt) GetVmError

func (m *Receipt) GetVmError() string

func (*Receipt) Marshal

func (m *Receipt) Marshal() (dAtA []byte, err error)

func (*Receipt) MarshalTo

func (m *Receipt) MarshalTo(dAtA []byte) (int, error)

func (*Receipt) MarshalToSizedBuffer

func (m *Receipt) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Receipt) ProtoMessage

func (*Receipt) ProtoMessage()

func (*Receipt) Reset

func (m *Receipt) Reset()

func (*Receipt) Size

func (m *Receipt) Size() (n int)

func (*Receipt) String

func (m *Receipt) String() string

func (*Receipt) Unmarshal

func (m *Receipt) Unmarshal(dAtA []byte) error

func (*Receipt) XXX_DiscardUnknown

func (m *Receipt) XXX_DiscardUnknown()

func (*Receipt) XXX_Marshal

func (m *Receipt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Receipt) XXX_Merge

func (m *Receipt) XXX_Merge(src proto.Message)

func (*Receipt) XXX_Size

func (m *Receipt) XXX_Size() int

func (*Receipt) XXX_Unmarshal

func (m *Receipt) XXX_Unmarshal(b []byte) error

type Serialized

type Serialized struct {
	Prefix []byte `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
	Key    []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Value  []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
}

func (*Serialized) Descriptor

func (*Serialized) Descriptor() ([]byte, []int)

func (*Serialized) GetKey

func (m *Serialized) GetKey() []byte

func (*Serialized) GetPrefix

func (m *Serialized) GetPrefix() []byte

func (*Serialized) GetValue

func (m *Serialized) GetValue() []byte

func (*Serialized) Marshal

func (m *Serialized) Marshal() (dAtA []byte, err error)

func (*Serialized) MarshalTo

func (m *Serialized) MarshalTo(dAtA []byte) (int, error)

func (*Serialized) MarshalToSizedBuffer

func (m *Serialized) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Serialized) ProtoMessage

func (*Serialized) ProtoMessage()

func (*Serialized) Reset

func (m *Serialized) Reset()

func (*Serialized) Size

func (m *Serialized) Size() (n int)

func (*Serialized) String

func (m *Serialized) String() string

func (*Serialized) Unmarshal

func (m *Serialized) Unmarshal(dAtA []byte) error

func (*Serialized) XXX_DiscardUnknown

func (m *Serialized) XXX_DiscardUnknown()

func (*Serialized) XXX_Marshal

func (m *Serialized) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Serialized) XXX_Merge

func (m *Serialized) XXX_Merge(src proto.Message)

func (*Serialized) XXX_Size

func (m *Serialized) XXX_Size() int

func (*Serialized) XXX_Unmarshal

func (m *Serialized) XXX_Unmarshal(b []byte) error

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) EVMTransaction

func (*UnimplementedMsgServer) RegisterPointer

func (*UnimplementedMsgServer) Send

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Pointer

func (*UnimplementedQueryServer) PointerVersion

func (*UnimplementedQueryServer) StaticCall

type Whitelist

type Whitelist struct {
	Hashes []string `protobuf:"bytes,1,rep,name=hashes,proto3" json:"hashes,omitempty" yaml:"hashes"`
}

func (*Whitelist) Descriptor

func (*Whitelist) Descriptor() ([]byte, []int)

func (*Whitelist) GetHashes

func (m *Whitelist) GetHashes() []string

func (*Whitelist) IsHashInWhiteList

func (w *Whitelist) IsHashInWhiteList(h common.Hash) bool

func (*Whitelist) Marshal

func (m *Whitelist) Marshal() (dAtA []byte, err error)

func (*Whitelist) MarshalTo

func (m *Whitelist) MarshalTo(dAtA []byte) (int, error)

func (*Whitelist) MarshalToSizedBuffer

func (m *Whitelist) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Whitelist) ProtoMessage

func (*Whitelist) ProtoMessage()

func (*Whitelist) Reset

func (m *Whitelist) Reset()

func (*Whitelist) Size

func (m *Whitelist) Size() (n int)

func (*Whitelist) String

func (m *Whitelist) String() string

func (*Whitelist) Unmarshal

func (m *Whitelist) Unmarshal(dAtA []byte) error

func (*Whitelist) XXX_DiscardUnknown

func (m *Whitelist) XXX_DiscardUnknown()

func (*Whitelist) XXX_Marshal

func (m *Whitelist) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Whitelist) XXX_Merge

func (m *Whitelist) XXX_Merge(src proto.Message)

func (*Whitelist) XXX_Size

func (m *Whitelist) XXX_Size() int

func (*Whitelist) XXX_Unmarshal

func (m *Whitelist) XXX_Unmarshal(b []byte) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL