identity_iota_interaction/
iota_client_trait.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
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use crate::error::IotaRpcResult;
use crate::rpc_types::CoinPage;
use crate::rpc_types::EventFilter;
use crate::rpc_types::EventPage;
use crate::rpc_types::IotaExecutionStatus;
use crate::rpc_types::IotaObjectData;
use crate::rpc_types::IotaObjectDataOptions;
use crate::rpc_types::IotaObjectResponse;
use crate::rpc_types::IotaObjectResponseQuery;
use crate::rpc_types::IotaPastObjectResponse;
use crate::rpc_types::IotaTransactionBlockResponseOptions;
use crate::rpc_types::ObjectsPage;
use crate::rpc_types::OwnedObjectRef;
use crate::types::base_types::IotaAddress;
use crate::types::base_types::ObjectID;
use crate::types::base_types::SequenceNumber;
use crate::types::crypto::PublicKey;
use crate::types::crypto::Signature;
use crate::types::digests::TransactionDigest;
use crate::types::dynamic_field::DynamicFieldName;
use crate::types::event::EventID;
use crate::types::quorum_driver_types::ExecuteTransactionRequestType;
use crate::OptionalSend;
use crate::ProgrammableTransactionBcs;
use crate::SignatureBcs;
use crate::TransactionDataBcs;
use async_trait::async_trait;
use secret_storage::SignatureScheme as SignatureSchemeSecretStorage;
use secret_storage::Signer;
use std::boxed::Box;
use std::option::Option;
use std::result::Result;

#[cfg(not(target_arch = "wasm32"))]
use std::marker::Send;

#[cfg(feature = "send-sync-transaction")]
use crate::OptionalSync;

pub struct IotaKeySignature {
  pub public_key: PublicKey,
  pub signature: Signature,
}

impl SignatureSchemeSecretStorage for IotaKeySignature {
  type PublicKey = PublicKey;
  type Signature = Signature;
  type Input = TransactionDataBcs;
}

//********************************************************************
// TODO: rename the following traits to have a consistent relation
//  between platform specific trait specializations
//  and the platform agnostic traits specified in this file:
//  * QuorumDriverTrait -> QuorumDriverApiT
//  * ReadTrait -> ReadApiT
//  * CoinReadTrait -> CoinReadApiT
//  * EventTrait -> EventApiT
//
// Platform specific trait specializations are defined
// in modules identity_iota_core::iota_interaction_rust and
// iota_interaction_ts with the following names:
//  * QuorumDriverApiAdaptedT
//  * ReadApiAdaptedT
//  * CoinReadApiAdaptedT
//  * EventApiAdaptedT
//  * IotaClientAdaptedT
//********************************************************************

/// Adapter Allowing to query information from an IotaTransactionBlockResponse instance.
/// As IotaTransactionBlockResponse pulls too many dependencies we need to
/// hide it behind a trait.
#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait IotaTransactionBlockResponseT: OptionalSend {
  /// Error type used
  type Error;
  /// The response type used in the platform specific client sdk
  type NativeResponse;

  /// Indicates if IotaTransactionBlockResponse::effects is None
  fn effects_is_none(&self) -> bool;
  /// Indicates if there are Some(effects)
  fn effects_is_some(&self) -> bool;

  /// Returns Debug representation of the IotaTransactionBlockResponse
  fn to_string(&self) -> String;

  /// If effects_is_some(), returns a clone of the IotaTransactionBlockEffectsAPI::status()
  /// Otherwise, returns None
  fn effects_execution_status(&self) -> Option<IotaExecutionStatus>;

  /// If effects_is_some(), returns IotaTransactionBlockEffectsAPI::created()
  /// as owned Vec.
  /// Otherwise, returns None
  fn effects_created(&self) -> Option<Vec<OwnedObjectRef>>;

  /// Returns a reference to the platform specific client sdk response instance wrapped by this adapter
  fn as_native_response(&self) -> &Self::NativeResponse;

  /// Returns a mutable reference to the platform specific client sdk response instance wrapped by this adapter
  fn as_mut_native_response(&mut self) -> &mut Self::NativeResponse;

  /// Returns a clone of the wrapped platform specific client sdk response
  fn clone_native_response(&self) -> Self::NativeResponse;

  // Returns digest for transaction block.
  fn digest(&self) -> Result<TransactionDigest, Self::Error>;
}

#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait QuorumDriverTrait {
  /// Error type used
  type Error;
  /// The response type used in the platform specific client sdk
  type NativeResponse;

  async fn execute_transaction_block(
    &self,
    tx_data_bcs: &TransactionDataBcs,
    signatures: &[SignatureBcs],
    options: Option<IotaTransactionBlockResponseOptions>,
    request_type: Option<ExecuteTransactionRequestType>,
  ) -> IotaRpcResult<Box<dyn IotaTransactionBlockResponseT<Error = Self::Error, NativeResponse = Self::NativeResponse>>>;
}

