421 lines
16 KiB
Go
421 lines
16 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.29.1
|
|
// protoc v3.20.3
|
|
// source: community_token.proto
|
|
|
|
package protobuf
|
|
|
|
import (
|
|
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 CommunityToken_DeployState int32
|
|
|
|
const (
|
|
CommunityToken_UNKNOWN CommunityToken_DeployState = 0
|
|
CommunityToken_FAILED CommunityToken_DeployState = 1
|
|
CommunityToken_IN_PROGRESS CommunityToken_DeployState = 2
|
|
CommunityToken_DEPLOYED CommunityToken_DeployState = 3
|
|
)
|
|
|
|
// Enum value maps for CommunityToken_DeployState.
|
|
var (
|
|
CommunityToken_DeployState_name = map[int32]string{
|
|
0: "UNKNOWN",
|
|
1: "FAILED",
|
|
2: "IN_PROGRESS",
|
|
3: "DEPLOYED",
|
|
}
|
|
CommunityToken_DeployState_value = map[string]int32{
|
|
"UNKNOWN": 0,
|
|
"FAILED": 1,
|
|
"IN_PROGRESS": 2,
|
|
"DEPLOYED": 3,
|
|
}
|
|
)
|
|
|
|
func (x CommunityToken_DeployState) Enum() *CommunityToken_DeployState {
|
|
p := new(CommunityToken_DeployState)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x CommunityToken_DeployState) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (CommunityToken_DeployState) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_community_token_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (CommunityToken_DeployState) Type() protoreflect.EnumType {
|
|
return &file_community_token_proto_enumTypes[0]
|
|
}
|
|
|
|
func (x CommunityToken_DeployState) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use CommunityToken_DeployState.Descriptor instead.
|
|
func (CommunityToken_DeployState) EnumDescriptor() ([]byte, []int) {
|
|
return file_community_token_proto_rawDescGZIP(), []int{0, 0}
|
|
}
|
|
|
|
type CommunityToken_PrivilegesLevel int32
|
|
|
|
const (
|
|
CommunityToken_OWNER_LEVEL CommunityToken_PrivilegesLevel = 0
|
|
CommunityToken_MASTER_LEVEL CommunityToken_PrivilegesLevel = 1
|
|
CommunityToken_COMMUNITY_LEVEL CommunityToken_PrivilegesLevel = 2
|
|
)
|
|
|
|
// Enum value maps for CommunityToken_PrivilegesLevel.
|
|
var (
|
|
CommunityToken_PrivilegesLevel_name = map[int32]string{
|
|
0: "OWNER_LEVEL",
|
|
1: "MASTER_LEVEL",
|
|
2: "COMMUNITY_LEVEL",
|
|
}
|
|
CommunityToken_PrivilegesLevel_value = map[string]int32{
|
|
"OWNER_LEVEL": 0,
|
|
"MASTER_LEVEL": 1,
|
|
"COMMUNITY_LEVEL": 2,
|
|
}
|
|
)
|
|
|
|
func (x CommunityToken_PrivilegesLevel) Enum() *CommunityToken_PrivilegesLevel {
|
|
p := new(CommunityToken_PrivilegesLevel)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x CommunityToken_PrivilegesLevel) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (CommunityToken_PrivilegesLevel) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_community_token_proto_enumTypes[1].Descriptor()
|
|
}
|
|
|
|
func (CommunityToken_PrivilegesLevel) Type() protoreflect.EnumType {
|
|
return &file_community_token_proto_enumTypes[1]
|
|
}
|
|
|
|
func (x CommunityToken_PrivilegesLevel) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use CommunityToken_PrivilegesLevel.Descriptor instead.
|
|
func (CommunityToken_PrivilegesLevel) EnumDescriptor() ([]byte, []int) {
|
|
return file_community_token_proto_rawDescGZIP(), []int{0, 1}
|
|
}
|
|
|
|
type CommunityToken struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
TokenType CommunityTokenType `protobuf:"varint,1,opt,name=token_type,json=tokenType,proto3,enum=protobuf.CommunityTokenType" json:"token_type,omitempty"`
|
|
CommunityId string `protobuf:"bytes,2,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
|
|
Address string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
|
|
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
|
|
Symbol string `protobuf:"bytes,5,opt,name=symbol,proto3" json:"symbol,omitempty"`
|
|
Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
|
|
Supply string `protobuf:"bytes,7,opt,name=supply,proto3" json:"supply,omitempty"`
|
|
InfiniteSupply bool `protobuf:"varint,8,opt,name=infinite_supply,json=infiniteSupply,proto3" json:"infinite_supply,omitempty"`
|
|
Transferable bool `protobuf:"varint,9,opt,name=transferable,proto3" json:"transferable,omitempty"`
|
|
RemoteSelfDestruct bool `protobuf:"varint,10,opt,name=remote_self_destruct,json=remoteSelfDestruct,proto3" json:"remote_self_destruct,omitempty"`
|
|
ChainId int32 `protobuf:"varint,11,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
|
|
DeployState CommunityToken_DeployState `protobuf:"varint,12,opt,name=deploy_state,json=deployState,proto3,enum=protobuf.CommunityToken_DeployState" json:"deploy_state,omitempty"`
|
|
Base64Image string `protobuf:"bytes,13,opt,name=base64_image,json=base64Image,proto3" json:"base64_image,omitempty"`
|
|
Decimals int32 `protobuf:"varint,14,opt,name=decimals,proto3" json:"decimals,omitempty"`
|
|
Deployer string `protobuf:"bytes,15,opt,name=deployer,proto3" json:"deployer,omitempty"`
|
|
PrivilegesLevel CommunityToken_PrivilegesLevel `protobuf:"varint,16,opt,name=privileges_level,json=privilegesLevel,proto3,enum=protobuf.CommunityToken_PrivilegesLevel" json:"privileges_level,omitempty"`
|
|
}
|
|
|
|
func (x *CommunityToken) Reset() {
|
|
*x = CommunityToken{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_community_token_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *CommunityToken) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CommunityToken) ProtoMessage() {}
|
|
|
|
func (x *CommunityToken) ProtoReflect() protoreflect.Message {
|
|
mi := &file_community_token_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 CommunityToken.ProtoReflect.Descriptor instead.
|
|
func (*CommunityToken) Descriptor() ([]byte, []int) {
|
|
return file_community_token_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *CommunityToken) GetTokenType() CommunityTokenType {
|
|
if x != nil {
|
|
return x.TokenType
|
|
}
|
|
return CommunityTokenType_UNKNOWN_TOKEN_TYPE
|
|
}
|
|
|
|
func (x *CommunityToken) GetCommunityId() string {
|
|
if x != nil {
|
|
return x.CommunityId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetAddress() string {
|
|
if x != nil {
|
|
return x.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetSymbol() string {
|
|
if x != nil {
|
|
return x.Symbol
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetSupply() string {
|
|
if x != nil {
|
|
return x.Supply
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetInfiniteSupply() bool {
|
|
if x != nil {
|
|
return x.InfiniteSupply
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *CommunityToken) GetTransferable() bool {
|
|
if x != nil {
|
|
return x.Transferable
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *CommunityToken) GetRemoteSelfDestruct() bool {
|
|
if x != nil {
|
|
return x.RemoteSelfDestruct
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *CommunityToken) GetChainId() int32 {
|
|
if x != nil {
|
|
return x.ChainId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *CommunityToken) GetDeployState() CommunityToken_DeployState {
|
|
if x != nil {
|
|
return x.DeployState
|
|
}
|
|
return CommunityToken_UNKNOWN
|
|
}
|
|
|
|
func (x *CommunityToken) GetBase64Image() string {
|
|
if x != nil {
|
|
return x.Base64Image
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetDecimals() int32 {
|
|
if x != nil {
|
|
return x.Decimals
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *CommunityToken) GetDeployer() string {
|
|
if x != nil {
|
|
return x.Deployer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *CommunityToken) GetPrivilegesLevel() CommunityToken_PrivilegesLevel {
|
|
if x != nil {
|
|
return x.PrivilegesLevel
|
|
}
|
|
return CommunityToken_OWNER_LEVEL
|
|
}
|
|
|
|
var File_community_token_proto protoreflect.FileDescriptor
|
|
|
|
var file_community_token_proto_rawDesc = []byte{
|
|
0x0a, 0x15, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x6f, 0x6b, 0x65,
|
|
0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
|
0x66, 0x1a, 0x0b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x95,
|
|
0x06, 0x0a, 0x0e, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x54, 0x6f, 0x6b, 0x65,
|
|
0x6e, 0x12, 0x3b, 0x0a, 0x0a, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
|
|
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54,
|
|
0x79, 0x70, 0x65, 0x52, 0x09, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x21,
|
|
0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x49,
|
|
0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e,
|
|
0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
|
|
0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
|
|
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
|
|
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x70,
|
|
0x70, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x75, 0x70, 0x70, 0x6c,
|
|
0x79, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x65, 0x5f, 0x73, 0x75,
|
|
0x70, 0x70, 0x6c, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x6e, 0x66, 0x69,
|
|
0x6e, 0x69, 0x74, 0x65, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x74, 0x72,
|
|
0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08,
|
|
0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x30,
|
|
0x0a, 0x14, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x64, 0x65,
|
|
0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x72, 0x65,
|
|
0x6d, 0x6f, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x66, 0x44, 0x65, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74,
|
|
0x12, 0x19, 0x0a, 0x08, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01,
|
|
0x28, 0x05, 0x52, 0x07, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x47, 0x0a, 0x0c, 0x64,
|
|
0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
|
|
0x0e, 0x32, 0x24, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x6f, 0x6d,
|
|
0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2e, 0x44, 0x65, 0x70, 0x6c,
|
|
0x6f, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x53,
|
|
0x74, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x73, 0x65, 0x36, 0x34, 0x5f, 0x69,
|
|
0x6d, 0x61, 0x67, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x73, 0x65,
|
|
0x36, 0x34, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x63, 0x69, 0x6d,
|
|
0x61, 0x6c, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x64, 0x65, 0x63, 0x69, 0x6d,
|
|
0x61, 0x6c, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x72, 0x18,
|
|
0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x72, 0x12,
|
|
0x53, 0x0a, 0x10, 0x70, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x73, 0x5f, 0x6c, 0x65,
|
|
0x76, 0x65, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x54, 0x6f,
|
|
0x6b, 0x65, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x73, 0x4c, 0x65,
|
|
0x76, 0x65, 0x6c, 0x52, 0x0f, 0x70, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x73, 0x4c,
|
|
0x65, 0x76, 0x65, 0x6c, 0x22, 0x45, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x53, 0x74,
|
|
0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00,
|
|
0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b,
|
|
0x49, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x47, 0x52, 0x45, 0x53, 0x53, 0x10, 0x02, 0x12, 0x0c, 0x0a,
|
|
0x08, 0x44, 0x45, 0x50, 0x4c, 0x4f, 0x59, 0x45, 0x44, 0x10, 0x03, 0x22, 0x49, 0x0a, 0x0f, 0x50,
|
|
0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x73, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x0f,
|
|
0x0a, 0x0b, 0x4f, 0x57, 0x4e, 0x45, 0x52, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x10, 0x00, 0x12,
|
|
0x10, 0x0a, 0x0c, 0x4d, 0x41, 0x53, 0x54, 0x45, 0x52, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x10,
|
|
0x01, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x4f, 0x4d, 0x4d, 0x55, 0x4e, 0x49, 0x54, 0x59, 0x5f, 0x4c,
|
|
0x45, 0x56, 0x45, 0x4c, 0x10, 0x02, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f,
|
|
0x74, 0x6f, 0x62, 0x75, 0x66, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_community_token_proto_rawDescOnce sync.Once
|
|
file_community_token_proto_rawDescData = file_community_token_proto_rawDesc
|
|
)
|
|
|
|
func file_community_token_proto_rawDescGZIP() []byte {
|
|
file_community_token_proto_rawDescOnce.Do(func() {
|
|
file_community_token_proto_rawDescData = protoimpl.X.CompressGZIP(file_community_token_proto_rawDescData)
|
|
})
|
|
return file_community_token_proto_rawDescData
|
|
}
|
|
|
|
var file_community_token_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
var file_community_token_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
var file_community_token_proto_goTypes = []interface{}{
|
|
(CommunityToken_DeployState)(0), // 0: protobuf.CommunityToken.DeployState
|
|
(CommunityToken_PrivilegesLevel)(0), // 1: protobuf.CommunityToken.PrivilegesLevel
|
|
(*CommunityToken)(nil), // 2: protobuf.CommunityToken
|
|
(CommunityTokenType)(0), // 3: protobuf.CommunityTokenType
|
|
}
|
|
var file_community_token_proto_depIdxs = []int32{
|
|
3, // 0: protobuf.CommunityToken.token_type:type_name -> protobuf.CommunityTokenType
|
|
0, // 1: protobuf.CommunityToken.deploy_state:type_name -> protobuf.CommunityToken.DeployState
|
|
1, // 2: protobuf.CommunityToken.privileges_level:type_name -> protobuf.CommunityToken.PrivilegesLevel
|
|
3, // [3:3] is the sub-list for method output_type
|
|
3, // [3:3] is the sub-list for method input_type
|
|
3, // [3:3] is the sub-list for extension type_name
|
|
3, // [3:3] is the sub-list for extension extendee
|
|
0, // [0:3] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_community_token_proto_init() }
|
|
func file_community_token_proto_init() {
|
|
if File_community_token_proto != nil {
|
|
return
|
|
}
|
|
file_enums_proto_init()
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_community_token_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*CommunityToken); 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_community_token_proto_rawDesc,
|
|
NumEnums: 2,
|
|
NumMessages: 1,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_community_token_proto_goTypes,
|
|
DependencyIndexes: file_community_token_proto_depIdxs,
|
|
EnumInfos: file_community_token_proto_enumTypes,
|
|
MessageInfos: file_community_token_proto_msgTypes,
|
|
}.Build()
|
|
File_community_token_proto = out.File
|
|
file_community_token_proto_rawDesc = nil
|
|
file_community_token_proto_goTypes = nil
|
|
file_community_token_proto_depIdxs = nil
|
|
}
|