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
use crate::AssetId;
use codec::{Decode, Encode};
use sp_std::vec::Vec;
use scale_info::TypeInfo;
#[cfg(feature = "std")]
use serde::{Deserialize, Serialize};
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
#[derive(Debug, Encode, Decode, Copy, Clone, PartialEq, Eq, Default, TypeInfo)]
pub struct AssetPair {
pub asset_in: AssetId,
pub asset_out: AssetId,
}
impl AssetPair {
pub fn new(asset_in: AssetId, asset_out: AssetId) -> Self {
Self { asset_in, asset_out }
}
pub fn ordered_pair(&self) -> (AssetId, AssetId) {
match self.asset_in <= self.asset_out {
true => (self.asset_in, self.asset_out),
false => (self.asset_out, self.asset_in),
}
}
pub fn name(&self) -> Vec<u8> {
let mut buf: Vec<u8> = Vec::new();
let (asset_a, asset_b) = self.ordered_pair();
buf.extend_from_slice(&asset_a.to_le_bytes());
buf.extend_from_slice(b"HDT");
buf.extend_from_slice(&asset_b.to_le_bytes());
buf
}
}