You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1140 lines
39 KiB
1140 lines
39 KiB
2 months ago
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// protoc-gen-go v1.34.2
|
||
|
// protoc v5.27.1
|
||
|
// source: walletSystem/v1/wallet.proto
|
||
|
|
||
|
package v1
|
||
|
|
||
|
import (
|
||
|
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||
|
reflect "reflect"
|
||
|
sync "sync"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// Verify that this generated code is sufficiently up-to-date.
|
||
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||
|
)
|
||
|
|
||
|
type WalletApproveRequest struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
|
||
|
To string `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
|
||
|
Contract string `protobuf:"bytes,3,opt,name=contract,proto3" json:"contract,omitempty"`
|
||
|
Amount uint32 `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
|
||
|
TrcCheck string `protobuf:"bytes,5,opt,name=trcCheck,proto3" json:"trcCheck,omitempty"`
|
||
|
TokenId string `protobuf:"bytes,6,opt,name=tokenId,proto3" json:"tokenId,omitempty"`
|
||
|
FeeLimit uint32 `protobuf:"varint,7,opt,name=feeLimit,proto3" json:"feeLimit,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) Reset() {
|
||
|
*x = WalletApproveRequest{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[0]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletApproveRequest) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletApproveRequest) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[0]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletApproveRequest.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletApproveRequest) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{0}
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetFrom() string {
|
||
|
if x != nil {
|
||
|
return x.From
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetTo() string {
|
||
|
if x != nil {
|
||
|
return x.To
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetContract() string {
|
||
|
if x != nil {
|
||
|
return x.Contract
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetAmount() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Amount
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetTrcCheck() string {
|
||
|
if x != nil {
|
||
|
return x.TrcCheck
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetTokenId() string {
|
||
|
if x != nil {
|
||
|
return x.TokenId
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveRequest) GetFeeLimit() uint32 {
|
||
|
if x != nil {
|
||
|
return x.FeeLimit
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type WalletApproveReply struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
||
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveReply) Reset() {
|
||
|
*x = WalletApproveReply{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[1]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveReply) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletApproveReply) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletApproveReply) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[1]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletApproveReply.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletApproveReply) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{1}
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveReply) GetCode() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveReply) GetData() []byte {
|
||
|
if x != nil {
|
||
|
return x.Data
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (x *WalletApproveReply) GetMessage() string {
|
||
|
if x != nil {
|
||
|
return x.Message
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type WalletRequest struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
}
|
||
|
|
||
|
func (x *WalletRequest) Reset() {
|
||
|
*x = WalletRequest{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[2]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletRequest) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletRequest) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletRequest) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[2]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletRequest.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletRequest) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{2}
|
||
|
}
|
||
|
|
||
|
type GetPrivateKeyByAddressRequest struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GetPrivateKeyByAddressRequest) Reset() {
|
||
|
*x = GetPrivateKeyByAddressRequest{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[3]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetPrivateKeyByAddressRequest) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetPrivateKeyByAddressRequest) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetPrivateKeyByAddressRequest) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[3]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use GetPrivateKeyByAddressRequest.ProtoReflect.Descriptor instead.
|
||
|
func (*GetPrivateKeyByAddressRequest) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{3}
|
||
|
}
|
||
|
|
||
|
func (x *GetPrivateKeyByAddressRequest) GetAddress() string {
|
||
|
if x != nil {
|
||
|
return x.Address
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type GenerateAddressRequest struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Wallet string `protobuf:"bytes,1,opt,name=wallet,proto3" json:"wallet,omitempty"`
|
||
|
Number uint32 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GenerateAddressRequest) Reset() {
|
||
|
*x = GenerateAddressRequest{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[4]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GenerateAddressRequest) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GenerateAddressRequest) ProtoMessage() {}
|
||
|
|
||
|
func (x *GenerateAddressRequest) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[4]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use GenerateAddressRequest.ProtoReflect.Descriptor instead.
|
||
|
func (*GenerateAddressRequest) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{4}
|
||
|
}
|
||
|
|
||
|
func (x *GenerateAddressRequest) GetWallet() string {
|
||
|
if x != nil {
|
||
|
return x.Wallet
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *GenerateAddressRequest) GetNumber() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Number
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type SignatureTrc20Request struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
|
||
|
To string `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
|
||
|
Contract string `protobuf:"bytes,3,opt,name=contract,proto3" json:"contract,omitempty"`
|
||
|
Amount uint32 `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
|
||
|
TrcCheck string `protobuf:"bytes,5,opt,name=trcCheck,proto3" json:"trcCheck,omitempty"`
|
||
|
TokenId string `protobuf:"bytes,6,opt,name=tokenId,proto3" json:"tokenId,omitempty"`
|
||
|
FeeLimit uint32 `protobuf:"varint,7,opt,name=feeLimit,proto3" json:"feeLimit,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) Reset() {
|
||
|
*x = SignatureTrc20Request{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[5]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*SignatureTrc20Request) ProtoMessage() {}
|
||
|
|
||
|
func (x *SignatureTrc20Request) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[5]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use SignatureTrc20Request.ProtoReflect.Descriptor instead.
|
||
|
func (*SignatureTrc20Request) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{5}
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetFrom() string {
|
||
|
if x != nil {
|
||
|
return x.From
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetTo() string {
|
||
|
if x != nil {
|
||
|
return x.To
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetContract() string {
|
||
|
if x != nil {
|
||
|
return x.Contract
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetAmount() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Amount
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetTrcCheck() string {
|
||
|
if x != nil {
|
||
|
return x.TrcCheck
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetTokenId() string {
|
||
|
if x != nil {
|
||
|
return x.TokenId
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Request) GetFeeLimit() uint32 {
|
||
|
if x != nil {
|
||
|
return x.FeeLimit
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type SignatureTrc20Reply struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Data *Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
||
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) Reset() {
|
||
|
*x = SignatureTrc20Reply{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[6]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*SignatureTrc20Reply) ProtoMessage() {}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[6]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use SignatureTrc20Reply.ProtoReflect.Descriptor instead.
|
||
|
func (*SignatureTrc20Reply) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{6}
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) GetCode() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) GetData() *Data {
|
||
|
if x != nil {
|
||
|
return x.Data
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (x *SignatureTrc20Reply) GetMessage() string {
|
||
|
if x != nil {
|
||
|
return x.Message
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type Data struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Result bool `protobuf:"varint,1,opt,name=Result,proto3" json:"Result,omitempty"`
|
||
|
TxId string `protobuf:"bytes,2,opt,name=TxId,proto3" json:"TxId,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *Data) Reset() {
|
||
|
*x = Data{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[7]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *Data) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*Data) ProtoMessage() {}
|
||
|
|
||
|
func (x *Data) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[7]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use Data.ProtoReflect.Descriptor instead.
|
||
|
func (*Data) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{7}
|
||
|
}
|
||
|
|
||
|
func (x *Data) GetResult() bool {
|
||
|
if x != nil {
|
||
|
return x.Result
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (x *Data) GetTxId() string {
|
||
|
if x != nil {
|
||
|
return x.TxId
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type WalletReply struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Data []string `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
|
||
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *WalletReply) Reset() {
|
||
|
*x = WalletReply{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[8]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletReply) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletReply) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletReply) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[8]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletReply.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletReply) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{8}
|
||
|
}
|
||
|
|
||
|
func (x *WalletReply) GetCode() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *WalletReply) GetData() []string {
|
||
|
if x != nil {
|
||
|
return x.Data
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (x *WalletReply) GetMessage() string {
|
||
|
if x != nil {
|
||
|
return x.Message
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type WalletKeyReply struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Data []*Keys `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
|
||
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *WalletKeyReply) Reset() {
|
||
|
*x = WalletKeyReply{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[9]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletKeyReply) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletKeyReply) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletKeyReply) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[9]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletKeyReply.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletKeyReply) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{9}
|
||
|
}
|
||
|
|
||
|
func (x *WalletKeyReply) GetCode() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *WalletKeyReply) GetData() []*Keys {
|
||
|
if x != nil {
|
||
|
return x.Data
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (x *WalletKeyReply) GetMessage() string {
|
||
|
if x != nil {
|
||
|
return x.Message
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type Keys struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
||
|
Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *Keys) Reset() {
|
||
|
*x = Keys{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[10]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *Keys) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*Keys) ProtoMessage() {}
|
||
|
|
||
|
func (x *Keys) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[10]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use Keys.ProtoReflect.Descriptor instead.
|
||
|
func (*Keys) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{10}
|
||
|
}
|
||
|
|
||
|
func (x *Keys) GetKey() string {
|
||
|
if x != nil {
|
||
|
return x.Key
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *Keys) GetValue() []byte {
|
||
|
if x != nil {
|
||
|
return x.Value
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type WalletPKeysReply struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Data string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
||
|
Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *WalletPKeysReply) Reset() {
|
||
|
*x = WalletPKeysReply{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[11]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *WalletPKeysReply) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*WalletPKeysReply) ProtoMessage() {}
|
||
|
|
||
|
func (x *WalletPKeysReply) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_walletSystem_v1_wallet_proto_msgTypes[11]
|
||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
if ms.LoadMessageInfo() == nil {
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
return ms
|
||
|
}
|
||
|
return mi.MessageOf(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use WalletPKeysReply.ProtoReflect.Descriptor instead.
|
||
|
func (*WalletPKeysReply) Descriptor() ([]byte, []int) {
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescGZIP(), []int{11}
|
||
|
}
|
||
|
|
||
|
func (x *WalletPKeysReply) GetCode() uint32 {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *WalletPKeysReply) GetData() string {
|
||
|
if x != nil {
|
||
|
return x.Data
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *WalletPKeysReply) GetMessage() string {
|
||
|
if x != nil {
|
||
|
return x.Message
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
var File_walletSystem_v1_wallet_proto protoreflect.FileDescriptor
|
||
|
|
||
|
var file_walletSystem_v1_wallet_proto_rawDesc = []byte{
|
||
|
0x0a, 0x1c, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x76,
|
||
|
0x31, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f,
|
||
|
0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x1a,
|
||
|
0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f,
|
||
|
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc0, 0x01,
|
||
|
0x0a, 0x14, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x52,
|
||
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f,
|
||
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f,
|
||
|
0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f,
|
||
|
0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
|
||
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a,
|
||
|
0x0a, 0x08, 0x74, 0x72, 0x63, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
||
|
0x52, 0x08, 0x74, 0x72, 0x63, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x6f,
|
||
|
0x6b, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x6f, 0x6b,
|
||
|
0x65, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x65, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74,
|
||
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x66, 0x65, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74,
|
||
|
0x22, 0x56, 0x0a, 0x12, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76,
|
||
|
0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
|
||
|
0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18,
|
||
|
0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||
|
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x0f, 0x0a, 0x0d, 0x57, 0x61, 0x6c, 0x6c,
|
||
|
0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x39, 0x0a, 0x1d, 0x47, 0x65, 0x74,
|
||
|
0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x42, 0x79, 0x41, 0x64, 0x64, 0x72,
|
||
|
0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64,
|
||
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64,
|
||
|
0x72, 0x65, 0x73, 0x73, 0x22, 0x48, 0x0a, 0x16, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
|
||
|
0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
||
|
0x0a, 0x06, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
||
|
0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
||
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xc1,
|
||
|
0x01, 0x0a, 0x15, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x72, 0x63, 0x32,
|
||
|
0x30, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d,
|
||
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x0e, 0x0a, 0x02,
|
||
|
0x74, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x1a, 0x0a, 0x08,
|
||
|
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
||
|
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75,
|
||
|
0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
|
||
|
0x12, 0x1a, 0x0a, 0x08, 0x74, 0x72, 0x63, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x52, 0x08, 0x74, 0x72, 0x63, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07,
|
||
|
0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74,
|
||
|
0x6f, 0x6b, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x65, 0x65, 0x4c, 0x69, 0x6d,
|
||
|
0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x66, 0x65, 0x65, 0x4c, 0x69, 0x6d,
|
||
|
0x69, 0x74, 0x22, 0x6e, 0x0a, 0x13, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54,
|
||
|
0x72, 0x63, 0x32, 0x30, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
|
||
|
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x29, 0x0a,
|
||
|
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x77, 0x61,
|
||
|
0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x61,
|
||
|
0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
|
||
|
0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
|
||
|
0x67, 0x65, 0x22, 0x32, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65,
|
||
|
0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x52, 0x65, 0x73, 0x75,
|
||
|
0x6c, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x78, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
||
|
0x52, 0x04, 0x54, 0x78, 0x49, 0x64, 0x22, 0x4f, 0x0a, 0x0b, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74,
|
||
|
0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
|
||
|
0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74,
|
||
|
0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a,
|
||
|
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
|
||
|
0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x69, 0x0a, 0x0e, 0x57, 0x61, 0x6c, 0x6c, 0x65,
|
||
|
0x74, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
|
||
|
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x29, 0x0a,
|
||
|
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x77, 0x61,
|
||
|
0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x4b, 0x65,
|
||
|
0x79, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
|
||
|
0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
|
||
|
0x67, 0x65, 0x22, 0x2e, 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
||
|
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
||
|
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
||
|
0x75, 0x65, 0x22, 0x54, 0x0a, 0x10, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x50, 0x4b, 0x65, 0x79,
|
||
|
0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
|
||
|
0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18,
|
||
|
0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||
|
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x95, 0x07, 0x0a, 0x06, 0x57, 0x61, 0x6c,
|
||
|
0x6c, 0x65, 0x74, 0x12, 0x7c, 0x0a, 0x0f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41,
|
||
|
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x27, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53,
|
||
|
0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
|
||
|
0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
||
|
0x1c, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76,
|
||
|
0x31, 0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82,
|
||
|
0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x3a, 0x01, 0x2a, 0x22, 0x17, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65,
|
||
|
0x74, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
|
||
|
0x73, 0x12, 0x89, 0x01, 0x0a, 0x12, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54,
|
||
|
0x72, 0x63, 0x32, 0x30, 0x47, 0x72, 0x70, 0x63, 0x12, 0x26, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65,
|
||
|
0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61,
|
||
|
0x74, 0x75, 0x72, 0x65, 0x54, 0x72, 0x63, 0x32, 0x30, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||
|
0x1a, 0x24, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e,
|
||
|
0x76, 0x31, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x72, 0x63, 0x32,
|
||
|
0x30, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01,
|
||
|
0x2a, 0x22, 0x1a, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61,
|
||
|
0x74, 0x75, 0x72, 0x65, 0x54, 0x72, 0x63, 0x32, 0x30, 0x47, 0x72, 0x70, 0x63, 0x12, 0x6c, 0x0a,
|
||
|
0x0d, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1e,
|
||
|
0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31,
|
||
|
0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c,
|
||
|
0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31,
|
||
|
0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3,
|
||
|
0xe4, 0x93, 0x02, 0x17, 0x3a, 0x01, 0x2a, 0x22, 0x12, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74,
|
||
|
0x2f, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x89, 0x01, 0x0a, 0x1a,
|
||
|
0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x41, 0x6e, 0x64,
|
||
|
0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x1e, 0x2e, 0x77, 0x61, 0x6c,
|
||
|
0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x6c,
|
||
|
0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x77, 0x61, 0x6c,
|
||
|
0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x6c,
|
||
|
0x6c, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4,
|
||
|
0x93, 0x02, 0x24, 0x3a, 0x01, 0x2a, 0x22, 0x1f, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x2f,
|
||
|
0x61, 0x6c, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x41, 0x6e, 0x64, 0x50, 0x72, 0x69,
|
||
|
0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x93, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50,
|
||
|
0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x42, 0x79, 0x41, 0x64, 0x64, 0x72, 0x65,
|
||
|
0x73, 0x73, 0x12, 0x2e, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65,
|
||
|
0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b,
|
||
|
0x65, 0x79, 0x42, 0x79, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
||
|
0x73, 0x74, 0x1a, 0x21, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65,
|
||
|
0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x50, 0x4b, 0x65, 0x79, 0x73,
|
||
|
0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a,
|
||
|
0x22, 0x1b, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74,
|
||
|
0x65, 0x4b, 0x65, 0x79, 0x42, 0x79, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x72, 0x0a,
|
||
|
0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1e,
|
||
|
0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31,
|
||
|
0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c,
|
||
|
0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31,
|
||
|
0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3,
|
||
|
0xe4, 0x93, 0x02, 0x1d, 0x3a, 0x01, 0x2a, 0x22, 0x18, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74,
|
||
|
0x2f, 0x61, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
|
||
|
0x73, 0x12, 0x7d, 0x0a, 0x0d, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f,
|
||
|
0x76, 0x65, 0x12, 0x25, 0x2e, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65,
|
||
|
0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f,
|
||
|
0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x77, 0x61, 0x6c, 0x6c,
|
||
|
0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x61, 0x6c, 0x6c,
|
||
|
0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20,
|
||
|
0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x3a, 0x01, 0x2a, 0x22, 0x15, 0x2f, 0x77, 0x61, 0x6c, 0x6c,
|
||
|
0x65, 0x74, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65,
|
||
|
0x42, 0x26, 0x5a, 0x24, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65,
|
||
|
0x6d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x61, 0x6c, 0x6c, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74,
|
||
|
0x65, 0x6d, 0x2f, 0x76, 0x31, 0x3b, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
file_walletSystem_v1_wallet_proto_rawDescOnce sync.Once
|
||
|
file_walletSystem_v1_wallet_proto_rawDescData = file_walletSystem_v1_wallet_proto_rawDesc
|
||
|
)
|
||
|
|
||
|
func file_walletSystem_v1_wallet_proto_rawDescGZIP() []byte {
|
||
|
file_walletSystem_v1_wallet_proto_rawDescOnce.Do(func() {
|
||
|
file_walletSystem_v1_wallet_proto_rawDescData = protoimpl.X.CompressGZIP(file_walletSystem_v1_wallet_proto_rawDescData)
|
||
|
})
|
||
|
return file_walletSystem_v1_wallet_proto_rawDescData
|
||
|
}
|
||
|
|
||
|
var file_walletSystem_v1_wallet_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
||
|
var file_walletSystem_v1_wallet_proto_goTypes = []any{
|
||
|
(*WalletApproveRequest)(nil), // 0: walletSystem.v1.WalletApproveRequest
|
||
|
(*WalletApproveReply)(nil), // 1: walletSystem.v1.WalletApproveReply
|
||
|
(*WalletRequest)(nil), // 2: walletSystem.v1.WalletRequest
|
||
|
(*GetPrivateKeyByAddressRequest)(nil), // 3: walletSystem.v1.GetPrivateKeyByAddressRequest
|
||
|
(*GenerateAddressRequest)(nil), // 4: walletSystem.v1.GenerateAddressRequest
|
||
|
(*SignatureTrc20Request)(nil), // 5: walletSystem.v1.SignatureTrc20Request
|
||
|
(*SignatureTrc20Reply)(nil), // 6: walletSystem.v1.SignatureTrc20Reply
|
||
|
(*Data)(nil), // 7: walletSystem.v1.Data
|
||
|
(*WalletReply)(nil), // 8: walletSystem.v1.WalletReply
|
||
|
(*WalletKeyReply)(nil), // 9: walletSystem.v1.WalletKeyReply
|
||
|
(*Keys)(nil), // 10: walletSystem.v1.Keys
|
||
|
(*WalletPKeysReply)(nil), // 11: walletSystem.v1.WalletPKeysReply
|
||
|
}
|
||
|
var file_walletSystem_v1_wallet_proto_depIdxs = []int32{
|
||
|
7, // 0: walletSystem.v1.SignatureTrc20Reply.data:type_name -> walletSystem.v1.Data
|
||
|
10, // 1: walletSystem.v1.WalletKeyReply.data:type_name -> walletSystem.v1.Keys
|
||
|
4, // 2: walletSystem.v1.Wallet.GenerateAddress:input_type -> walletSystem.v1.GenerateAddressRequest
|
||
|
5, // 3: walletSystem.v1.Wallet.SignatureTrc20Grpc:input_type -> walletSystem.v1.SignatureTrc20Request
|
||
|
2, // 4: walletSystem.v1.Wallet.GetAllAddress:input_type -> walletSystem.v1.WalletRequest
|
||
|
2, // 5: walletSystem.v1.Wallet.GetAllAddressAndPrivateKey:input_type -> walletSystem.v1.WalletRequest
|
||
|
3, // 6: walletSystem.v1.Wallet.GetPrivateKeyByAddress:input_type -> walletSystem.v1.GetPrivateKeyByAddressRequest
|
||
|
2, // 7: walletSystem.v1.Wallet.DeleteAddress:input_type -> walletSystem.v1.WalletRequest
|
||
|
0, // 8: walletSystem.v1.Wallet.WalletApprove:input_type -> walletSystem.v1.WalletApproveRequest
|
||
|
8, // 9: walletSystem.v1.Wallet.GenerateAddress:output_type -> walletSystem.v1.WalletReply
|
||
|
6, // 10: walletSystem.v1.Wallet.SignatureTrc20Grpc:output_type -> walletSystem.v1.SignatureTrc20Reply
|
||
|
8, // 11: walletSystem.v1.Wallet.GetAllAddress:output_type -> walletSystem.v1.WalletReply
|
||
|
9, // 12: walletSystem.v1.Wallet.GetAllAddressAndPrivateKey:output_type -> walletSystem.v1.WalletKeyReply
|
||
|
11, // 13: walletSystem.v1.Wallet.GetPrivateKeyByAddress:output_type -> walletSystem.v1.WalletPKeysReply
|
||
|
8, // 14: walletSystem.v1.Wallet.DeleteAddress:output_type -> walletSystem.v1.WalletReply
|
||
|
1, // 15: walletSystem.v1.Wallet.WalletApprove:output_type -> walletSystem.v1.WalletApproveReply
|
||
|
9, // [9:16] is the sub-list for method output_type
|
||
|
2, // [2:9] is the sub-list for method input_type
|
||
|
2, // [2:2] is the sub-list for extension type_name
|
||
|
2, // [2:2] is the sub-list for extension extendee
|
||
|
0, // [0:2] is the sub-list for field type_name
|
||
|
}
|
||
|
|
||
|
func init() { file_walletSystem_v1_wallet_proto_init() }
|
||
|
func file_walletSystem_v1_wallet_proto_init() {
|
||
|
if File_walletSystem_v1_wallet_proto != nil {
|
||
|
return
|
||
|
}
|
||
|
if !protoimpl.UnsafeEnabled {
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[0].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletApproveRequest); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[1].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletApproveReply); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[2].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletRequest); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[3].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*GetPrivateKeyByAddressRequest); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[4].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*GenerateAddressRequest); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[5].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*SignatureTrc20Request); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[6].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*SignatureTrc20Reply); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[7].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*Data); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[8].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletReply); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[9].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletKeyReply); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[10].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*Keys); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_walletSystem_v1_wallet_proto_msgTypes[11].Exporter = func(v any, i int) any {
|
||
|
switch v := v.(*WalletPKeysReply); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
type x struct{}
|
||
|
out := protoimpl.TypeBuilder{
|
||
|
File: protoimpl.DescBuilder{
|
||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
|
RawDescriptor: file_walletSystem_v1_wallet_proto_rawDesc,
|
||
|
NumEnums: 0,
|
||
|
NumMessages: 12,
|
||
|
NumExtensions: 0,
|
||
|
NumServices: 1,
|
||
|
},
|
||
|
GoTypes: file_walletSystem_v1_wallet_proto_goTypes,
|
||
|
DependencyIndexes: file_walletSystem_v1_wallet_proto_depIdxs,
|
||
|
MessageInfos: file_walletSystem_v1_wallet_proto_msgTypes,
|
||
|
}.Build()
|
||
|
File_walletSystem_v1_wallet_proto = out.File
|
||
|
file_walletSystem_v1_wallet_proto_rawDesc = nil
|
||
|
file_walletSystem_v1_wallet_proto_goTypes = nil
|
||
|
file_walletSystem_v1_wallet_proto_depIdxs = nil
|
||
|
}
|