#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait ReadTrait {
  /// Error type used
  type Error;
  /// The response type used in the platform specific client sdk
  type NativeResponse;

  async fn get_chain_identifier(&self) -> Result<String, Self::Error>;

  async fn get_dynamic_field_object(
    &self,
    parent_object_id: ObjectID,
    name: DynamicFieldName,
  ) -> IotaRpcResult<IotaObjectResponse>;

  async fn get_object_with_options(
    &self,
    object_id: ObjectID,
    options: IotaObjectDataOptions,
  ) -> IotaRpcResult<IotaObjectResponse>;

  async fn get_owned_objects(
    &self,
    address: IotaAddress,
    query: Option<IotaObjectResponseQuery>,
    cursor: Option<ObjectID>,
    limit: Option<usize>,
  ) -> IotaRpcResult<ObjectsPage>;

  async fn get_reference_gas_price(&self) -> IotaRpcResult<u64>;

  async fn get_transaction_with_options(
    &self,
    digest: TransactionDigest,
    options: IotaTransactionBlockResponseOptions,
  ) -> IotaRpcResult<Box<dyn IotaTransactionBlockResponseT<Error = Self::Error, NativeResponse = Self::NativeResponse>>>;

  async fn try_get_parsed_past_object(
    &self,
    object_id: ObjectID,
    version: SequenceNumber,
    options: IotaObjectDataOptions,
  ) -> IotaRpcResult<IotaPastObjectResponse>;
}

#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait CoinReadTrait {
  type Error;

  async fn get_coins(
    &self,
    owner: IotaAddress,
    coin_type: Option<String>,
    cursor: Option<ObjectID>,
    limit: Option<usize>,
  ) -> IotaRpcResult<CoinPage>;
}

#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait EventTrait {
  /// Error type used
  type Error;

  async fn query_events(
    &self,
    query: EventFilter,
    cursor: Option<EventID>,
    limit: Option<usize>,
    descending_order: bool,
  ) -> IotaRpcResult<EventPage>;
}

#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait IotaClientTrait {
  /// Error type used
  type Error;
  /// The response type used in the platform specific client sdk
  type NativeResponse;

  #[cfg(not(feature = "send-sync-transaction"))]
  fn quorum_driver_api(
    &self,
  ) -> Box<dyn QuorumDriverTrait<Error = Self::Error, NativeResponse = Self::NativeResponse> + '_>;
  #[cfg(feature = "send-sync-transaction")]
  fn quorum_driver_api(
    &self,
  ) -> Box<dyn QuorumDriverTrait<Error = Self::Error, NativeResponse = Self::NativeResponse> + Send + '_>;

  #[cfg(not(feature = "send-sync-transaction"))]
  fn read_api(&self) -> Box<dyn ReadTrait<Error = Self::Error, NativeResponse = Self::NativeResponse> + '_>;
  #[cfg(feature = "send-sync-transaction")]
  fn read_api(&self) -> Box<dyn ReadTrait<Error = Self::Error, NativeResponse = Self::NativeResponse> + Send + '_>;

  #[cfg(not(feature = "send-sync-transaction"))]
  fn coin_read_api(&self) -> Box<dyn CoinReadTrait<Error = Self::Error> + '_>;
  #[cfg(feature = "send-sync-transaction")]
  fn coin_read_api(&self) -> Box<dyn CoinReadTrait<Error = Self::Error> + Send + '_>;

  #[cfg(not(feature = "send-sync-transaction"))]
  fn event_api(&self) -> Box<dyn EventTrait<Error = Self::Error> + '_>;
  #[cfg(feature = "send-sync-transaction")]
  fn event_api(&self) -> Box<dyn EventTrait<Error = Self::Error> + Send + '_>;

  #[cfg(not(feature = "send-sync-transaction"))]
  async fn execute_transaction<S: Signer<IotaKeySignature>>(
    &self,
    tx_bcs: ProgrammableTransactionBcs,
    gas_budget: Option<u64>,
    signer: &S,
  ) -> Result<
    Box<dyn IotaTransactionBlockResponseT<Error = Self::Error, NativeResponse = Self::NativeResponse>>,
    Self::Error,
  >;
  #[cfg(feature = "send-sync-transaction")]
  async fn execute_transaction<S: Signer<IotaKeySignature> + OptionalSync>(
    &self,
    tx_bcs: ProgrammableTransactionBcs,
    gas_budget: Option<u64>,
    signer: &S,
  ) -> Result<
    Box<dyn IotaTransactionBlockResponseT<Error = Self::Error, NativeResponse = Self::NativeResponse>>,
    Self::Error,
  >;

  async fn default_gas_budget(
    &self,
    sender_address: IotaAddress,
    tx_bcs: &ProgrammableTransactionBcs,
  ) -> Result<u64, Self::Error>;

  async fn get_previous_version(&self, iod: IotaObjectData) -> Result<Option<IotaObjectData>, Self::Error>;

  async fn get_past_object(
    &self,
    object_id: ObjectID,
    version: SequenceNumber,
  ) -> Result<IotaPastObjectResponse, Self::Error>;
}