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
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
use move_core_types::annotated_value::MoveStructLayout;
use serde::{Deserialize, Serialize};
use crate::{
base_types::{ObjectID, SequenceNumber, TransactionDigest},
crypto::{AuthoritySignInfo, AuthorityStrongQuorumSignInfo},
effects::{SignedTransactionEffects, TransactionEvents, VerifiedSignedTransactionEffects},
object::Object,
transaction::{CertifiedTransaction, SenderSignedData, SignedTransaction},
};
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize, Deserialize)]
pub enum ObjectInfoRequestKind {
/// Request the latest object state.
LatestObjectInfo,
/// Request a specific version of the object.
/// This is used only for debugging purpose and will not work as a generic
/// solution since we don't keep around all historic object versions.
/// No production code should depend on this kind.
PastObjectInfoDebug(SequenceNumber),
}
/// Layout generation options -- you can either generate or not generate the
/// layout.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize, Deserialize)]
pub enum LayoutGenerationOption {
Generate,
None,
}
/// A request for information about an object and optionally its
/// parent certificate at a specific version.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize, Deserialize)]
pub struct ObjectInfoRequest {
/// The id of the object to retrieve, at the latest version.
pub object_id: ObjectID,
/// if true return the layout of the object.
pub generate_layout: LayoutGenerationOption,
/// The type of request, either latest object info or the past.
pub request_kind: ObjectInfoRequestKind,
}
impl ObjectInfoRequest {
pub fn past_object_info_debug_request(
object_id: ObjectID,
version: SequenceNumber,
generate_layout: LayoutGenerationOption,
) -> Self {
ObjectInfoRequest {
object_id,
generate_layout,
request_kind: ObjectInfoRequestKind::PastObjectInfoDebug(version),
}
}
pub fn latest_object_info_request(
object_id: ObjectID,
generate_layout: LayoutGenerationOption,
) -> Self {
ObjectInfoRequest {
object_id,
generate_layout,
request_kind: ObjectInfoRequestKind::LatestObjectInfo,
}
}
}
/// This message provides information about the latest object and its lock.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ObjectInfoResponse {
/// Value of the requested object in this authority
pub object: Object,
/// Schema of the Move value inside this object.
/// None if the object is a Move package, or the request did not ask for the
/// layout
pub layout: Option<MoveStructLayout>,
/// Transaction the object is locked on in this authority.
/// None if the object is not currently locked by this authority.
/// This should be only used for debugging purpose, such as from iota-tool.
/// No prod clients should rely on it.
pub lock_for_debugging: Option<SignedTransaction>,
}
/// Verified version of `ObjectInfoResponse`. `layout` and `lock_for_debugging`
/// are skipped because they are not needed and we don't want to verify them.
#[derive(Debug, Clone)]
pub struct VerifiedObjectInfoResponse {
/// Value of the requested object in this authority
pub object: Object,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct TransactionInfoRequest {
pub transaction_digest: TransactionDigest,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum TransactionStatus {
/// Signature over the transaction.
Signed(AuthoritySignInfo),
/// For executed transaction, we could return an optional certificate
/// signature on the transaction (i.e. the signature part of the
/// CertifiedTransaction), as well as the signed effects.
/// The certificate signature is optional because for transactions executed
/// in previous epochs, we won't keep around the certificate signatures.
Executed(
Option<AuthorityStrongQuorumSignInfo>,
SignedTransactionEffects,
TransactionEvents,
),
}
impl TransactionStatus {
pub fn into_signed_for_testing(self) -> AuthoritySignInfo {
match self {
Self::Signed(s) => s,
_ => unreachable!("Incorrect response type"),
}
}
pub fn into_effects_for_testing(self) -> SignedTransactionEffects {
match self {
Self::Executed(_, e, _) => e,
_ => unreachable!("Incorrect response type"),
}
}
}
impl PartialEq for TransactionStatus {
fn eq(&self, other: &Self) -> bool {
match self {
Self::Signed(s1) => match other {
Self::Signed(s2) => s1.epoch == s2.epoch,
_ => false,
},
Self::Executed(c1, e1, ev1) => match other {
Self::Executed(c2, e2, ev2) => {
c1.as_ref().map(|a| a.epoch) == c2.as_ref().map(|a| a.epoch)
&& e1.epoch() == e2.epoch()
&& e1.digest() == e2.digest()
&& ev1.digest() == ev2.digest()
}
_ => false,
},
}
}
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct HandleTransactionResponse {
pub status: TransactionStatus,
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct TransactionInfoResponse {
pub transaction: SenderSignedData,
pub status: TransactionStatus,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SubmitCertificateResponse {
/// If transaction is already executed, return same result as
/// handle_certificate
pub executed: Option<HandleCertificateResponseV1>,
}
#[derive(Clone, Debug)]
pub struct VerifiedHandleCertificateResponse {
pub signed_effects: VerifiedSignedTransactionEffects,
pub events: TransactionEvents,
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct SystemStateRequest {
// This is needed to make gRPC happy.
pub _unused: bool,
}
/// Response type for version 1 of the handle certificate validator API.
///
/// The corresponding version 1 request type allows for a client to request
/// events as well as input/output objects from a transaction's execution. Given
/// Validators operate with very aggressive object pruning, the return of
/// input/output objects is only done immediately after the transaction has been
/// executed locally on the validator and will not be returned for requests to
/// previously executed transactions.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct HandleCertificateResponseV1 {
pub signed_effects: SignedTransactionEffects,
pub events: Option<TransactionEvents>,
/// If requested, will include all initial versions of objects modified in
/// this transaction. This includes owned objects included as input into
/// the transaction as well as the assigned versions of shared objects.
// TODO: In the future we may want to include shared objects or child objects which were read
// but not modified during execution.
pub input_objects: Option<Vec<Object>>,
/// If requested, will include all changed objects, including mutated,
/// created and unwrapped objects. In other words, all objects that
/// still exist in the object state after this transaction.
pub output_objects: Option<Vec<Object>>,
pub auxiliary_data: Option<Vec<u8>>,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct HandleCertificateRequestV1 {
pub certificate: CertifiedTransaction,
pub include_events: bool,
pub include_input_objects: bool,
pub include_output_objects: bool,
pub include_auxiliary_data: bool,
}
impl HandleCertificateRequestV1 {
pub fn new(certificate: CertifiedTransaction) -> Self {
Self {
certificate,
include_events: false,
include_input_objects: false,
include_output_objects: false,
include_auxiliary_data: false,
}
}
pub fn with_events(mut self) -> Self {
self.include_events = true;
self
}
pub fn with_input_objects(mut self) -> Self {
self.include_input_objects = true;
self
}
pub fn with_output_objects(mut self) -> Self {
self.include_output_objects = true;
self
}
pub fn with_auxiliary_data(mut self) -> Self {
self.include_auxiliary_data = true;
self
}
}
/// Response type for the handle Soft Bundle certificates validator API.
/// If `wait_for_effects` is true, it is guaranteed that:
/// - Number of responses will be equal to the number of input transactions.
/// - The order of the responses matches the order of the input transactions.
///
/// Otherwise, `responses` will be empty.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct HandleSoftBundleCertificatesResponseV1 {
pub responses: Vec<HandleCertificateResponseV1>,
}
/// Soft Bundle request. See [SIP-19](https://github.com/sui-foundation/sips/blob/main/sips/sip-19.md).
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct HandleSoftBundleCertificatesRequestV1 {
pub certificates: Vec<CertifiedTransaction>,
pub wait_for_effects: bool,
pub include_events: bool,
pub include_input_objects: bool,
pub include_output_objects: bool,
pub include_auxiliary_data: bool,
}