github.com/turingchain2020/turingchain@v1.1.21/types/account.pb.go (about) 1 // Code generated by protoc-gen-go. DO NOT EDIT. 2 // source: account.proto 3 4 package types 5 6 import ( 7 fmt "fmt" 8 math "math" 9 10 proto "github.com/golang/protobuf/proto" 11 ) 12 13 // Reference imports to suppress errors if they are not otherwise used. 14 var _ = proto.Marshal 15 var _ = fmt.Errorf 16 var _ = math.Inf 17 18 // This is a compile-time assertion to ensure that this generated file 19 // is compatible with the proto package it is being compiled against. 20 // A compilation error at this line likely means your copy of the 21 // proto package needs to be updated. 22 const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package 23 24 // Account 的信息 25 type Account struct { 26 // coins标识,目前只有0 一个值 27 Currency int32 `protobuf:"varint,1,opt,name=currency,proto3" json:"currency,omitempty"` 28 //账户可用余额 29 Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance,omitempty"` 30 //账户冻结余额 31 Frozen int64 `protobuf:"varint,3,opt,name=frozen,proto3" json:"frozen,omitempty"` 32 //账户的地址 33 Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"` 34 XXX_NoUnkeyedLiteral struct{} `json:"-"` 35 XXX_unrecognized []byte `json:"-"` 36 XXX_sizecache int32 `json:"-"` 37 } 38 39 func (m *Account) Reset() { *m = Account{} } 40 func (m *Account) String() string { return proto.CompactTextString(m) } 41 func (*Account) ProtoMessage() {} 42 func (*Account) Descriptor() ([]byte, []int) { 43 return fileDescriptor_8e28828dcb8d24f0, []int{0} 44 } 45 46 func (m *Account) XXX_Unmarshal(b []byte) error { 47 return xxx_messageInfo_Account.Unmarshal(m, b) 48 } 49 func (m *Account) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 50 return xxx_messageInfo_Account.Marshal(b, m, deterministic) 51 } 52 func (m *Account) XXX_Merge(src proto.Message) { 53 xxx_messageInfo_Account.Merge(m, src) 54 } 55 func (m *Account) XXX_Size() int { 56 return xxx_messageInfo_Account.Size(m) 57 } 58 func (m *Account) XXX_DiscardUnknown() { 59 xxx_messageInfo_Account.DiscardUnknown(m) 60 } 61 62 var xxx_messageInfo_Account proto.InternalMessageInfo 63 64 func (m *Account) GetCurrency() int32 { 65 if m != nil { 66 return m.Currency 67 } 68 return 0 69 } 70 71 func (m *Account) GetBalance() int64 { 72 if m != nil { 73 return m.Balance 74 } 75 return 0 76 } 77 78 func (m *Account) GetFrozen() int64 { 79 if m != nil { 80 return m.Frozen 81 } 82 return 0 83 } 84 85 func (m *Account) GetAddr() string { 86 if m != nil { 87 return m.Addr 88 } 89 return "" 90 } 91 92 //账户余额改变的一个交易回报(合约内) 93 type ReceiptExecAccountTransfer struct { 94 //合约地址 95 ExecAddr string `protobuf:"bytes,1,opt,name=execAddr,proto3" json:"execAddr,omitempty"` 96 //转移前 97 Prev *Account `protobuf:"bytes,2,opt,name=prev,proto3" json:"prev,omitempty"` 98 //转移后 99 Current *Account `protobuf:"bytes,3,opt,name=current,proto3" json:"current,omitempty"` 100 XXX_NoUnkeyedLiteral struct{} `json:"-"` 101 XXX_unrecognized []byte `json:"-"` 102 XXX_sizecache int32 `json:"-"` 103 } 104 105 func (m *ReceiptExecAccountTransfer) Reset() { *m = ReceiptExecAccountTransfer{} } 106 func (m *ReceiptExecAccountTransfer) String() string { return proto.CompactTextString(m) } 107 func (*ReceiptExecAccountTransfer) ProtoMessage() {} 108 func (*ReceiptExecAccountTransfer) Descriptor() ([]byte, []int) { 109 return fileDescriptor_8e28828dcb8d24f0, []int{1} 110 } 111 112 func (m *ReceiptExecAccountTransfer) XXX_Unmarshal(b []byte) error { 113 return xxx_messageInfo_ReceiptExecAccountTransfer.Unmarshal(m, b) 114 } 115 func (m *ReceiptExecAccountTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 116 return xxx_messageInfo_ReceiptExecAccountTransfer.Marshal(b, m, deterministic) 117 } 118 func (m *ReceiptExecAccountTransfer) XXX_Merge(src proto.Message) { 119 xxx_messageInfo_ReceiptExecAccountTransfer.Merge(m, src) 120 } 121 func (m *ReceiptExecAccountTransfer) XXX_Size() int { 122 return xxx_messageInfo_ReceiptExecAccountTransfer.Size(m) 123 } 124 func (m *ReceiptExecAccountTransfer) XXX_DiscardUnknown() { 125 xxx_messageInfo_ReceiptExecAccountTransfer.DiscardUnknown(m) 126 } 127 128 var xxx_messageInfo_ReceiptExecAccountTransfer proto.InternalMessageInfo 129 130 func (m *ReceiptExecAccountTransfer) GetExecAddr() string { 131 if m != nil { 132 return m.ExecAddr 133 } 134 return "" 135 } 136 137 func (m *ReceiptExecAccountTransfer) GetPrev() *Account { 138 if m != nil { 139 return m.Prev 140 } 141 return nil 142 } 143 144 func (m *ReceiptExecAccountTransfer) GetCurrent() *Account { 145 if m != nil { 146 return m.Current 147 } 148 return nil 149 } 150 151 //账户余额改变的一个交易回报(coins内) 152 type ReceiptAccountTransfer struct { 153 //转移前 154 Prev *Account `protobuf:"bytes,1,opt,name=prev,proto3" json:"prev,omitempty"` 155 //转移后 156 Current *Account `protobuf:"bytes,2,opt,name=current,proto3" json:"current,omitempty"` 157 XXX_NoUnkeyedLiteral struct{} `json:"-"` 158 XXX_unrecognized []byte `json:"-"` 159 XXX_sizecache int32 `json:"-"` 160 } 161 162 func (m *ReceiptAccountTransfer) Reset() { *m = ReceiptAccountTransfer{} } 163 func (m *ReceiptAccountTransfer) String() string { return proto.CompactTextString(m) } 164 func (*ReceiptAccountTransfer) ProtoMessage() {} 165 func (*ReceiptAccountTransfer) Descriptor() ([]byte, []int) { 166 return fileDescriptor_8e28828dcb8d24f0, []int{2} 167 } 168 169 func (m *ReceiptAccountTransfer) XXX_Unmarshal(b []byte) error { 170 return xxx_messageInfo_ReceiptAccountTransfer.Unmarshal(m, b) 171 } 172 func (m *ReceiptAccountTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 173 return xxx_messageInfo_ReceiptAccountTransfer.Marshal(b, m, deterministic) 174 } 175 func (m *ReceiptAccountTransfer) XXX_Merge(src proto.Message) { 176 xxx_messageInfo_ReceiptAccountTransfer.Merge(m, src) 177 } 178 func (m *ReceiptAccountTransfer) XXX_Size() int { 179 return xxx_messageInfo_ReceiptAccountTransfer.Size(m) 180 } 181 func (m *ReceiptAccountTransfer) XXX_DiscardUnknown() { 182 xxx_messageInfo_ReceiptAccountTransfer.DiscardUnknown(m) 183 } 184 185 var xxx_messageInfo_ReceiptAccountTransfer proto.InternalMessageInfo 186 187 func (m *ReceiptAccountTransfer) GetPrev() *Account { 188 if m != nil { 189 return m.Prev 190 } 191 return nil 192 } 193 194 func (m *ReceiptAccountTransfer) GetCurrent() *Account { 195 if m != nil { 196 return m.Current 197 } 198 return nil 199 } 200 201 //铸币账户余额增加 202 type ReceiptAccountMint struct { 203 //铸币前 204 Prev *Account `protobuf:"bytes,1,opt,name=prev,proto3" json:"prev,omitempty"` 205 //铸币后 206 Current *Account `protobuf:"bytes,2,opt,name=current,proto3" json:"current,omitempty"` 207 XXX_NoUnkeyedLiteral struct{} `json:"-"` 208 XXX_unrecognized []byte `json:"-"` 209 XXX_sizecache int32 `json:"-"` 210 } 211 212 func (m *ReceiptAccountMint) Reset() { *m = ReceiptAccountMint{} } 213 func (m *ReceiptAccountMint) String() string { return proto.CompactTextString(m) } 214 func (*ReceiptAccountMint) ProtoMessage() {} 215 func (*ReceiptAccountMint) Descriptor() ([]byte, []int) { 216 return fileDescriptor_8e28828dcb8d24f0, []int{3} 217 } 218 219 func (m *ReceiptAccountMint) XXX_Unmarshal(b []byte) error { 220 return xxx_messageInfo_ReceiptAccountMint.Unmarshal(m, b) 221 } 222 func (m *ReceiptAccountMint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 223 return xxx_messageInfo_ReceiptAccountMint.Marshal(b, m, deterministic) 224 } 225 func (m *ReceiptAccountMint) XXX_Merge(src proto.Message) { 226 xxx_messageInfo_ReceiptAccountMint.Merge(m, src) 227 } 228 func (m *ReceiptAccountMint) XXX_Size() int { 229 return xxx_messageInfo_ReceiptAccountMint.Size(m) 230 } 231 func (m *ReceiptAccountMint) XXX_DiscardUnknown() { 232 xxx_messageInfo_ReceiptAccountMint.DiscardUnknown(m) 233 } 234 235 var xxx_messageInfo_ReceiptAccountMint proto.InternalMessageInfo 236 237 func (m *ReceiptAccountMint) GetPrev() *Account { 238 if m != nil { 239 return m.Prev 240 } 241 return nil 242 } 243 244 func (m *ReceiptAccountMint) GetCurrent() *Account { 245 if m != nil { 246 return m.Current 247 } 248 return nil 249 } 250 251 type ReceiptAccountBurn struct { 252 Prev *Account `protobuf:"bytes,1,opt,name=prev,proto3" json:"prev,omitempty"` 253 Current *Account `protobuf:"bytes,2,opt,name=current,proto3" json:"current,omitempty"` 254 XXX_NoUnkeyedLiteral struct{} `json:"-"` 255 XXX_unrecognized []byte `json:"-"` 256 XXX_sizecache int32 `json:"-"` 257 } 258 259 func (m *ReceiptAccountBurn) Reset() { *m = ReceiptAccountBurn{} } 260 func (m *ReceiptAccountBurn) String() string { return proto.CompactTextString(m) } 261 func (*ReceiptAccountBurn) ProtoMessage() {} 262 func (*ReceiptAccountBurn) Descriptor() ([]byte, []int) { 263 return fileDescriptor_8e28828dcb8d24f0, []int{4} 264 } 265 266 func (m *ReceiptAccountBurn) XXX_Unmarshal(b []byte) error { 267 return xxx_messageInfo_ReceiptAccountBurn.Unmarshal(m, b) 268 } 269 func (m *ReceiptAccountBurn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 270 return xxx_messageInfo_ReceiptAccountBurn.Marshal(b, m, deterministic) 271 } 272 func (m *ReceiptAccountBurn) XXX_Merge(src proto.Message) { 273 xxx_messageInfo_ReceiptAccountBurn.Merge(m, src) 274 } 275 func (m *ReceiptAccountBurn) XXX_Size() int { 276 return xxx_messageInfo_ReceiptAccountBurn.Size(m) 277 } 278 func (m *ReceiptAccountBurn) XXX_DiscardUnknown() { 279 xxx_messageInfo_ReceiptAccountBurn.DiscardUnknown(m) 280 } 281 282 var xxx_messageInfo_ReceiptAccountBurn proto.InternalMessageInfo 283 284 func (m *ReceiptAccountBurn) GetPrev() *Account { 285 if m != nil { 286 return m.Prev 287 } 288 return nil 289 } 290 291 func (m *ReceiptAccountBurn) GetCurrent() *Account { 292 if m != nil { 293 return m.Current 294 } 295 return nil 296 } 297 298 //查询一个地址列表在某个执行器中余额 299 type ReqBalance struct { 300 //地址列表 301 Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` 302 //执行器名称 303 Execer string `protobuf:"bytes,2,opt,name=execer,proto3" json:"execer,omitempty"` 304 StateHash string `protobuf:"bytes,3,opt,name=stateHash,proto3" json:"stateHash,omitempty"` 305 AssetExec string `protobuf:"bytes,4,opt,name=asset_exec,json=assetExec,proto3" json:"asset_exec,omitempty"` 306 AssetSymbol string `protobuf:"bytes,5,opt,name=asset_symbol,json=assetSymbol,proto3" json:"asset_symbol,omitempty"` 307 XXX_NoUnkeyedLiteral struct{} `json:"-"` 308 XXX_unrecognized []byte `json:"-"` 309 XXX_sizecache int32 `json:"-"` 310 } 311 312 func (m *ReqBalance) Reset() { *m = ReqBalance{} } 313 func (m *ReqBalance) String() string { return proto.CompactTextString(m) } 314 func (*ReqBalance) ProtoMessage() {} 315 func (*ReqBalance) Descriptor() ([]byte, []int) { 316 return fileDescriptor_8e28828dcb8d24f0, []int{5} 317 } 318 319 func (m *ReqBalance) XXX_Unmarshal(b []byte) error { 320 return xxx_messageInfo_ReqBalance.Unmarshal(m, b) 321 } 322 func (m *ReqBalance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 323 return xxx_messageInfo_ReqBalance.Marshal(b, m, deterministic) 324 } 325 func (m *ReqBalance) XXX_Merge(src proto.Message) { 326 xxx_messageInfo_ReqBalance.Merge(m, src) 327 } 328 func (m *ReqBalance) XXX_Size() int { 329 return xxx_messageInfo_ReqBalance.Size(m) 330 } 331 func (m *ReqBalance) XXX_DiscardUnknown() { 332 xxx_messageInfo_ReqBalance.DiscardUnknown(m) 333 } 334 335 var xxx_messageInfo_ReqBalance proto.InternalMessageInfo 336 337 func (m *ReqBalance) GetAddresses() []string { 338 if m != nil { 339 return m.Addresses 340 } 341 return nil 342 } 343 344 func (m *ReqBalance) GetExecer() string { 345 if m != nil { 346 return m.Execer 347 } 348 return "" 349 } 350 351 func (m *ReqBalance) GetStateHash() string { 352 if m != nil { 353 return m.StateHash 354 } 355 return "" 356 } 357 358 func (m *ReqBalance) GetAssetExec() string { 359 if m != nil { 360 return m.AssetExec 361 } 362 return "" 363 } 364 365 func (m *ReqBalance) GetAssetSymbol() string { 366 if m != nil { 367 return m.AssetSymbol 368 } 369 return "" 370 } 371 372 // Account 的列表 373 type Accounts struct { 374 Acc []*Account `protobuf:"bytes,1,rep,name=acc,proto3" json:"acc,omitempty"` 375 XXX_NoUnkeyedLiteral struct{} `json:"-"` 376 XXX_unrecognized []byte `json:"-"` 377 XXX_sizecache int32 `json:"-"` 378 } 379 380 func (m *Accounts) Reset() { *m = Accounts{} } 381 func (m *Accounts) String() string { return proto.CompactTextString(m) } 382 func (*Accounts) ProtoMessage() {} 383 func (*Accounts) Descriptor() ([]byte, []int) { 384 return fileDescriptor_8e28828dcb8d24f0, []int{6} 385 } 386 387 func (m *Accounts) XXX_Unmarshal(b []byte) error { 388 return xxx_messageInfo_Accounts.Unmarshal(m, b) 389 } 390 func (m *Accounts) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 391 return xxx_messageInfo_Accounts.Marshal(b, m, deterministic) 392 } 393 func (m *Accounts) XXX_Merge(src proto.Message) { 394 xxx_messageInfo_Accounts.Merge(m, src) 395 } 396 func (m *Accounts) XXX_Size() int { 397 return xxx_messageInfo_Accounts.Size(m) 398 } 399 func (m *Accounts) XXX_DiscardUnknown() { 400 xxx_messageInfo_Accounts.DiscardUnknown(m) 401 } 402 403 var xxx_messageInfo_Accounts proto.InternalMessageInfo 404 405 func (m *Accounts) GetAcc() []*Account { 406 if m != nil { 407 return m.Acc 408 } 409 return nil 410 } 411 412 type ExecAccount struct { 413 Execer string `protobuf:"bytes,1,opt,name=execer,proto3" json:"execer,omitempty"` 414 Account *Account `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"` 415 XXX_NoUnkeyedLiteral struct{} `json:"-"` 416 XXX_unrecognized []byte `json:"-"` 417 XXX_sizecache int32 `json:"-"` 418 } 419 420 func (m *ExecAccount) Reset() { *m = ExecAccount{} } 421 func (m *ExecAccount) String() string { return proto.CompactTextString(m) } 422 func (*ExecAccount) ProtoMessage() {} 423 func (*ExecAccount) Descriptor() ([]byte, []int) { 424 return fileDescriptor_8e28828dcb8d24f0, []int{7} 425 } 426 427 func (m *ExecAccount) XXX_Unmarshal(b []byte) error { 428 return xxx_messageInfo_ExecAccount.Unmarshal(m, b) 429 } 430 func (m *ExecAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 431 return xxx_messageInfo_ExecAccount.Marshal(b, m, deterministic) 432 } 433 func (m *ExecAccount) XXX_Merge(src proto.Message) { 434 xxx_messageInfo_ExecAccount.Merge(m, src) 435 } 436 func (m *ExecAccount) XXX_Size() int { 437 return xxx_messageInfo_ExecAccount.Size(m) 438 } 439 func (m *ExecAccount) XXX_DiscardUnknown() { 440 xxx_messageInfo_ExecAccount.DiscardUnknown(m) 441 } 442 443 var xxx_messageInfo_ExecAccount proto.InternalMessageInfo 444 445 func (m *ExecAccount) GetExecer() string { 446 if m != nil { 447 return m.Execer 448 } 449 return "" 450 } 451 452 func (m *ExecAccount) GetAccount() *Account { 453 if m != nil { 454 return m.Account 455 } 456 return nil 457 } 458 459 type AllExecBalance struct { 460 Addr string `protobuf:"bytes,1,opt,name=addr,proto3" json:"addr,omitempty"` 461 ExecAccount []*ExecAccount `protobuf:"bytes,2,rep,name=ExecAccount,proto3" json:"ExecAccount,omitempty"` 462 XXX_NoUnkeyedLiteral struct{} `json:"-"` 463 XXX_unrecognized []byte `json:"-"` 464 XXX_sizecache int32 `json:"-"` 465 } 466 467 func (m *AllExecBalance) Reset() { *m = AllExecBalance{} } 468 func (m *AllExecBalance) String() string { return proto.CompactTextString(m) } 469 func (*AllExecBalance) ProtoMessage() {} 470 func (*AllExecBalance) Descriptor() ([]byte, []int) { 471 return fileDescriptor_8e28828dcb8d24f0, []int{8} 472 } 473 474 func (m *AllExecBalance) XXX_Unmarshal(b []byte) error { 475 return xxx_messageInfo_AllExecBalance.Unmarshal(m, b) 476 } 477 func (m *AllExecBalance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 478 return xxx_messageInfo_AllExecBalance.Marshal(b, m, deterministic) 479 } 480 func (m *AllExecBalance) XXX_Merge(src proto.Message) { 481 xxx_messageInfo_AllExecBalance.Merge(m, src) 482 } 483 func (m *AllExecBalance) XXX_Size() int { 484 return xxx_messageInfo_AllExecBalance.Size(m) 485 } 486 func (m *AllExecBalance) XXX_DiscardUnknown() { 487 xxx_messageInfo_AllExecBalance.DiscardUnknown(m) 488 } 489 490 var xxx_messageInfo_AllExecBalance proto.InternalMessageInfo 491 492 func (m *AllExecBalance) GetAddr() string { 493 if m != nil { 494 return m.Addr 495 } 496 return "" 497 } 498 499 func (m *AllExecBalance) GetExecAccount() []*ExecAccount { 500 if m != nil { 501 return m.ExecAccount 502 } 503 return nil 504 } 505 506 type ReqAllExecBalance struct { 507 //地址列表 508 Addr string `protobuf:"bytes,1,opt,name=addr,proto3" json:"addr,omitempty"` 509 //执行器名称 510 Execer string `protobuf:"bytes,2,opt,name=execer,proto3" json:"execer,omitempty"` 511 StateHash string `protobuf:"bytes,3,opt,name=stateHash,proto3" json:"stateHash,omitempty"` 512 AssetExec string `protobuf:"bytes,4,opt,name=asset_exec,json=assetExec,proto3" json:"asset_exec,omitempty"` 513 AssetSymbol string `protobuf:"bytes,5,opt,name=asset_symbol,json=assetSymbol,proto3" json:"asset_symbol,omitempty"` 514 XXX_NoUnkeyedLiteral struct{} `json:"-"` 515 XXX_unrecognized []byte `json:"-"` 516 XXX_sizecache int32 `json:"-"` 517 } 518 519 func (m *ReqAllExecBalance) Reset() { *m = ReqAllExecBalance{} } 520 func (m *ReqAllExecBalance) String() string { return proto.CompactTextString(m) } 521 func (*ReqAllExecBalance) ProtoMessage() {} 522 func (*ReqAllExecBalance) Descriptor() ([]byte, []int) { 523 return fileDescriptor_8e28828dcb8d24f0, []int{9} 524 } 525 526 func (m *ReqAllExecBalance) XXX_Unmarshal(b []byte) error { 527 return xxx_messageInfo_ReqAllExecBalance.Unmarshal(m, b) 528 } 529 func (m *ReqAllExecBalance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { 530 return xxx_messageInfo_ReqAllExecBalance.Marshal(b, m, deterministic) 531 } 532 func (m *ReqAllExecBalance) XXX_Merge(src proto.Message) { 533 xxx_messageInfo_ReqAllExecBalance.Merge(m, src) 534 } 535 func (m *ReqAllExecBalance) XXX_Size() int { 536 return xxx_messageInfo_ReqAllExecBalance.Size(m) 537 } 538 func (m *ReqAllExecBalance) XXX_DiscardUnknown() { 539 xxx_messageInfo_ReqAllExecBalance.DiscardUnknown(m) 540 } 541 542 var xxx_messageInfo_ReqAllExecBalance proto.InternalMessageInfo 543 544 func (m *ReqAllExecBalance) GetAddr() string { 545 if m != nil { 546 return m.Addr 547 } 548 return "" 549 } 550 551 func (m *ReqAllExecBalance) GetExecer() string { 552 if m != nil { 553 return m.Execer 554 } 555 return "" 556 } 557 558 func (m *ReqAllExecBalance) GetStateHash() string { 559 if m != nil { 560 return m.StateHash 561 } 562 return "" 563 } 564 565 func (m *ReqAllExecBalance) GetAssetExec() string { 566 if m != nil { 567 return m.AssetExec 568 } 569 return "" 570 } 571 572 func (m *ReqAllExecBalance) GetAssetSymbol() string { 573 if m != nil { 574 return m.AssetSymbol 575 } 576 return "" 577 } 578 579 func init() { 580 proto.RegisterType((*Account)(nil), "types.Account") 581 proto.RegisterType((*ReceiptExecAccountTransfer)(nil), "types.ReceiptExecAccountTransfer") 582 proto.RegisterType((*ReceiptAccountTransfer)(nil), "types.ReceiptAccountTransfer") 583 proto.RegisterType((*ReceiptAccountMint)(nil), "types.ReceiptAccountMint") 584 proto.RegisterType((*ReceiptAccountBurn)(nil), "types.ReceiptAccountBurn") 585 proto.RegisterType((*ReqBalance)(nil), "types.ReqBalance") 586 proto.RegisterType((*Accounts)(nil), "types.Accounts") 587 proto.RegisterType((*ExecAccount)(nil), "types.ExecAccount") 588 proto.RegisterType((*AllExecBalance)(nil), "types.AllExecBalance") 589 proto.RegisterType((*ReqAllExecBalance)(nil), "types.ReqAllExecBalance") 590 } 591 592 func init() { 593 proto.RegisterFile("account.proto", fileDescriptor_8e28828dcb8d24f0) 594 } 595 596 var fileDescriptor_8e28828dcb8d24f0 = []byte{ 597 // 434 bytes of a gzipped FileDescriptorProto 598 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x54, 0xcd, 0x6e, 0x13, 0x31, 599 0x10, 0x96, 0xf3, 0xd3, 0x74, 0x27, 0x50, 0x09, 0x1f, 0x2a, 0xab, 0xa2, 0x62, 0xf1, 0x69, 0x0f, 600 0x28, 0x91, 0x58, 0x5e, 0xa0, 0x91, 0x90, 0xb8, 0x20, 0x24, 0xc3, 0xa9, 0x17, 0xe4, 0x75, 0x27, 601 0x24, 0x22, 0xf5, 0x6e, 0x6d, 0x2f, 0x22, 0x3c, 0x00, 0xaf, 0x81, 0xc4, 0x93, 0x22, 0x4f, 0xbc, 602 0xcd, 0x86, 0x0a, 0xd4, 0x03, 0xa8, 0xb7, 0x9d, 0xef, 0x1b, 0xcf, 0xf7, 0xd9, 0x33, 0xb3, 0xf0, 603 0x58, 0x1b, 0x53, 0xb7, 0x36, 0xcc, 0x1a, 0x57, 0x87, 0x9a, 0x8f, 0xc3, 0xb6, 0x41, 0x2f, 0x3f, 604 0xc3, 0xe4, 0x62, 0x87, 0xf3, 0x33, 0x38, 0x36, 0xad, 0x73, 0x68, 0xcd, 0x56, 0xb0, 0x9c, 0x15, 605 0x63, 0x75, 0x1b, 0x73, 0x01, 0x93, 0x4a, 0x6f, 0xb4, 0x35, 0x28, 0x06, 0x39, 0x2b, 0x86, 0xaa, 606 0x0b, 0xf9, 0x29, 0x1c, 0x2d, 0x5d, 0xfd, 0x0d, 0xad, 0x18, 0x12, 0x91, 0x22, 0xce, 0x61, 0xa4, 607 0xaf, 0xae, 0x9c, 0x18, 0xe5, 0xac, 0xc8, 0x14, 0x7d, 0xcb, 0xef, 0x0c, 0xce, 0x14, 0x1a, 0x5c, 608 0x37, 0xe1, 0xf5, 0x57, 0x34, 0x49, 0xf8, 0x83, 0xd3, 0xd6, 0x2f, 0xd1, 0x45, 0x03, 0x18, 0xe1, 609 0x78, 0x8c, 0xd1, 0xb1, 0xdb, 0x98, 0x4b, 0x18, 0x35, 0x0e, 0xbf, 0x90, 0xfa, 0xf4, 0xe5, 0xc9, 610 0x8c, 0xdc, 0xcf, 0x52, 0x05, 0x45, 0x1c, 0x2f, 0x60, 0xb2, 0x33, 0x1c, 0xc8, 0xcb, 0xdd, 0xb4, 611 0x8e, 0x96, 0x4b, 0x38, 0x4d, 0x3e, 0x7e, 0xf7, 0xd0, 0xe9, 0xb0, 0xfb, 0xe9, 0x0c, 0xfe, 0xae, 612 0x53, 0x01, 0x3f, 0xd4, 0x79, 0xbb, 0xb6, 0xe1, 0x7f, 0x6b, 0x2c, 0x5a, 0x67, 0xff, 0xb1, 0xc6, 613 0x4f, 0x06, 0xa0, 0xf0, 0x66, 0x91, 0x7a, 0xfe, 0x14, 0xb2, 0xd8, 0x4f, 0xf4, 0x1e, 0xbd, 0x60, 614 0xf9, 0xb0, 0xc8, 0xd4, 0x1e, 0x88, 0x13, 0x11, 0xdb, 0x86, 0x8e, 0xaa, 0x66, 0x2a, 0x45, 0xf1, 615 0x94, 0x0f, 0x3a, 0xe0, 0x1b, 0xed, 0x57, 0xd4, 0xa0, 0x4c, 0xed, 0x01, 0x7e, 0x0e, 0xa0, 0xbd, 616 0xc7, 0xf0, 0x31, 0x66, 0xa7, 0xa9, 0xc9, 0x08, 0x89, 0xa3, 0xc2, 0x9f, 0xc3, 0xa3, 0x1d, 0xed, 617 0xb7, 0xd7, 0x55, 0xbd, 0x11, 0x63, 0x4a, 0x98, 0x12, 0xf6, 0x9e, 0x20, 0xf9, 0x02, 0x8e, 0x93, 618 0x71, 0xcf, 0x73, 0x18, 0x6a, 0x63, 0xc8, 0xdb, 0xdd, 0x6b, 0x45, 0x4a, 0xbe, 0x83, 0x69, 0x6f, 619 0x06, 0x7b, 0xa6, 0xd9, 0x81, 0xe9, 0x02, 0x26, 0x69, 0x6f, 0xfe, 0xf4, 0x46, 0x89, 0x96, 0x97, 620 0x70, 0x72, 0xb1, 0xd9, 0xc4, 0x9a, 0xdd, 0x33, 0x75, 0x2b, 0xc0, 0xf6, 0x2b, 0xc0, 0x5f, 0x1d, 621 0xc8, 0x8a, 0x01, 0x19, 0xe4, 0xa9, 0x66, 0x8f, 0x51, 0xfd, 0x34, 0xf9, 0x83, 0xc1, 0x13, 0x85, 622 0x37, 0xf7, 0xa8, 0xff, 0x40, 0x8f, 0xbf, 0x78, 0x76, 0x79, 0xfe, 0x69, 0x1d, 0x56, 0x6d, 0x35, 623 0x33, 0xf5, 0xf5, 0xbc, 0x2c, 0x8d, 0x9d, 0x9b, 0x95, 0x5e, 0xdb, 0xb2, 0x9c, 0xd3, 0xdd, 0xaa, 624 0x23, 0xfa, 0xed, 0x94, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x57, 0xdf, 0x86, 0xd3, 0x87, 0x04, 625 0x00, 0x00, 626 }