pub struct Client { /* private fields */ }
Expand description
The GraphQL client for interacting with the Sui blockchain.
By default, it uses the reqwest
crate as the HTTP client.
Implementations§
Source§impl Client
impl Client
Sourcepub fn new(server: &str) -> Result<Self>
pub fn new(server: &str) -> Result<Self>
Create a new GraphQL client with the provided server address.
Sourcepub fn new_mainnet() -> Self
pub fn new_mainnet() -> Self
Create a new GraphQL client connected to the mainnet
GraphQL server: {MAINNET_HOST}.
Sourcepub fn new_testnet() -> Self
pub fn new_testnet() -> Self
Create a new GraphQL client connected to the testnet
GraphQL server: {TESTNET_HOST}.
Sourcepub fn new_devnet() -> Self
pub fn new_devnet() -> Self
Create a new GraphQL client connected to the devnet
GraphQL server: {DEVNET_HOST}.
Sourcepub fn new_localhost() -> Self
pub fn new_localhost() -> Self
Create a new GraphQL client connected to the localhost
GraphQL server:
{DEFAULT_LOCAL_HOST}.
Sourcepub fn set_rpc_server(&mut self, server: &str) -> Result<()>
pub fn set_rpc_server(&mut self, server: &str) -> Result<()>
Set the server address for the GraphQL GraphQL client. It should be a valid URL with a host and optionally a port number.
Sourcepub async fn pagination_filter(
&self,
pagination_filter: PaginationFilter,
) -> (Option<String>, Option<String>, Option<i32>, Option<i32>)
pub async fn pagination_filter( &self, pagination_filter: PaginationFilter, ) -> (Option<String>, Option<String>, Option<i32>, Option<i32>)
Handle pagination filters and return the appropriate values (after, before, first, last). If limit is omitted, it will use the max page size from the service config.
Sourcepub async fn max_page_size(&self) -> Result<i32>
pub async fn max_page_size(&self) -> Result<i32>
Lazily fetch the max page size
Sourcepub async fn run_query<T, V>(
&self,
operation: &Operation<T, V>,
) -> Result<GraphQlResponse<T>>where
T: DeserializeOwned,
V: Serialize,
pub async fn run_query<T, V>(
&self,
operation: &Operation<T, V>,
) -> Result<GraphQlResponse<T>>where
T: DeserializeOwned,
V: Serialize,
Run a query on the GraphQL server and return the response.
This method returns [cynic::GraphQlResponse
] over the query type T
, and it is
intended to be used with custom queries.
Sourcepub async fn reference_gas_price(
&self,
epoch: Option<u64>,
) -> Result<Option<u64>>
pub async fn reference_gas_price( &self, epoch: Option<u64>, ) -> Result<Option<u64>>
Get the reference gas price for the provided epoch or the last known one if no epoch is provided.
This will return Ok(None)
if the epoch requested is not available in the GraphQL service
(e.g., due to pruning).
Sourcepub async fn protocol_config(
&self,
version: Option<u64>,
) -> Result<Option<ProtocolConfigs>>
pub async fn protocol_config( &self, version: Option<u64>, ) -> Result<Option<ProtocolConfigs>>
Get the protocol configuration.
Sourcepub async fn service_config(&self) -> Result<&ServiceConfig>
pub async fn service_config(&self) -> Result<&ServiceConfig>
Get the GraphQL service configuration, including complexity limits, read and mutation limits, supported versions, and others.
Sourcepub async fn active_validators(
&self,
epoch: Option<u64>,
pagination_filter: PaginationFilter,
) -> Result<Page<Validator>>
pub async fn active_validators( &self, epoch: Option<u64>, pagination_filter: PaginationFilter, ) -> Result<Page<Validator>>
Get the list of active validators for the provided epoch, including related metadata. If no epoch is provided, it will return the active validators for the current epoch.
Sourcepub async fn total_transaction_blocks_by_digest(
&self,
digest: CheckpointDigest,
) -> Result<Option<u64>>
pub async fn total_transaction_blocks_by_digest( &self, digest: CheckpointDigest, ) -> Result<Option<u64>>
The total number of transaction blocks in the network by the end of the provided checkpoint digest.
Sourcepub async fn total_transaction_blocks_by_seq_num(
&self,
seq_num: u64,
) -> Result<Option<u64>>
pub async fn total_transaction_blocks_by_seq_num( &self, seq_num: u64, ) -> Result<Option<u64>>
The total number of transaction blocks in the network by the end of the provided checkpoint sequence number.
Sourcepub async fn total_transaction_blocks(&self) -> Result<Option<u64>>
pub async fn total_transaction_blocks(&self) -> Result<Option<u64>>
The total number of transaction blocks in the network by the end of the last known checkpoint.
Sourcepub async fn balance(
&self,
address: Address,
coin_type: Option<&str>,
) -> Result<Option<u128>>
pub async fn balance( &self, address: Address, coin_type: Option<&str>, ) -> Result<Option<u128>>
Get the balance of all the coins owned by address for the provided coin type.
Coin type will default to 0x2::coin::Coin<0x2::sui::SUI>
if not provided.
Sourcepub async fn coins(
&self,
owner: Address,
coin_type: Option<&str>,
pagination_filter: PaginationFilter,
) -> Result<Page<Coin<'_>>>
pub async fn coins( &self, owner: Address, coin_type: Option<&str>, pagination_filter: PaginationFilter, ) -> Result<Page<Coin<'_>>>
Get the list of coins for the specified address.
If coin_type
is not provided, it will default to 0x2::coin::Coin
, which will return all
coins. For SUI coin, pass in the coin type: 0x2::coin::Coin<0x2::sui::SUI>
.
Sourcepub async fn coins_stream(
&self,
address: Address,
coin_type: Option<&'static str>,
streaming_direction: Direction,
) -> impl Stream<Item = Result<Coin<'_>>>
pub async fn coins_stream( &self, address: Address, coin_type: Option<&'static str>, streaming_direction: Direction, ) -> impl Stream<Item = Result<Coin<'_>>>
Get the list of coins for the specified address as a stream.
If coin_type
is not provided, it will default to 0x2::coin::Coin
, which will return all
coins. For SUI coin, pass in the coin type: 0x2::coin::Coin<0x2::sui::SUI>
.
Sourcepub async fn coin_metadata(
&self,
coin_type: &str,
) -> Result<Option<CoinMetadata>>
pub async fn coin_metadata( &self, coin_type: &str, ) -> Result<Option<CoinMetadata>>
Get the coin metadata for the coin type.
Sourcepub async fn total_supply(&self, coin_type: &str) -> Result<Option<u64>>
pub async fn total_supply(&self, coin_type: &str) -> Result<Option<u64>>
Get total supply for the coin type.
Sourcepub async fn checkpoint(
&self,
digest: Option<CheckpointDigest>,
seq_num: Option<u64>,
) -> Result<Option<CheckpointSummary>>
pub async fn checkpoint( &self, digest: Option<CheckpointDigest>, seq_num: Option<u64>, ) -> Result<Option<CheckpointSummary>>
Get the CheckpointSummary
for a given checkpoint digest or checkpoint id. If none is
provided, it will use the last known checkpoint id.
Sourcepub async fn checkpoints(
&self,
pagination_filter: PaginationFilter,
) -> Result<Page<CheckpointSummary>>
pub async fn checkpoints( &self, pagination_filter: PaginationFilter, ) -> Result<Page<CheckpointSummary>>
Get a page of CheckpointSummary
for the provided parameters.
Sourcepub async fn checkpoints_stream(
&self,
streaming_direction: Direction,
) -> impl Stream<Item = Result<CheckpointSummary>> + '_
pub async fn checkpoints_stream( &self, streaming_direction: Direction, ) -> impl Stream<Item = Result<CheckpointSummary>> + '_
Get a stream of CheckpointSummary
. Note that this will fetch all checkpoints which may
trigger a lot of requests.
Sourcepub async fn latest_checkpoint_sequence_number(
&self,
) -> Result<Option<CheckpointSequenceNumber>>
pub async fn latest_checkpoint_sequence_number( &self, ) -> Result<Option<CheckpointSequenceNumber>>
Return the sequence number of the latest checkpoint that has been executed.
Sourcepub async fn dynamic_field(
&self,
address: Address,
type_: TypeTag,
name: impl Into<NameValue>,
) -> Result<Option<DynamicFieldOutput>>
pub async fn dynamic_field( &self, address: Address, type_: TypeTag, name: impl Into<NameValue>, ) -> Result<Option<DynamicFieldOutput>>
Access a dynamic field on an object using its name. Names are arbitrary Move values whose type have copy, drop, and store, and are specified using their type, and their BCS contents, Base64 encoded.
The name
argument can be either a BcsName
for passing raw bcs bytes or a type that
implements Serialize.
This returns DynamicFieldOutput
which contains the name, the value as json, and object.
§Example
let client = sui_graphql_client::Client::new_devnet();
let address = Address::from_str("0x5").unwrap();
let df = client.dynamic_field_with_name(address, "u64", 2u64).await.unwrap();
// alternatively, pass in the bcs bytes
let bcs = base64ct::Base64::decode_vec("AgAAAAAAAAA=").unwrap();
let df = client.dynamic_field(address, "u64", BcsName(bcs)).await.unwrap();
Sourcepub async fn dynamic_object_field(
&self,
address: Address,
type_: TypeTag,
name: impl Into<NameValue>,
) -> Result<Option<DynamicFieldOutput>>
pub async fn dynamic_object_field( &self, address: Address, type_: TypeTag, name: impl Into<NameValue>, ) -> Result<Option<DynamicFieldOutput>>
Access a dynamic object field on an object using its name. Names are arbitrary Move values whose type have copy, drop, and store, and are specified using their type, and their BCS contents, Base64 encoded.
The name
argument can be either a BcsName
for passing raw bcs bytes or a type that
implements Serialize.
This returns DynamicFieldOutput
which contains the name, the value as json, and object.
Sourcepub async fn dynamic_fields(
&self,
address: Address,
pagination_filter: PaginationFilter,
) -> Result<Page<DynamicFieldOutput>>
pub async fn dynamic_fields( &self, address: Address, pagination_filter: PaginationFilter, ) -> Result<Page<DynamicFieldOutput>>
Get a page of dynamic fields for the provided address. Note that this will also fetch dynamic fields on wrapped objects.
This returns Page
of DynamicFieldOutput
s.
Sourcepub async fn dynamic_fields_stream(
&self,
address: Address,
streaming_direction: Direction,
) -> impl Stream<Item = Result<DynamicFieldOutput>> + '_
pub async fn dynamic_fields_stream( &self, address: Address, streaming_direction: Direction, ) -> impl Stream<Item = Result<DynamicFieldOutput>> + '_
Get a stream of dynamic fields for the provided address. Note that this will also fetch dynamic fields on wrapped objects.
Sourcepub async fn epoch(&self, epoch: Option<u64>) -> Result<Option<Epoch>>
pub async fn epoch(&self, epoch: Option<u64>) -> Result<Option<Epoch>>
Return the epoch information for the provided epoch. If no epoch is provided, it will return the last known epoch.
Sourcepub async fn epochs(
&self,
pagination_filter: PaginationFilter,
) -> Result<Page<Epoch>>
pub async fn epochs( &self, pagination_filter: PaginationFilter, ) -> Result<Page<Epoch>>
Return a page of epochs.
Sourcepub async fn epochs_stream(
&self,
streaming_direction: Direction,
) -> impl Stream<Item = Result<Epoch>> + '_
pub async fn epochs_stream( &self, streaming_direction: Direction, ) -> impl Stream<Item = Result<Epoch>> + '_
Return a stream of epochs based on the (optional) object filter.
Sourcepub async fn epoch_total_checkpoints(
&self,
epoch: Option<u64>,
) -> Result<Option<u64>>
pub async fn epoch_total_checkpoints( &self, epoch: Option<u64>, ) -> Result<Option<u64>>
Return the number of checkpoints in this epoch. This will return Ok(None)
if the epoch
requested is not available in the GraphQL service (e.g., due to pruning).
Sourcepub async fn epoch_total_transaction_blocks(
&self,
epoch: Option<u64>,
) -> Result<Option<u64>>
pub async fn epoch_total_transaction_blocks( &self, epoch: Option<u64>, ) -> Result<Option<u64>>
Return the number of transaction blocks in this epoch. This will return Ok(None)
if the
epoch requested is not available in the GraphQL service (e.g., due to pruning).
Sourcepub async fn events(
&self,
filter: Option<EventFilter>,
pagination_filter: PaginationFilter,
) -> Result<Page<(Event, TransactionDigest)>>
pub async fn events( &self, filter: Option<EventFilter>, pagination_filter: PaginationFilter, ) -> Result<Page<(Event, TransactionDigest)>>
Return a page of tuple (event, transaction digest) based on the (optional) event filter.
Sourcepub async fn events_stream(
&self,
filter: Option<EventFilter>,
streaming_direction: Direction,
) -> impl Stream<Item = Result<(Event, TransactionDigest)>> + '_
pub async fn events_stream( &self, filter: Option<EventFilter>, streaming_direction: Direction, ) -> impl Stream<Item = Result<(Event, TransactionDigest)>> + '_
Return a stream of events based on the (optional) event filter.
Sourcepub async fn object(
&self,
address: Address,
version: Option<u64>,
) -> Result<Option<Object>>
pub async fn object( &self, address: Address, version: Option<u64>, ) -> Result<Option<Object>>
Return an object based on the provided Address
.
If the object does not exist (e.g., due to pruning), this will return Ok(None)
.
Similarly, if this is not an object but an address, it will return Ok(None)
.
Sourcepub async fn objects(
&self,
filter: Option<ObjectFilter<'_>>,
pagination_filter: PaginationFilter,
) -> Result<Page<Object>>
pub async fn objects( &self, filter: Option<ObjectFilter<'_>>, pagination_filter: PaginationFilter, ) -> Result<Page<Object>>
Return a page of objects based on the provided parameters.
Use this function together with the ObjectFilter::owner
to get the objects owned by an
address.
§Example
let filter = ObjectFilter {
type_: None,
owner: Some(Address::from_str("test").unwrap().into()),
object_ids: None,
};
let owned_objects = client.objects(None, None, Some(filter), None, None).await;
Sourcepub async fn objects_stream<'a>(
&'a self,
filter: Option<ObjectFilter<'a>>,
streaming_direction: Direction,
) -> impl Stream<Item = Result<Object>> + 'a
pub async fn objects_stream<'a>( &'a self, filter: Option<ObjectFilter<'a>>, streaming_direction: Direction, ) -> impl Stream<Item = Result<Object>> + 'a
Return a stream of objects based on the (optional) object filter.
Sourcepub async fn move_object_contents(
&self,
address: Address,
version: Option<u64>,
) -> Result<Option<Value>>
pub async fn move_object_contents( &self, address: Address, version: Option<u64>, ) -> Result<Option<Value>>
Return the contents’ JSON of an object that is a Move object.
If the object does not exist (e.g., due to pruning), this will return Ok(None)
.
Similarly, if this is not an object but an address, it will return Ok(None)
.
Sourcepub async fn move_object_contents_bcs(
&self,
address: Address,
version: Option<u64>,
) -> Result<Option<Vec<u8>>>
pub async fn move_object_contents_bcs( &self, address: Address, version: Option<u64>, ) -> Result<Option<Vec<u8>>>
Return the BCS of an object that is a Move object.
If the object does not exist (e.g., due to pruning), this will return Ok(None)
.
Similarly, if this is not an object but an address, it will return Ok(None)
.
Sourcepub async fn package(
&self,
address: Address,
version: Option<u64>,
) -> Result<Option<MovePackage>>
pub async fn package( &self, address: Address, version: Option<u64>, ) -> Result<Option<MovePackage>>
The package corresponding to the given address (at the optionally given version). When no version is given, the package is loaded directly from the address given. Otherwise, the address is translated before loading to point to the package whose original ID matches the package at address, but whose version is version. For non-system packages, this might result in a different address than address because different versions of a package, introduced by upgrades, exist at distinct addresses.
Note that this interpretation of version is different from a historical object read (the interpretation of version for the object query).
Sourcepub async fn package_versions(
&self,
address: Address,
pagination_filter: PaginationFilter,
after_version: Option<u64>,
before_version: Option<u64>,
) -> Result<Page<MovePackage>>
pub async fn package_versions( &self, address: Address, pagination_filter: PaginationFilter, after_version: Option<u64>, before_version: Option<u64>, ) -> Result<Page<MovePackage>>
Fetch all versions of package at address (packages that share this package’s original ID), optionally bounding the versions exclusively from below with afterVersion, or from above with beforeVersion.
Sourcepub async fn package_latest(
&self,
address: Address,
) -> Result<Option<MovePackage>>
pub async fn package_latest( &self, address: Address, ) -> Result<Option<MovePackage>>
Fetch the latest version of the package at address. This corresponds to the package with the highest version that shares its original ID with the package at address.
Sourcepub async fn package_by_name(&self, name: &str) -> Result<Option<MovePackage>>
pub async fn package_by_name(&self, name: &str) -> Result<Option<MovePackage>>
Fetch a package by its name (using Move Registry Service)
Sourcepub async fn packages(
&self,
pagination_filter: PaginationFilter,
after_checkpoint: Option<u64>,
before_checkpoint: Option<u64>,
) -> Result<Page<MovePackage>>
pub async fn packages( &self, pagination_filter: PaginationFilter, after_checkpoint: Option<u64>, before_checkpoint: Option<u64>, ) -> Result<Page<MovePackage>>
The Move packages that exist in the network, optionally filtered to be strictly before beforeCheckpoint and/or strictly after afterCheckpoint.
This query returns all versions of a given user package that appear between the specified checkpoints, but only records the latest versions of system packages.
Sourcepub async fn dry_run_tx(
&self,
tx: &Transaction,
skip_checks: Option<bool>,
) -> Result<DryRunResult>
pub async fn dry_run_tx( &self, tx: &Transaction, skip_checks: Option<bool>, ) -> Result<DryRunResult>
Dry run a Transaction
and return the transaction effects and dry run error (if any).
skipChecks
optional flag disables the usual verification checks that prevent access to
objects that are owned by addresses other than the sender, and calling non-public,
non-entry functions, and some other checks. Defaults to false.
Sourcepub async fn dry_run_tx_kind(
&self,
tx_kind: &TransactionKind,
skip_checks: Option<bool>,
tx_meta: TransactionMetadata,
) -> Result<DryRunResult>
pub async fn dry_run_tx_kind( &self, tx_kind: &TransactionKind, skip_checks: Option<bool>, tx_meta: TransactionMetadata, ) -> Result<DryRunResult>
Dry run a TransactionKind
and return the transaction effects and dry run error (if any).
skipChecks
optional flag disables the usual verification checks that prevent access to
objects that are owned by addresses other than the sender, and calling non-public,
non-entry functions, and some other checks. Defaults to false.
tx_meta
is the transaction metadata.
Sourcepub async fn transaction(
&self,
digest: TransactionDigest,
) -> Result<Option<SignedTransaction>>
pub async fn transaction( &self, digest: TransactionDigest, ) -> Result<Option<SignedTransaction>>
Get a transaction by its digest.
Sourcepub async fn transaction_effects(
&self,
digest: TransactionDigest,
) -> Result<Option<TransactionEffects>>
pub async fn transaction_effects( &self, digest: TransactionDigest, ) -> Result<Option<TransactionEffects>>
Get a transaction’s effects by its digest.
Sourcepub async fn transaction_data_effects(
&self,
digest: TransactionDigest,
) -> Result<Option<TransactionDataEffects>>
pub async fn transaction_data_effects( &self, digest: TransactionDigest, ) -> Result<Option<TransactionDataEffects>>
Get a transaction’s data and effects by its digest.
Sourcepub async fn transactions(
&self,
filter: Option<TransactionsFilter<'_>>,
pagination_filter: PaginationFilter,
) -> Result<Page<SignedTransaction>>
pub async fn transactions( &self, filter: Option<TransactionsFilter<'_>>, pagination_filter: PaginationFilter, ) -> Result<Page<SignedTransaction>>
Get a page of transactions based on the provided filters.
Sourcepub async fn transactions_effects(
&self,
filter: Option<TransactionsFilter<'_>>,
pagination_filter: PaginationFilter,
) -> Result<Page<TransactionEffects>>
pub async fn transactions_effects( &self, filter: Option<TransactionsFilter<'_>>, pagination_filter: PaginationFilter, ) -> Result<Page<TransactionEffects>>
Get a page of transactions’ effects based on the provided filters.
Sourcepub async fn transactions_data_effects(
&self,
filter: Option<TransactionsFilter<'_>>,
pagination_filter: PaginationFilter,
) -> Result<Page<TransactionDataEffects>>
pub async fn transactions_data_effects( &self, filter: Option<TransactionsFilter<'_>>, pagination_filter: PaginationFilter, ) -> Result<Page<TransactionDataEffects>>
Get a page of transactions’ data and effects based on the provided filters.
Sourcepub async fn transactions_stream<'a>(
&'a self,
filter: Option<TransactionsFilter<'a>>,
streaming_direction: Direction,
) -> impl Stream<Item = Result<SignedTransaction>> + 'a
pub async fn transactions_stream<'a>( &'a self, filter: Option<TransactionsFilter<'a>>, streaming_direction: Direction, ) -> impl Stream<Item = Result<SignedTransaction>> + 'a
Get a stream of transactions based on the (optional) transaction filter.
Sourcepub async fn transactions_effects_stream<'a>(
&'a self,
filter: Option<TransactionsFilter<'a>>,
streaming_direction: Direction,
) -> impl Stream<Item = Result<TransactionEffects>> + 'a
pub async fn transactions_effects_stream<'a>( &'a self, filter: Option<TransactionsFilter<'a>>, streaming_direction: Direction, ) -> impl Stream<Item = Result<TransactionEffects>> + 'a
Get a stream of transactions’ effects based on the (optional) transaction filter.
Sourcepub async fn execute_tx(
&self,
signatures: Vec<UserSignature>,
tx: &Transaction,
) -> Result<Option<TransactionEffects>>
pub async fn execute_tx( &self, signatures: Vec<UserSignature>, tx: &Transaction, ) -> Result<Option<TransactionEffects>>
Execute a transaction.
Sourcepub async fn normalized_move_function(
&self,
package: &str,
module: &str,
function: &str,
version: Option<u64>,
) -> Result<Option<MoveFunction>>
pub async fn normalized_move_function( &self, package: &str, module: &str, function: &str, version: Option<u64>, ) -> Result<Option<MoveFunction>>
Return the normalized Move function data for the provided package, module, and function.
Sourcepub async fn normalized_move_module(
&self,
package: &str,
module: &str,
version: Option<u64>,
pagination_filter_enums: PaginationFilter,
pagination_filter_friends: PaginationFilter,
pagination_filter_functions: PaginationFilter,
pagination_filter_structs: PaginationFilter,
) -> Result<Option<MoveModule>>
pub async fn normalized_move_module( &self, package: &str, module: &str, version: Option<u64>, pagination_filter_enums: PaginationFilter, pagination_filter_friends: PaginationFilter, pagination_filter_functions: PaginationFilter, pagination_filter_structs: PaginationFilter, ) -> Result<Option<MoveModule>>
Return the normalized Move module data for the provided module.
Auto Trait Implementations§
impl !Freeze for Client
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read more