sui_graphql_client/query_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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

// ===========================================================================
// Coin(s) Queries
// ===========================================================================

#[derive(cynic::QueryFragment, Debug)]
#[cynic(schema = "rpc", graphql_type = "Query", variables = "CoinMetadataArgs")]
pub struct CoinMetadataQuery {
    #[arguments(coinType: $coin_type)]
    pub coin_metadata: Option<CoinMetadata>,
}

// ===========================================================================
// Coin(s) Query Args
// ===========================================================================

#[derive(cynic::QueryVariables, Debug)]
pub struct CoinMetadataArgs<'a> {
    pub coin_type: &'a str,
}

// ===========================================================================
// Types
// ===========================================================================

use crate::query_types::schema;
use crate::query_types::BigInt;

/// The coin metadata associated with the given coin type.
#[derive(cynic::QueryFragment, Debug)]
#[cynic(schema = "rpc", graphql_type = "CoinMetadata")]
pub struct CoinMetadata {
    /// The number of decimal places used to represent the token.
    pub decimals: Option<i32>,
    /// Optional description of the token, provided by the creator of the token.
    pub description: Option<String>,
    /// Icon URL of the coin.
    pub icon_url: Option<String>,
    /// Full, official name of the token.
    pub name: Option<String>,
    /// The token's identifying abbreviation.
    pub symbol: Option<String>,
    /// The overall quantity of tokens that will be issued.
    pub supply: Option<BigInt>,
    /// Version of the token.
    pub version: u64,
}