sui_rpc_api/proto/generated/sui.node.v2.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
// This file is @generated by prost-build.
/// Request message for `NodeService.GetNodeInfo`.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetNodeInfoRequest {}
/// Response message for `NodeService.GetNodeInfo`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetNodeInfoResponse {
/// The chain identifier of the chain that this node is on.
///
/// The chain identifier is the digest of the genesis checkpoint, the
/// checkpoint with sequence number 0.
#[prost(message, optional, tag = "1")]
pub chain_id: ::core::option::Option<super::super::types::Digest>,
/// Human-readable name of the chain that this node is on.
///
/// This is intended to be a human-readable name like `mainnet`, `testnet`, and so on.
#[prost(string, optional, tag = "2")]
pub chain: ::core::option::Option<::prost::alloc::string::String>,
/// Current epoch of the node based on its highest executed checkpoint.
#[prost(uint64, optional, tag = "3")]
pub epoch: ::core::option::Option<u64>,
/// Checkpoint height of the most recently executed checkpoint.
#[prost(uint64, optional, tag = "4")]
pub checkpoint_height: ::core::option::Option<u64>,
/// Unix timestamp of the most recently executed checkpoint.
#[prost(message, optional, tag = "5")]
pub timestamp: ::core::option::Option<::prost_types::Timestamp>,
/// The lowest checkpoint for which checkpoints and transaction data are available.
#[prost(uint64, optional, tag = "6")]
pub lowest_available_checkpoint: ::core::option::Option<u64>,
/// The lowest checkpoint for which object data is available.
#[prost(uint64, optional, tag = "7")]
pub lowest_available_checkpoint_objects: ::core::option::Option<u64>,
/// Software version of the `sui-node` binary.
#[prost(string, optional, tag = "8")]
pub software_version: ::core::option::Option<::prost::alloc::string::String>,
}
/// Request message for NodeService.GetCommittee.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetCommitteeRequest {
/// Request the sui.types.ValidatorCommittee corresponding to the
/// provided epoch. If no epoch is provided the committee for the current
/// epoch will be returned.
#[prost(uint64, optional, tag = "1")]
pub epoch: ::core::option::Option<u64>,
}
/// Response message for `NodeService.GetCommittee`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetCommitteeResponse {
/// The committee of either the requested epoch or the current epoch.
#[prost(message, optional, tag = "1")]
pub committee: ::core::option::Option<super::super::types::ValidatorCommittee>,
}
/// Request message for `NodeService.GetTransaction`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTransactionRequest {
/// Required. The digest of the requested transaction.
#[prost(message, optional, tag = "1")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// Mask specifying which fields to read.
/// If no mask is specified, defaults to `digest`.
#[prost(message, optional, tag = "4")]
pub read_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Response message for `NodeService.GetTransactio`n.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTransactionResponse {
/// The digest of this [Transaction](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.Transaction.html>).
#[prost(message, optional, tag = "1")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The transaction itself.
#[prost(message, optional, tag = "2")]
pub transaction: ::core::option::Option<super::super::types::Transaction>,
/// The
/// [Transaction](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.Transaction.html>)
/// encoded as BCS bytes.
#[prost(message, optional, tag = "3")]
pub transaction_bcs: ::core::option::Option<super::super::types::Bcs>,
/// List of user signatures that are used to authorize the
/// execution of this transaction.
#[prost(message, repeated, tag = "4")]
pub signatures: ::prost::alloc::vec::Vec<super::super::types::UserSignature>,
/// List of
/// [UserSignature](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.UserSignature.html>)s
/// encoded as bytes.
#[prost(bytes = "bytes", repeated, tag = "11")]
pub signatures_bytes: ::prost::alloc::vec::Vec<::prost::bytes::Bytes>,
/// The `TransactionEffects` for this transaction.
#[prost(message, optional, tag = "5")]
pub effects: ::core::option::Option<super::super::types::TransactionEffects>,
/// The
/// [TransactionEffects](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEffects.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "6")]
pub effects_bcs: ::core::option::Option<super::super::types::Bcs>,
/// The `TransactionEvents` for this transaction.
///
/// This field might be empty, even if it was explicitly requested, if the
/// transaction didn't produce any events.
/// `sui.types.TransactionEffects.events_digest` is populated if the
/// transaction produced any events.
#[prost(message, optional, tag = "7")]
pub events: ::core::option::Option<super::super::types::TransactionEvents>,
/// The
/// [TransactionEvents](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEvents.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "8")]
pub events_bcs: ::core::option::Option<super::super::types::Bcs>,
/// The sequence number for the checkpoint that includes this transaction.
#[prost(uint64, optional, tag = "9")]
pub checkpoint: ::core::option::Option<u64>,
/// The Unix timestamp of the checkpoint that includes this transaction.
#[prost(message, optional, tag = "10")]
pub timestamp: ::core::option::Option<::prost_types::Timestamp>,
}
/// Request message for `NodeService.GetObject`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetObjectRequest {
/// Required. The `ObjectId` of the requested object.
#[prost(message, optional, tag = "1")]
pub object_id: ::core::option::Option<super::super::types::ObjectId>,
/// Request a specific version of the object.
/// If no version is specified, and the object is live, then the latest
/// version of the object is returned.
#[prost(uint64, optional, tag = "2")]
pub version: ::core::option::Option<u64>,
/// Mask specifying which fields to read.
/// If no mask is specified, defaults to `object_id,version,digest`.
#[prost(message, optional, tag = "4")]
pub read_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Response message for `NodeService.GetObject`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetObjectResponse {
/// The `ObjectId` of this object.
#[prost(message, optional, tag = "1")]
pub object_id: ::core::option::Option<super::super::types::ObjectId>,
/// The version of this object.
#[prost(uint64, optional, tag = "2")]
pub version: ::core::option::Option<u64>,
/// The digest of this object.
#[prost(message, optional, tag = "3")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The object itself.
#[prost(message, optional, tag = "4")]
pub object: ::core::option::Option<super::super::types::Object>,
/// The
/// [Object](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.Object.html>)
/// encoded as BCS bytes.
#[prost(message, optional, tag = "5")]
pub object_bcs: ::core::option::Option<super::super::types::Bcs>,
}
/// Request message for `NodeService.GetCheckpoint`.
///
/// At most, provide one of `sequence_number` or `digest`. An error is
/// returned if you attempt to provide both. If you provide neither, the service
/// returns the latest executed checkpoint.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetCheckpointRequest {
/// The sequence number of the requested checkpoint.
#[prost(uint64, optional, tag = "1")]
pub sequence_number: ::core::option::Option<u64>,
/// The digest of the requested checkpoint.
#[prost(message, optional, tag = "2")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// Mask specifying which fields to read.
/// If no mask is specified, defaults to `sequence_number,digest`.
#[prost(message, optional, tag = "4")]
pub read_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Response message for `NodeService.GetCheckpoint`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetCheckpointResponse {
/// The sequence number of this checkpoint.
#[prost(uint64, optional, tag = "1")]
pub sequence_number: ::core::option::Option<u64>,
/// The digest of this checkpoint's `CheckpointSummary`.
#[prost(message, optional, tag = "2")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The `CheckpointSummary` for this checkpoint.
#[prost(message, optional, tag = "3")]
pub summary: ::core::option::Option<super::super::types::CheckpointSummary>,
/// The
/// [CheckpointSummary](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.CheckpointSummary.html>)
/// for this checkpoint encoded as BCS bytes.
#[prost(message, optional, tag = "4")]
pub summary_bcs: ::core::option::Option<super::super::types::Bcs>,
/// An aggregated quorum signature from the validator committee that
/// certifies this checkpoint.
#[prost(message, optional, tag = "5")]
pub signature: ::core::option::Option<
super::super::types::ValidatorAggregatedSignature,
>,
/// The `CheckpointContents` for this checkpoint.
#[prost(message, optional, tag = "6")]
pub contents: ::core::option::Option<super::super::types::CheckpointContents>,
/// The
/// [CheckpointContents](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.CheckpointContents.html>)
/// for this checkpoint encoded as BCS bytes.
#[prost(message, optional, tag = "7")]
pub contents_bcs: ::core::option::Option<super::super::types::Bcs>,
}
/// Request message for `NodeService.GetFullCheckpoint`.
///
/// At most, provide one of `sequence_number` or `digest`. An error is
/// returned if you provide both. If you provide neither, the service
/// returns the latest executed checkpoint.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetFullCheckpointRequest {
/// The sequence number of the requested checkpoint.
#[prost(uint64, optional, tag = "1")]
pub sequence_number: ::core::option::Option<u64>,
/// The digest of the requested checkpoint.
#[prost(message, optional, tag = "2")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// Mask specifying which fields to read.
/// If no mask is specified, defaults to `sequence_number,digest`.
#[prost(message, optional, tag = "4")]
pub read_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Response message for `NodeService.GetFullCheckpoint`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetFullCheckpointResponse {
/// The sequence number of this checkpoint.
#[prost(uint64, optional, tag = "1")]
pub sequence_number: ::core::option::Option<u64>,
/// The digest of this checkpoint's `CheckpointSummary`.
#[prost(message, optional, tag = "2")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The `CheckpointSummary` for this checkpoint.
#[prost(message, optional, tag = "3")]
pub summary: ::core::option::Option<super::super::types::CheckpointSummary>,
/// The
/// [CheckpointSummary](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.CheckpointSummary.html>)
/// for this checkpoint encoded as BCS bytes.
#[prost(message, optional, tag = "4")]
pub summary_bcs: ::core::option::Option<super::super::types::Bcs>,
/// An aggregated quorum signature from the validator committee that
/// certifies this checkpoint.
#[prost(message, optional, tag = "5")]
pub signature: ::core::option::Option<
super::super::types::ValidatorAggregatedSignature,
>,
/// The `CheckpointContents` for this checkpoint.
#[prost(message, optional, tag = "6")]
pub contents: ::core::option::Option<super::super::types::CheckpointContents>,
/// The
/// [CheckpointContents](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.CheckpointContents.html>)
/// for this checkpoint encoded as BCS bytes.
#[prost(message, optional, tag = "7")]
pub contents_bcs: ::core::option::Option<super::super::types::Bcs>,
/// List of transactions included in this checkpoint.
#[prost(message, repeated, tag = "8")]
pub transactions: ::prost::alloc::vec::Vec<FullCheckpointTransaction>,
}
/// A transaction, with all of its inputs and outputs.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FullCheckpointTransaction {
/// The digest of this transaction.
#[prost(message, optional, tag = "1")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The transaction itself.
#[prost(message, optional, tag = "2")]
pub transaction: ::core::option::Option<super::super::types::Transaction>,
/// The
/// [Transaction](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.Transaction.html>)
/// encoded as BCS bytes.
#[prost(message, optional, tag = "3")]
pub transaction_bcs: ::core::option::Option<super::super::types::Bcs>,
/// The `TransactionEffects` for this transaction.
#[prost(message, optional, tag = "5")]
pub effects: ::core::option::Option<super::super::types::TransactionEffects>,
/// The
/// [TransactionEffects](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEffects.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "6")]
pub effects_bcs: ::core::option::Option<super::super::types::Bcs>,
/// The `TransactionEvents` for this transaction.
///
/// This field might be empty, even if it was explicitly requested, if the
/// transaction didn't produce any events.
/// `sui.types.TransactionEffects.events_digest` is populated if the
/// transaction produced any events.
#[prost(message, optional, tag = "7")]
pub events: ::core::option::Option<super::super::types::TransactionEvents>,
/// The
/// [TransactionEvents](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEvents.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "8")]
pub events_bcs: ::core::option::Option<super::super::types::Bcs>,
/// Set of input objects used during the execution of this transaction.
#[prost(message, repeated, tag = "13")]
pub input_objects: ::prost::alloc::vec::Vec<FullCheckpointObject>,
/// Set of output objects produced from the execution of this transaction.
#[prost(message, repeated, tag = "14")]
pub output_objects: ::prost::alloc::vec::Vec<FullCheckpointObject>,
}
/// An object used by or produced from a transaction.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FullCheckpointObject {
/// The `ObjectId` of this object.
#[prost(message, optional, tag = "1")]
pub object_id: ::core::option::Option<super::super::types::ObjectId>,
/// The version of this object.
#[prost(uint64, optional, tag = "2")]
pub version: ::core::option::Option<u64>,
/// The digest of this object.
#[prost(message, optional, tag = "3")]
pub digest: ::core::option::Option<super::super::types::Digest>,
/// The object itself.
#[prost(message, optional, tag = "4")]
pub object: ::core::option::Option<super::super::types::Object>,
/// The
/// [object](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.Object.html>)
/// encoded as BCS bytes.
#[prost(message, optional, tag = "5")]
pub object_bcs: ::core::option::Option<super::super::types::Bcs>,
}
/// Request message for `NodeService.ExecuteTransaction`.
///
/// Note: You must provide only one of `transaction` or `transaction_bcs`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExecuteTransactionRequest {
/// The transaction to execute.
#[prost(message, optional, tag = "1")]
pub transaction: ::core::option::Option<super::super::types::Transaction>,
/// The transaction to execute, encoded as BCS bytes.
#[prost(message, optional, tag = "2")]
pub transaction_bcs: ::core::option::Option<super::super::types::Bcs>,
/// Set of `UserSiganture`s authorizing the execution of the provided
/// transaction.
#[prost(message, repeated, tag = "3")]
pub signatures: ::prost::alloc::vec::Vec<super::super::types::UserSignature>,
/// Set of `UserSiganture`s authorizing the execution of the provided
/// transaction, encoded as bytes.
#[prost(bytes = "bytes", repeated, tag = "4")]
pub signatures_bytes: ::prost::alloc::vec::Vec<::prost::bytes::Bytes>,
/// Mask specifying which fields to read.
/// If no mask is specified, defaults to `effects,events,finality`.
#[prost(message, optional, tag = "6")]
pub read_mask: ::core::option::Option<::prost_types::FieldMask>,
}
/// Response message for `NodeService.ExecuteTransaction`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExecuteTransactionResponse {
/// Indicates the finality of the executed transaction.
#[prost(message, optional, tag = "1")]
pub finality: ::core::option::Option<EffectsFinality>,
/// The `TransactionEffects` for this transaction.
#[prost(message, optional, tag = "2")]
pub effects: ::core::option::Option<super::super::types::TransactionEffects>,
/// The
/// [TransactionEffects](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEffects.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "3")]
pub effects_bcs: ::core::option::Option<super::super::types::Bcs>,
/// The `TransactionEvents` for this transaction.
///
/// This field might be empty, even if it was explicitly requested, if the
/// transaction didn't produce any events.
/// `sui.types.TransactionEffects.events_digest` is populated if the
/// transaction produced any events.
#[prost(message, optional, tag = "4")]
pub events: ::core::option::Option<super::super::types::TransactionEvents>,
/// The
/// [TransactionEvents](<https://docs.rs/sui-sdk-types/latest/sui_sdk_types/struct.TransactionEvents.html>)
/// for this transaction encoded as BCS bytes.
#[prost(message, optional, tag = "5")]
pub events_bcs: ::core::option::Option<super::super::types::Bcs>,
/// Set of balance change events as a result of this transaction.
///
/// This set of events are calculated by analyzing all input and output `Coin`
/// type objects.
#[prost(message, repeated, tag = "6")]
pub balance_changes: ::prost::alloc::vec::Vec<BalanceChange>,
}
/// The delta, or change, in balance for an address for a particular `Coin` type.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BalanceChange {
/// The account address that is affected by this balance change event.
#[prost(message, optional, tag = "1")]
pub address: ::core::option::Option<super::super::types::Address>,
/// The `Coin` type of this balance change event.
#[prost(message, optional, tag = "2")]
pub coin_type: ::core::option::Option<super::super::types::TypeTag>,
/// The amount or change in balance.
#[prost(message, optional, tag = "3")]
pub amount: ::core::option::Option<super::super::types::I128>,
}
/// Indicates the finality of the executed transaction.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EffectsFinality {
#[prost(oneof = "effects_finality::Finality", tags = "1, 2, 3")]
pub finality: ::core::option::Option<effects_finality::Finality>,
}
/// Nested message and enum types in `EffectsFinality`.
pub mod effects_finality {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Finality {
/// A quorum certificate certifying that a transaction is final but might not
/// be included in a checkpoint yet.
#[prost(message, tag = "1")]
Certified(super::super::super::types::ValidatorAggregatedSignature),
/// Sequence number of the checkpoint that includes the transaction.
#[prost(uint64, tag = "2")]
Checkpointed(u64),
/// Indicates that a quorum of validators has executed the transaction but
/// that it might not be included in a checkpoint yet.
#[prost(message, tag = "3")]
QuorumExecuted(()),
}
}
/// Generated client implementations.
pub mod node_service_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// Service for reading data from a Sui Fullnode.
#[derive(Debug, Clone)]
pub struct NodeServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl NodeServiceClient<tonic::transport::Channel> {
/// Attempt to create a new client by connecting to a given endpoint.
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> NodeServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> NodeServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
NodeServiceClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Query a node for information about its current state.
pub async fn get_node_info(
&mut self,
request: impl tonic::IntoRequest<super::GetNodeInfoRequest>,
) -> std::result::Result<
tonic::Response<super::GetNodeInfoResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetNodeInfo",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetNodeInfo"));
self.inner.unary(req, path, codec).await
}
/// Request the validator committee for a particular epoch or for the current
/// epoch.
pub async fn get_committee(
&mut self,
request: impl tonic::IntoRequest<super::GetCommitteeRequest>,
) -> std::result::Result<
tonic::Response<super::GetCommitteeResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetCommittee",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetCommittee"));
self.inner.unary(req, path, codec).await
}
/// Request information for the specified object.
///
/// Use this API to request an object by its `ObjectId`. The version of
/// the object returned is dependent on if you request a specific version.
/// If you do not request a specific version (GetObjectRequest.version is `None`),
/// then the most recent version (if the
/// object is live) is returned. If you do request a version, that version is
/// returned if it historically existed, is available, and has not been pruned.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical objects,
/// clients can look at `GetNodeInfoResponse.lowest_available_checkpoint_objects`
/// to see the lowest checkpoint for which historical object data is available.
pub async fn get_object(
&mut self,
request: impl tonic::IntoRequest<super::GetObjectRequest>,
) -> std::result::Result<
tonic::Response<super::GetObjectResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetObject",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetObject"));
self.inner.unary(req, path, codec).await
}
/// Request information for the specified transaction.
///
/// Use this API to request information about a transaction by its digest.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical
/// transactions, clients can look at
/// `GetNodeInfoResponse.lowest_available_checkpoint` to see the lowest
/// checkpoint for which historical transaction data is available.
pub async fn get_transaction(
&mut self,
request: impl tonic::IntoRequest<super::GetTransactionRequest>,
) -> std::result::Result<
tonic::Response<super::GetTransactionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetTransaction",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetTransaction"));
self.inner.unary(req, path, codec).await
}
/// Request information for the specified checkpoint.
///
/// Use this API to request information about a checkpoint either by
/// its digest or its sequence number (height).
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical
/// checkpoints, clients can look at
/// `GetNodeInfoResponse.lowest_available_checkpoint` to see the lowest
/// checkpoint for which historical checkpoint data is available.
pub async fn get_checkpoint(
&mut self,
request: impl tonic::IntoRequest<super::GetCheckpointRequest>,
) -> std::result::Result<
tonic::Response<super::GetCheckpointResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetCheckpoint",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetCheckpoint"));
self.inner.unary(req, path, codec).await
}
/// Request information for the entirety of the specified checkpoint.
///
/// Use this API to request information about a checkpoint either by
/// its digest or its sequence number (height). In particular, you can use
/// this API to request information about all the transactions included in a
/// checkpoint, as well as their input and output objects.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical checkpoints,
/// clients can look at `GetNodeInfoResponse.lowest_available_checkpoint`
/// to see the lowest checkpoint for which historical
/// checkpoint/transaction data is available and
/// `GetNodeInfoResponse.lowest_available_checkpoint_objects` for which
/// historical object data is available.
pub async fn get_full_checkpoint(
&mut self,
request: impl tonic::IntoRequest<super::GetFullCheckpointRequest>,
) -> std::result::Result<
tonic::Response<super::GetFullCheckpointResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/GetFullCheckpoint",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("sui.node.v2.NodeService", "GetFullCheckpoint"));
self.inner.unary(req, path, codec).await
}
/// Request that the provided transaction be relayed to the validator set for
/// execution and inclusion in the blockchain.
pub async fn execute_transaction(
&mut self,
request: impl tonic::IntoRequest<super::ExecuteTransactionRequest>,
) -> std::result::Result<
tonic::Response<super::ExecuteTransactionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/sui.node.v2.NodeService/ExecuteTransaction",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("sui.node.v2.NodeService", "ExecuteTransaction"),
);
self.inner.unary(req, path, codec).await
}
}
}
/// Generated server implementations.
pub mod node_service_server {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
/// Generated trait containing gRPC methods that should be implemented for use with NodeServiceServer.
#[async_trait]
pub trait NodeService: std::marker::Send + std::marker::Sync + 'static {
/// Query a node for information about its current state.
async fn get_node_info(
&self,
request: tonic::Request<super::GetNodeInfoRequest>,
) -> std::result::Result<
tonic::Response<super::GetNodeInfoResponse>,
tonic::Status,
>;
/// Request the validator committee for a particular epoch or for the current
/// epoch.
async fn get_committee(
&self,
request: tonic::Request<super::GetCommitteeRequest>,
) -> std::result::Result<
tonic::Response<super::GetCommitteeResponse>,
tonic::Status,
>;
/// Request information for the specified object.
///
/// Use this API to request an object by its `ObjectId`. The version of
/// the object returned is dependent on if you request a specific version.
/// If you do not request a specific version (GetObjectRequest.version is `None`),
/// then the most recent version (if the
/// object is live) is returned. If you do request a version, that version is
/// returned if it historically existed, is available, and has not been pruned.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical objects,
/// clients can look at `GetNodeInfoResponse.lowest_available_checkpoint_objects`
/// to see the lowest checkpoint for which historical object data is available.
async fn get_object(
&self,
request: tonic::Request<super::GetObjectRequest>,
) -> std::result::Result<
tonic::Response<super::GetObjectResponse>,
tonic::Status,
>;
/// Request information for the specified transaction.
///
/// Use this API to request information about a transaction by its digest.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical
/// transactions, clients can look at
/// `GetNodeInfoResponse.lowest_available_checkpoint` to see the lowest
/// checkpoint for which historical transaction data is available.
async fn get_transaction(
&self,
request: tonic::Request<super::GetTransactionRequest>,
) -> std::result::Result<
tonic::Response<super::GetTransactionResponse>,
tonic::Status,
>;
/// Request information for the specified checkpoint.
///
/// Use this API to request information about a checkpoint either by
/// its digest or its sequence number (height).
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical
/// checkpoints, clients can look at
/// `GetNodeInfoResponse.lowest_available_checkpoint` to see the lowest
/// checkpoint for which historical checkpoint data is available.
async fn get_checkpoint(
&self,
request: tonic::Request<super::GetCheckpointRequest>,
) -> std::result::Result<
tonic::Response<super::GetCheckpointResponse>,
tonic::Status,
>;
/// Request information for the entirety of the specified checkpoint.
///
/// Use this API to request information about a checkpoint either by
/// its digest or its sequence number (height). In particular, you can use
/// this API to request information about all the transactions included in a
/// checkpoint, as well as their input and output objects.
///
/// Due to storage limitations, implementers of this service might prune older
/// historical data, which can limit the data availability of this API. To
/// determine the data availability range for historical checkpoints,
/// clients can look at `GetNodeInfoResponse.lowest_available_checkpoint`
/// to see the lowest checkpoint for which historical
/// checkpoint/transaction data is available and
/// `GetNodeInfoResponse.lowest_available_checkpoint_objects` for which
/// historical object data is available.
async fn get_full_checkpoint(
&self,
request: tonic::Request<super::GetFullCheckpointRequest>,
) -> std::result::Result<
tonic::Response<super::GetFullCheckpointResponse>,
tonic::Status,
>;
/// Request that the provided transaction be relayed to the validator set for
/// execution and inclusion in the blockchain.
async fn execute_transaction(
&self,
request: tonic::Request<super::ExecuteTransactionRequest>,
) -> std::result::Result<
tonic::Response<super::ExecuteTransactionResponse>,
tonic::Status,
>;
}
/// Service for reading data from a Sui Fullnode.
#[derive(Debug)]
pub struct NodeServiceServer<T> {
inner: Arc<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
max_decoding_message_size: Option<usize>,
max_encoding_message_size: Option<usize>,
}
impl<T> NodeServiceServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
Self {
inner,
accept_compression_encodings: Default::default(),
send_compression_encodings: Default::default(),
max_decoding_message_size: None,
max_encoding_message_size: None,
}
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> InterceptedService<Self, F>
where
F: tonic::service::Interceptor,
{
InterceptedService::new(Self::new(inner), interceptor)
}
/// Enable decompressing requests with the given encoding.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
/// Compress responses with the given encoding, if the client supports it.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.max_decoding_message_size = Some(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.max_encoding_message_size = Some(limit);
self
}
}
impl<T, B> tonic::codegen::Service<http::Request<B>> for NodeServiceServer<T>
where
T: NodeService,
B: Body + std::marker::Send + 'static,
B::Error: Into<StdError> + std::marker::Send + 'static,
{
type Response = http::Response<tonic::body::BoxBody>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(
&mut self,
_cx: &mut Context<'_>,
) -> Poll<std::result::Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
match req.uri().path() {
"/sui.node.v2.NodeService/GetNodeInfo" => {
#[allow(non_camel_case_types)]
struct GetNodeInfoSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetNodeInfoRequest>
for GetNodeInfoSvc<T> {
type Response = super::GetNodeInfoResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetNodeInfoRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_node_info(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetNodeInfoSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/GetCommittee" => {
#[allow(non_camel_case_types)]
struct GetCommitteeSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetCommitteeRequest>
for GetCommitteeSvc<T> {
type Response = super::GetCommitteeResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetCommitteeRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_committee(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetCommitteeSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/GetObject" => {
#[allow(non_camel_case_types)]
struct GetObjectSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetObjectRequest>
for GetObjectSvc<T> {
type Response = super::GetObjectResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetObjectRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_object(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetObjectSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/GetTransaction" => {
#[allow(non_camel_case_types)]
struct GetTransactionSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetTransactionRequest>
for GetTransactionSvc<T> {
type Response = super::GetTransactionResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetTransactionRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_transaction(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetTransactionSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/GetCheckpoint" => {
#[allow(non_camel_case_types)]
struct GetCheckpointSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetCheckpointRequest>
for GetCheckpointSvc<T> {
type Response = super::GetCheckpointResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetCheckpointRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_checkpoint(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetCheckpointSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/GetFullCheckpoint" => {
#[allow(non_camel_case_types)]
struct GetFullCheckpointSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::GetFullCheckpointRequest>
for GetFullCheckpointSvc<T> {
type Response = super::GetFullCheckpointResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetFullCheckpointRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::get_full_checkpoint(&inner, request)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = GetFullCheckpointSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/sui.node.v2.NodeService/ExecuteTransaction" => {
#[allow(non_camel_case_types)]
struct ExecuteTransactionSvc<T: NodeService>(pub Arc<T>);
impl<
T: NodeService,
> tonic::server::UnaryService<super::ExecuteTransactionRequest>
for ExecuteTransactionSvc<T> {
type Response = super::ExecuteTransactionResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::ExecuteTransactionRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as NodeService>::execute_transaction(&inner, request)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = ExecuteTransactionSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => {
Box::pin(async move {
let mut response = http::Response::new(empty_body());
let headers = response.headers_mut();
headers
.insert(
tonic::Status::GRPC_STATUS,
(tonic::Code::Unimplemented as i32).into(),
);
headers
.insert(
http::header::CONTENT_TYPE,
tonic::metadata::GRPC_CONTENT_TYPE,
);
Ok(response)
})
}
}
}
}
impl<T> Clone for NodeServiceServer<T> {
fn clone(&self) -> Self {
let inner = self.inner.clone();
Self {
inner,
accept_compression_encodings: self.accept_compression_encodings,
send_compression_encodings: self.send_compression_encodings,
max_decoding_message_size: self.max_decoding_message_size,
max_encoding_message_size: self.max_encoding_message_size,
}
}
}
/// Generated gRPC service name
pub const SERVICE_NAME: &str = "sui.node.v2.NodeService";
impl<T> tonic::server::NamedService for NodeServiceServer<T> {
const NAME: &'static str = SERVICE_NAME;
}
}