identity_iota_interaction/
iota_client_trait.rsuse 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;
}
#[cfg_attr(not(feature = "send-sync-transaction"), async_trait(?Send))]
#[cfg_attr(feature = "send-sync-transaction", async_trait)]
pub trait IotaTransactionBlockResponseT: OptionalSend {
type Error;
type NativeResponse;
fn effects_is_none(&self) -> bool;
fn effects_is_some(&self) -> bool;
fn to_string(&self) -> String;
fn effects_execution_status(&self) -> Option<IotaExecutionStatus>;
fn effects_created(&self) -> Option<Vec<OwnedObjectRef>>;
fn as_native_response(&self) -> &Self::NativeResponse;
fn as_mut_native_response(&mut self) -> &mut Self::NativeResponse;
fn clone_native_response(&self) -> Self::NativeResponse;
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 {
type Error;
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 {
type Error;
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 {
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 {
type Error;
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>;
}