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
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Serialize, Deserialize, PartialEq, Eq)]
pub enum Slippage {
Zero, // NA, but more specifically an empty string
ZeroBip, // 0%
OneBip, // 0.01%
TwoBip, // 0.02%
FiveBip, // 0.05%
SevenFiveBip, // 0.075%
TenBip, // 0.10%
FifteenBip, // 0.15%
TwentyBip, // 0.20%
FiftyBip, // 0.50%
SeventyFiveBip, // 0.75%
OneHundredFiftyBip, // 1.50%
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub enum FeeBps {
Zero, // 0%, but more specifically an empty string
OneBip, // 0.01%
TenBip, // 0.10%
FifteenBip, // 0.15%
TwentyBip, // 0.20%
FiftyBip, // 0.50%
SeventyFiveBip, // 0.75%
OneHundredFiftyBip, // 1.50%
}
impl FeeBps {
pub fn value(&self) -> &str {
match self {
Self::Zero => {
const VALUE: &str = "";
VALUE
}
Self::OneBip => {
const VALUE: &str = "&feesBps=0.01";
VALUE
}
Self::TenBip => {
const VALUE: &str = "&feesBps=0.10";
VALUE
}
Self::FifteenBip => {
const VALUE: &str = "&feesBps=0.15";
VALUE
}
Self::TwentyBip => {
const VALUE: &str = "&feesBps=0.20";
VALUE
}
Self::FiftyBip => {
const VALUE: &str = "&feesBps=0.50";
VALUE
}
Self::SeventyFiveBip => {
const VALUE: &str = "&feesBps=0.75";
VALUE
}
Self::OneHundredFiftyBip => {
const VALUE: &str = "&feesBps=1.50";
VALUE
}
}
}
}
impl Slippage {
pub fn value(&self) -> &str {
match self {
Self::Zero => {
const VALUE: &str = "";
VALUE
}
Self::ZeroBip => {
const VALUE: &str = "&slippage=0.000001";
VALUE
}
Self::OneBip => {
const VALUE: &str = "&slippage=0.01";
VALUE
}
Self::TwoBip => {
const VALUE: &str = "&slippage=0.02";
VALUE
}
Self::FiveBip => {
const VALUE: &str = "&slippage=0.05";
VALUE
}
Self::SevenFiveBip => {
const VALUE: &str = "&slippage=0.075";
VALUE
}
Self::TenBip => {
const VALUE: &str = "&slippage=0.10";
VALUE
}
Self::FifteenBip => {
const VALUE: &str = "&slippage=0.15";
VALUE
}
Self::TwentyBip => {
const VALUE: &str = "&slippage=0.20";
VALUE
}
Self::FiftyBip => {
const VALUE: &str = "&slippage=0.50";
VALUE
}
Self::SeventyFiveBip => {
const VALUE: &str = "&slippage=0.75";
VALUE
}
Self::OneHundredFiftyBip => {
const VALUE: &str = "&slippage=1.50";
VALUE
}
}
}
}
impl Default for Slippage {
fn default() -> Self {
Self::TenBip
}
}
impl Default for FeeBps {
fn default() -> Self {
Self::Zero
}
}