sui_graphql_client

Struct Client

Source
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

Source

pub fn new(server: &str) -> Result<Self>

Create a new GraphQL client with the provided server address.

Source

pub fn new_mainnet() -> Self

Create a new GraphQL client connected to the mainnet GraphQL server: {MAINNET_HOST}.

Source

pub fn new_testnet() -> Self

Create a new GraphQL client connected to the testnet GraphQL server: {TESTNET_HOST}.

Source

pub fn new_devnet() -> Self

Create a new GraphQL client connected to the devnet GraphQL server: {DEVNET_HOST}.

Source

pub fn new_localhost() -> Self

Create a new GraphQL client connected to the localhost GraphQL server: {DEFAULT_LOCAL_HOST}.

Source

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.

Source

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.

Source

pub async fn max_page_size(&self) -> Result<i32>

Lazily fetch the max page size

Source

pub async fn run_query<T, V>( &self, operation: &Operation<T, V>, ) -> Result<GraphQlResponse<T>>

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.

Source

pub async fn chain_id(&self) -> Result<String>

Get the chain identifier.

Source

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).

Source

pub async fn protocol_config( &self, version: Option<u64>, ) -> Result<Option<ProtocolConfigs>>

Get the protocol configuration.

Source

pub async fn service_config(&self) -> Result<&ServiceConfig>

Get the GraphQL service configuration, including complexity limits, read and mutation limits, supported versions, and others.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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>.

Source

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>.

Source

pub async fn coin_metadata( &self, coin_type: &str, ) -> Result<Option<CoinMetadata>>

Get the coin metadata for the coin type.

Source

pub async fn total_supply(&self, coin_type: &str) -> Result<Option<u64>>

Get total supply for the coin type.

Source

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.

Source

pub async fn checkpoints( &self, pagination_filter: PaginationFilter, ) -> Result<Page<CheckpointSummary>>

Get a page of CheckpointSummary for the provided parameters.

Source

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.

Source

pub async fn latest_checkpoint_sequence_number( &self, ) -> Result<Option<CheckpointSequenceNumber>>

Return the sequence number of the latest checkpoint that has been executed.

Source

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();
Source

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.

Source

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 DynamicFieldOutputs.

Source

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.

Source

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.

Source

pub async fn epochs( &self, pagination_filter: PaginationFilter, ) -> Result<Page<Epoch>>

Return a page of epochs.

Source

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.

Source

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).

Source

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).

Source

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.

Source

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.

Source

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).

Source

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;
Source

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.

Source

pub async fn object_bcs(&self, object_id: Address) -> Result<Option<Vec<u8>>>

Return the object’s bcs content Vec<u8> based on the provided Address.

Source

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).

Source

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).

Source

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).

Source

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.

Source

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.

Source

pub async fn package_by_name(&self, name: &str) -> Result<Option<MovePackage>>

Fetch a package by its name (using Move Registry Service)

Source

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.

Source

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.

Source

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.

Source

pub async fn transaction( &self, digest: TransactionDigest, ) -> Result<Option<SignedTransaction>>

Get a transaction by its digest.

Source

pub async fn transaction_effects( &self, digest: TransactionDigest, ) -> Result<Option<TransactionEffects>>

Get a transaction’s effects by its digest.

Source

pub async fn transaction_data_effects( &self, digest: TransactionDigest, ) -> Result<Option<TransactionDataEffects>>

Get a transaction’s data and effects by its digest.

Source

pub async fn transactions( &self, filter: Option<TransactionsFilter<'_>>, pagination_filter: PaginationFilter, ) -> Result<Page<SignedTransaction>>

Get a page of transactions based on the provided filters.

Source

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.

Source

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.

Source

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.

Source

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.

Source

pub async fn execute_tx( &self, signatures: Vec<UserSignature>, tx: &Transaction, ) -> Result<Option<TransactionEffects>>

Execute a transaction.

Source

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.

Source

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.

Source

pub async fn resolve_suins_to_address( &self, domain: &str, ) -> Result<Option<Address>>

Get the address for the provided Suins domain name.

Source

pub async fn default_suins_name( &self, address: Address, ) -> Result<Option<String>>

Get the default Suins domain name for the provided address.

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<U> As for U

§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts 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
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> IsFieldType<T> for T

§

impl<T> MaybeSendSync for T