sui_json_rpc_api/indexer.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
use jsonrpsee::core::{RpcResult, SubscriptionResult};
use jsonrpsee::proc_macros::rpc;
use sui_json_rpc_types::SuiTransactionBlockEffects;
use sui_json_rpc_types::{
DynamicFieldPage, EventFilter, EventPage, ObjectsPage, Page, SuiEvent, SuiObjectResponse,
SuiObjectResponseQuery, SuiTransactionBlockResponseQuery, TransactionBlocksPage,
TransactionFilter,
};
use sui_open_rpc_macros::open_rpc;
use sui_types::base_types::{ObjectID, SuiAddress};
use sui_types::digests::TransactionDigest;
use sui_types::dynamic_field::DynamicFieldName;
use sui_types::event::EventID;
#[open_rpc(namespace = "suix", tag = "Extended API")]
#[rpc(server, client, namespace = "suix")]
pub trait IndexerApi {
/// Return the list of objects owned by an address.
/// Note that if the address owns more than `QUERY_MAX_RESULT_LIMIT` objects,
/// the pagination is not accurate, because previous page may have been updated when
/// the next page is fetched.
/// Please use suix_queryObjects if this is a concern.
#[method(name = "getOwnedObjects")]
async fn get_owned_objects(
&self,
/// the owner's Sui address
address: SuiAddress,
/// the objects query criteria.
query: Option<SuiObjectResponseQuery>,
/// An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.
cursor: Option<ObjectID>,
/// Max number of items returned per page, default to [QUERY_MAX_RESULT_LIMIT] if not specified.
limit: Option<usize>,
) -> RpcResult<ObjectsPage>;
/// Return list of transactions for a specified query criteria.
#[method(name = "queryTransactionBlocks")]
async fn query_transaction_blocks(
&self,
/// the transaction query criteria.
query: SuiTransactionBlockResponseQuery,
/// An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.
cursor: Option<TransactionDigest>,
/// Maximum item returned per page, default to QUERY_MAX_RESULT_LIMIT if not specified.
limit: Option<usize>,
/// query result ordering, default to false (ascending order), oldest record first.
descending_order: Option<bool>,
) -> RpcResult<TransactionBlocksPage>;
/// Return list of events for a specified query criteria.
#[method(name = "queryEvents")]
async fn query_events(
&self,
/// The event query criteria. See [Event filter](https://docs.sui.io/build/event_api#event-filters) documentation for examples.
query: EventFilter,
/// optional paging cursor
cursor: Option<EventID>,
/// maximum number of items per page, default to [QUERY_MAX_RESULT_LIMIT] if not specified.
limit: Option<usize>,
/// query result ordering, default to false (ascending order), oldest record first.
descending_order: Option<bool>,
) -> RpcResult<EventPage>;
/// Subscribe to a stream of Sui event
#[subscription(name = "subscribeEvent", item = SuiEvent)]
fn subscribe_event(
&self,
/// The filter criteria of the event stream. See [Event filter](https://docs.sui.io/build/event_api#event-filters) documentation for examples.
filter: EventFilter,
) -> SubscriptionResult;
/// Subscribe to a stream of Sui transaction effects
#[subscription(name = "subscribeTransaction", item = SuiTransactionBlockEffects)]
fn subscribe_transaction(&self, filter: TransactionFilter) -> SubscriptionResult;
/// Return the list of dynamic field objects owned by an object.
#[method(name = "getDynamicFields")]
async fn get_dynamic_fields(
&self,
/// The ID of the parent object
parent_object_id: ObjectID,
/// An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.
cursor: Option<ObjectID>,
/// Maximum item returned per page, default to [QUERY_MAX_RESULT_LIMIT] if not specified.
limit: Option<usize>,
) -> RpcResult<DynamicFieldPage>;
/// Return the dynamic field object information for a specified object
#[method(name = "getDynamicFieldObject")]
async fn get_dynamic_field_object(
&self,
/// The ID of the queried parent object
parent_object_id: ObjectID,
/// The Name of the dynamic field
name: DynamicFieldName,
) -> RpcResult<SuiObjectResponse>;
/// Return the resolved address given resolver and name
#[method(name = "resolveNameServiceAddress")]
async fn resolve_name_service_address(
&self,
/// The name to resolve
name: String,
) -> RpcResult<Option<SuiAddress>>;
/// Return the resolved names given address,
/// if multiple names are resolved, the first one is the primary name.
#[method(name = "resolveNameServiceNames")]
async fn resolve_name_service_names(
&self,
/// The address to resolve
address: SuiAddress,
cursor: Option<ObjectID>,
limit: Option<usize>,
) -> RpcResult<Page<String, ObjectID>>;
}