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
use rust_decimal::Decimal;
use serde::{Deserialize, Serialize};

/*
{
	"chain": "THOR",
	"symbol": "RUNE",
	"ticker": "RUNE",
	"type": "Native",
	"network": "THORChain",
	"name": "RUNE",
	"decimal": 8,
	"isSynth": false
}
*/

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Asset {
	chain: String,
	symbol: String,
	ticker: String,

	#[serde(rename = "type")]
	asset_type: String,

	network: String,
	name: String,

	#[serde(serialize_with = "rust_decimal::serde::str::serialize")]
	decimal: Decimal,

	#[serde(rename = "isSynth")]
	is_synth: bool,
}

impl Asset {
	#[must_use]
	pub const fn get_chain(&self) -> &str {
		&self.chain
	}

	#[must_use]
	pub const fn get_symbol(&self) -> &str {
		&self.symbol
	}

	#[must_use]
	pub const fn get_ticker(&self) -> &str {
		&self.ticker
	}

	#[must_use]
	pub const fn get_asset_type(&self) -> &str {
		&self.asset_type
	}

	#[must_use]
	pub const fn get_network(&self) -> &str {
		&self.network
	}

	#[must_use]
	pub const fn get_name(&self) -> &str {
		&self.name
	}

	#[must_use]
	pub const fn get_decimal(&self) -> Decimal {
		self.decimal
	}

	#[must_use]
	pub const fn is_synth(&self) -> bool {
		self.is_synth
	}

	#[must_use]
	pub const fn get_is_synth(&self) -> bool {
		self.is_synth
	}
}