sui_graphql_rpc/types/coin.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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
use crate::connection::ScanConnection;
use crate::consistency::{build_objects_query, View};
use crate::data::{Db, QueryExecutor};
use crate::error::Error;
use crate::filter;
use crate::raw_query::RawQuery;
use super::available_range::AvailableRange;
use super::balance::{self, Balance};
use super::base64::Base64;
use super::big_int::BigInt;
use super::cursor::{Page, Target};
use super::display::DisplayEntry;
use super::dynamic_field::{DynamicField, DynamicFieldName};
use super::move_object::{MoveObject, MoveObjectImpl};
use super::move_value::MoveValue;
use super::object::{self, Object, ObjectFilter, ObjectImpl, ObjectOwner, ObjectStatus};
use super::owner::OwnerImpl;
use super::stake::StakedSui;
use super::sui_address::SuiAddress;
use super::suins_registration::{DomainFormat, SuinsRegistration};
use super::transaction_block::{self, TransactionBlock, TransactionBlockFilter};
use super::type_filter::ExactTypeFilter;
use super::uint53::UInt53;
use async_graphql::*;
use async_graphql::connection::{Connection, CursorType, Edge};
use diesel_async::scoped_futures::ScopedFutureExt;
use sui_indexer::models::objects::StoredHistoryObject;
use sui_indexer::types::OwnerType;
use sui_types::coin::Coin as NativeCoin;
use sui_types::TypeTag;
#[derive(Clone)]
pub(crate) struct Coin {
/// Representation of this Coin as a generic Move Object.
pub super_: MoveObject,
/// The deserialized representation of the Move Object's contents, as a `0x2::coin::Coin`.
pub native: NativeCoin,
}
pub(crate) enum CoinDowncastError {
NotACoin,
Bcs(bcs::Error),
}
/// Some 0x2::coin::Coin Move object.
#[Object]
impl Coin {
pub(crate) async fn address(&self) -> SuiAddress {
OwnerImpl::from(&self.super_.super_).address().await
}
/// Objects owned by this object, optionally `filter`-ed.
pub(crate) async fn objects(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<object::Cursor>,
last: Option<u64>,
before: Option<object::Cursor>,
filter: Option<ObjectFilter>,
) -> Result<Connection<String, MoveObject>> {
OwnerImpl::from(&self.super_.super_)
.objects(ctx, first, after, last, before, filter)
.await
}
/// Total balance of all coins with marker type owned by this object. If type is not supplied,
/// it defaults to `0x2::sui::SUI`.
pub(crate) async fn balance(
&self,
ctx: &Context<'_>,
type_: Option<ExactTypeFilter>,
) -> Result<Option<Balance>> {
OwnerImpl::from(&self.super_.super_)
.balance(ctx, type_)
.await
}
/// The balances of all coin types owned by this object.
pub(crate) async fn balances(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<balance::Cursor>,
last: Option<u64>,
before: Option<balance::Cursor>,
) -> Result<Connection<String, Balance>> {
OwnerImpl::from(&self.super_.super_)
.balances(ctx, first, after, last, before)
.await
}
/// The coin objects for this object.
///
///`type` is a filter on the coin's type parameter, defaulting to `0x2::sui::SUI`.
pub(crate) async fn coins(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<object::Cursor>,
last: Option<u64>,
before: Option<object::Cursor>,
type_: Option<ExactTypeFilter>,
) -> Result<Connection<String, Coin>> {
OwnerImpl::from(&self.super_.super_)
.coins(ctx, first, after, last, before, type_)
.await
}
/// The `0x3::staking_pool::StakedSui` objects owned by this object.
pub(crate) async fn staked_suis(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<object::Cursor>,
last: Option<u64>,
before: Option<object::Cursor>,
) -> Result<Connection<String, StakedSui>> {
OwnerImpl::from(&self.super_.super_)
.staked_suis(ctx, first, after, last, before)
.await
}
/// The domain explicitly configured as the default domain pointing to this object.
pub(crate) async fn default_suins_name(
&self,
ctx: &Context<'_>,
format: Option<DomainFormat>,
) -> Result<Option<String>> {
OwnerImpl::from(&self.super_.super_)
.default_suins_name(ctx, format)
.await
}
/// The SuinsRegistration NFTs owned by this object. These grant the owner the capability to
/// manage the associated domain.
pub(crate) async fn suins_registrations(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<object::Cursor>,
last: Option<u64>,
before: Option<object::Cursor>,
) -> Result<Connection<String, SuinsRegistration>> {
OwnerImpl::from(&self.super_.super_)
.suins_registrations(ctx, first, after, last, before)
.await
}
pub(crate) async fn version(&self) -> UInt53 {
ObjectImpl(&self.super_.super_).version().await
}
/// The current status of the object as read from the off-chain store. The possible states are:
/// NOT_INDEXED, the object is loaded from serialized data, such as the contents of a genesis or
/// system package upgrade transaction. LIVE, the version returned is the most recent for the
/// object, and it is not deleted or wrapped at that version. HISTORICAL, the object was
/// referenced at a specific version or checkpoint, so is fetched from historical tables and may
/// not be the latest version of the object. WRAPPED_OR_DELETED, the object is deleted or
/// wrapped and only partial information can be loaded."
pub(crate) async fn status(&self) -> ObjectStatus {
ObjectImpl(&self.super_.super_).status().await
}
/// 32-byte hash that identifies the object's contents, encoded as a Base58 string.
pub(crate) async fn digest(&self) -> Option<String> {
ObjectImpl(&self.super_.super_).digest().await
}
/// The owner type of this object: Immutable, Shared, Parent, Address
pub(crate) async fn owner(&self) -> Option<ObjectOwner> {
ObjectImpl(&self.super_.super_).owner().await
}
/// The transaction block that created this version of the object.
pub(crate) async fn previous_transaction_block(
&self,
ctx: &Context<'_>,
) -> Result<Option<TransactionBlock>> {
ObjectImpl(&self.super_.super_)
.previous_transaction_block(ctx)
.await
}
/// The amount of SUI we would rebate if this object gets deleted or mutated. This number is
/// recalculated based on the present storage gas price.
pub(crate) async fn storage_rebate(&self) -> Option<BigInt> {
ObjectImpl(&self.super_.super_).storage_rebate().await
}
/// The transaction blocks that sent objects to this object.
///
/// `scanLimit` restricts the number of candidate transactions scanned when gathering a page of
/// results. It is required for queries that apply more than two complex filters (on function,
/// kind, sender, recipient, input object, changed object, or ids), and can be at most
/// `serviceConfig.maxScanLimit`.
///
/// When the scan limit is reached the page will be returned even if it has fewer than `first`
/// results when paginating forward (`last` when paginating backwards). If there are more
/// transactions to scan, `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to
/// `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set to the last
/// transaction that was scanned as opposed to the last (or first) transaction in the page.
///
/// Requesting the next (or previous) page after this cursor will resume the search, scanning
/// the next `scanLimit` many transactions in the direction of pagination, and so on until all
/// transactions in the scanning range have been visited.
///
/// By default, the scanning range includes all transactions known to GraphQL, but it can be
/// restricted by the `after` and `before` cursors, and the `beforeCheckpoint`,
/// `afterCheckpoint` and `atCheckpoint` filters.
pub(crate) async fn received_transaction_blocks(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<transaction_block::Cursor>,
last: Option<u64>,
before: Option<transaction_block::Cursor>,
filter: Option<TransactionBlockFilter>,
scan_limit: Option<u64>,
) -> Result<ScanConnection<String, TransactionBlock>> {
ObjectImpl(&self.super_.super_)
.received_transaction_blocks(ctx, first, after, last, before, filter, scan_limit)
.await
}
/// The Base64-encoded BCS serialization of the object's content.
pub(crate) async fn bcs(&self) -> Result<Option<Base64>> {
ObjectImpl(&self.super_.super_).bcs().await
}
/// Displays the contents of the Move object in a JSON string and through GraphQL types. Also
/// provides the flat representation of the type signature, and the BCS of the corresponding
/// data.
pub(crate) async fn contents(&self) -> Option<MoveValue> {
MoveObjectImpl(&self.super_).contents().await
}
/// Determines whether a transaction can transfer this object, using the TransferObjects
/// transaction command or `sui::transfer::public_transfer`, both of which require the object to
/// have the `key` and `store` abilities.
pub(crate) async fn has_public_transfer(&self, ctx: &Context<'_>) -> Result<bool> {
MoveObjectImpl(&self.super_).has_public_transfer(ctx).await
}
/// The set of named templates defined on-chain for the type of this object, to be handled
/// off-chain. The server substitutes data from the object into these templates to generate a
/// display string per template.
pub(crate) async fn display(&self, ctx: &Context<'_>) -> Result<Option<Vec<DisplayEntry>>> {
ObjectImpl(&self.super_.super_).display(ctx).await
}
/// 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.
///
/// Dynamic fields on wrapped objects can be accessed by using the same API under the Owner
/// type.
pub(crate) async fn dynamic_field(
&self,
ctx: &Context<'_>,
name: DynamicFieldName,
) -> Result<Option<DynamicField>> {
OwnerImpl::from(&self.super_.super_)
.dynamic_field(ctx, name, Some(self.super_.root_version()))
.await
}
/// 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 value of a dynamic object field can also be accessed
/// off-chain directly via its address (e.g. using `Query.object`).
///
/// Dynamic fields on wrapped objects can be accessed by using the same API under the Owner
/// type.
pub(crate) async fn dynamic_object_field(
&self,
ctx: &Context<'_>,
name: DynamicFieldName,
) -> Result<Option<DynamicField>> {
OwnerImpl::from(&self.super_.super_)
.dynamic_object_field(ctx, name, Some(self.super_.root_version()))
.await
}
/// The dynamic fields and dynamic object fields on an object.
///
/// Dynamic fields on wrapped objects can be accessed by using the same API under the Owner
/// type.
pub(crate) async fn dynamic_fields(
&self,
ctx: &Context<'_>,
first: Option<u64>,
after: Option<object::Cursor>,
last: Option<u64>,
before: Option<object::Cursor>,
) -> Result<Connection<String, DynamicField>> {
OwnerImpl::from(&self.super_.super_)
.dynamic_fields(
ctx,
first,
after,
last,
before,
Some(self.super_.root_version()),
)
.await
}
/// Balance of this coin object.
async fn coin_balance(&self) -> Option<BigInt> {
Some(BigInt::from(self.native.balance.value()))
}
}
impl Coin {
/// Query the database for a `page` of coins. The page uses the bytes of an Object ID as the
/// cursor, and can optionally be filtered by an owner.
pub(crate) async fn paginate(
db: &Db,
page: Page<object::Cursor>,
coin_type: TypeTag,
owner: Option<SuiAddress>,
checkpoint_viewed_at: u64,
) -> Result<Connection<String, Coin>, Error> {
// If cursors are provided, defer to the `checkpoint_viewed_at` in the cursor if they are
// consistent. Otherwise, use the value from the parameter, or set to None. This is so that
// paginated queries are consistent with the previous query that created the cursor.
let cursor_viewed_at = page.validate_cursor_consistency()?;
let checkpoint_viewed_at = cursor_viewed_at.unwrap_or(checkpoint_viewed_at);
let Some((prev, next, results)) = db
.execute_repeatable(move |conn| {
async move {
let Some(range) = AvailableRange::result(conn, checkpoint_viewed_at).await?
else {
return Ok::<_, diesel::result::Error>(None);
};
Ok(Some(
page.paginate_raw_query::<StoredHistoryObject>(
conn,
checkpoint_viewed_at,
coins_query(coin_type, owner, range, &page),
)
.await?,
))
}
.scope_boxed()
})
.await?
else {
return Err(Error::Client(
"Requested data is outside the available range".to_string(),
));
};
let mut conn: Connection<String, Coin> = Connection::new(prev, next);
for stored in results {
// To maintain consistency, the returned cursor should have the same upper-bound as the
// checkpoint found on the cursor.
let cursor = stored.cursor(checkpoint_viewed_at).encode_cursor();
let object =
Object::try_from_stored_history_object(stored, checkpoint_viewed_at, None)?;
let move_ = MoveObject::try_from(&object).map_err(|_| {
Error::Internal(format!(
"Failed to deserialize as Move object: {}",
object.address
))
})?;
let coin = Coin::try_from(&move_).map_err(|_| {
Error::Internal(format!("Faild to deserialize as Coin: {}", object.address))
})?;
conn.edges.push(Edge::new(cursor, coin));
}
Ok(conn)
}
}
impl TryFrom<&MoveObject> for Coin {
type Error = CoinDowncastError;
fn try_from(move_object: &MoveObject) -> Result<Self, Self::Error> {
if !move_object.native.is_coin() {
return Err(CoinDowncastError::NotACoin);
}
Ok(Self {
super_: move_object.clone(),
native: bcs::from_bytes(move_object.native.contents())
.map_err(CoinDowncastError::Bcs)?,
})
}
}
/// Constructs a raw query to fetch objects from the database. Since there are no point lookups for
/// the coin query, objects are filtered out if they satisfy the criteria but have a later version
/// in the same checkpoint.
fn coins_query(
coin_type: TypeTag,
owner: Option<SuiAddress>,
range: AvailableRange,
page: &Page<object::Cursor>,
) -> RawQuery {
build_objects_query(
View::Consistent,
range,
page,
move |query| apply_filter(query, &coin_type, owner),
move |newer| newer,
)
}
fn apply_filter(mut query: RawQuery, coin_type: &TypeTag, owner: Option<SuiAddress>) -> RawQuery {
if let Some(owner) = owner {
query = filter!(
query,
format!(
"owner_id = '\\x{}'::bytea AND owner_type = {}",
hex::encode(owner.into_vec()),
OwnerType::Address as i16
)
);
}
query = filter!(
query,
"coin_type IS NOT NULL AND coin_type = {} AND object_status = 0",
coin_type.to_canonical_display(/* with_prefix */ true)
);
query
}