v1

package
v0.0.0-...-52dbcc1 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthPartial        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPartial          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPartial = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type MsgInit

type MsgInit struct {
	PubKeyBytes []byte `protobuf:"bytes,1,opt,name=pub_key_bytes,json=pubKeyBytes,proto3" json:"pub_key_bytes,omitempty"`
}

MsgInit is the init message used to create a new account abstraction implementation that we use for testing, this account also allows for rotating the public key.

func (*MsgInit) Descriptor

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

func (*MsgInit) GetPubKeyBytes

func (m *MsgInit) GetPubKeyBytes() []byte

func (*MsgInit) Marshal

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

func (*MsgInit) MarshalTo

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

func (*MsgInit) MarshalToSizedBuffer

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

func (*MsgInit) ProtoMessage

func (*MsgInit) ProtoMessage()

func (*MsgInit) Reset

func (m *MsgInit) Reset()

func (*MsgInit) Size

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

func (*MsgInit) String

func (m *MsgInit) String() string

func (*MsgInit) Unmarshal

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

func (*MsgInit) XXX_DiscardUnknown

func (m *MsgInit) XXX_DiscardUnknown()

func (*MsgInit) XXX_Marshal

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

func (*MsgInit) XXX_Merge

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

func (*MsgInit) XXX_Size

func (m *MsgInit) XXX_Size() int

func (*MsgInit) XXX_Unmarshal

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

type MsgInitResponse

type MsgInitResponse struct {
}

MsgInitResponse is the init message response.

func (*MsgInitResponse) Descriptor

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

func (*MsgInitResponse) Marshal

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

func (*MsgInitResponse) MarshalTo

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

func (*MsgInitResponse) MarshalToSizedBuffer

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

func (*MsgInitResponse) ProtoMessage

func (*MsgInitResponse) ProtoMessage()

func (*MsgInitResponse) Reset

func (m *MsgInitResponse) Reset()

func (*MsgInitResponse) Size

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

func (*MsgInitResponse) String

func (m *MsgInitResponse) String() string

func (*MsgInitResponse) Unmarshal

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

func (*MsgInitResponse) XXX_DiscardUnknown

func (m *MsgInitResponse) XXX_DiscardUnknown()

func (*MsgInitResponse) XXX_Marshal

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

func (*MsgInitResponse) XXX_Merge

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

func (*MsgInitResponse) XXX_Size

func (m *MsgInitResponse) XXX_Size() int

func (*MsgInitResponse) XXX_Unmarshal

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

type MsgRotatePubKey

type MsgRotatePubKey struct {
	NewPubKeyBytes []byte `protobuf:"bytes,1,opt,name=new_pub_key_bytes,json=newPubKeyBytes,proto3" json:"new_pub_key_bytes,omitempty"`
}

MsgRotatePubKey is the message used to swap the public key of the account.

func (*MsgRotatePubKey) Descriptor

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

func (*MsgRotatePubKey) GetNewPubKeyBytes

func (m *MsgRotatePubKey) GetNewPubKeyBytes() []byte

func (*MsgRotatePubKey) Marshal

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

func (*MsgRotatePubKey) MarshalTo

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

func (*MsgRotatePubKey) MarshalToSizedBuffer

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

func (*MsgRotatePubKey) ProtoMessage

func (*MsgRotatePubKey) ProtoMessage()

func (*MsgRotatePubKey) Reset

func (m *MsgRotatePubKey) Reset()

func (*MsgRotatePubKey) Size

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

func (*MsgRotatePubKey) String

func (m *MsgRotatePubKey) String() string

func (*MsgRotatePubKey) Unmarshal

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

func (*MsgRotatePubKey) XXX_DiscardUnknown

func (m *MsgRotatePubKey) XXX_DiscardUnknown()

func (*MsgRotatePubKey) XXX_Marshal

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

func (*MsgRotatePubKey) XXX_Merge

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

func (*MsgRotatePubKey) XXX_Size

func (m *MsgRotatePubKey) XXX_Size() int

func (*MsgRotatePubKey) XXX_Unmarshal

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

type MsgRotatePubKeyResponse

type MsgRotatePubKeyResponse struct {
}

MsgRotatePubKeyResponse is the MsgRotatePubKey response.

func (*MsgRotatePubKeyResponse) Descriptor

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

func (*MsgRotatePubKeyResponse) Marshal

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

func (*MsgRotatePubKeyResponse) MarshalTo

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

func (*MsgRotatePubKeyResponse) MarshalToSizedBuffer

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

func (*MsgRotatePubKeyResponse) ProtoMessage

func (*MsgRotatePubKeyResponse) ProtoMessage()

func (*MsgRotatePubKeyResponse) Reset

func (m *MsgRotatePubKeyResponse) Reset()

func (*MsgRotatePubKeyResponse) Size

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

func (*MsgRotatePubKeyResponse) String

func (m *MsgRotatePubKeyResponse) String() string

func (*MsgRotatePubKeyResponse) Unmarshal

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

func (*MsgRotatePubKeyResponse) XXX_DiscardUnknown

func (m *MsgRotatePubKeyResponse) XXX_DiscardUnknown()

func (*MsgRotatePubKeyResponse) XXX_Marshal

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

func (*MsgRotatePubKeyResponse) XXX_Merge

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

func (*MsgRotatePubKeyResponse) XXX_Size

func (m *MsgRotatePubKeyResponse) XXX_Size() int

func (*MsgRotatePubKeyResponse) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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