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
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use crate::{derivative::DerivativeOrder, order::OrderData, route::InjectiveRoute, spot::SpotOrder};
use cosmwasm_std::{Addr, Coin, CosmosMsg, CustomMsg};
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct InjectiveMsgWrapper {
pub route: InjectiveRoute,
pub msg_data: InjectiveMsg,
}
impl From<InjectiveMsgWrapper> for CosmosMsg<InjectiveMsgWrapper> {
fn from(s: InjectiveMsgWrapper) -> CosmosMsg<InjectiveMsgWrapper> {
CosmosMsg::Custom(s)
}
}
impl CustomMsg for InjectiveMsgWrapper {}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum InjectiveMsg {
Deposit {
sender: String,
subaccount_id: String,
amount: Coin,
},
Withdraw {
sender: String,
subaccount_id: String,
amount: Coin,
},
SubaccountTransfer {
sender: Addr,
source_subaccount_id: String,
destination_subaccount_id: String,
amount: Coin,
},
ExternalTransfer {
sender: String,
source_subaccount_id: String,
destination_subaccount_id: String,
amount: Coin,
},
CreateSpotMarketOrder {
sender: String,
order: SpotOrder,
},
CreateDerivativeMarketOrder {
sender: String,
order: DerivativeOrder,
},
IncreasePositionMargin {
sender: String,
source_subaccount_id: String,
destination_subaccount_id: String,
market_id: String,
amount: Coin,
},
LiquidatePosition {
sender: String,
subaccount_id: String,
market_id: String,
order: Option<DerivativeOrder>,
},
RegisterAsDMM {
sender: String,
dmm_account: String,
},
BatchUpdateOrders {
sender: String,
subaccount_id: String,
spot_market_ids_to_cancel_all: Vec<String>,
derivative_market_ids_to_cancel_all: Vec<String>,
spot_orders_to_cancel: Vec<OrderData>,
derivative_orders_to_cancel: Vec<OrderData>,
spot_orders_to_create: Vec<SpotOrder>,
derivative_orders_to_create: Vec<DerivativeOrder>,
},
Mint {
sender: String,
amount: Coin,
mint_to: String,
},
Burn {
sender: String,
amount: Coin,
},
}
pub fn create_deposit_msg(sender: String, subaccount_id: String, amount: Coin) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::Deposit {
sender,
subaccount_id,
amount,
},
}
.into()
}
pub fn create_withdraw_msg(sender: String, subaccount_id: String, amount: Coin) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::Withdraw {
sender,
subaccount_id,
amount,
},
}
.into()
}
pub fn create_subaccount_transfer_msg(
sender: Addr,
source_subaccount_id: String,
destination_subaccount_id: String,
amount: Coin,
) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::SubaccountTransfer {
sender,
source_subaccount_id,
destination_subaccount_id,
amount,
},
}
.into()
}
pub fn create_external_transfer_msg(
sender: String,
source_subaccount_id: String,
destination_subaccount_id: String,
amount: Coin,
) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::ExternalTransfer {
sender,
source_subaccount_id,
destination_subaccount_id,
amount,
},
}
.into()
}
pub fn create_spot_market_order_msg(sender: String, order: SpotOrder) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::CreateSpotMarketOrder { sender, order },
}
.into()
}
pub fn create_derivative_market_order_msg(sender: String, order: DerivativeOrder) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::CreateDerivativeMarketOrder { sender, order },
}
.into()
}
pub fn create_increase_position_margin_msg(
sender: String,
source_subaccount_id: String,
destination_subaccount_id: String,
market_id: String,
amount: Coin,
) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::IncreasePositionMargin {
sender,
source_subaccount_id,
destination_subaccount_id,
market_id,
amount,
},
}
.into()
}
pub fn create_liquidate_position_msg(
sender: String,
subaccount_id: String,
market_id: String,
order: Option<DerivativeOrder>,
) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::LiquidatePosition {
sender,
subaccount_id,
market_id,
order,
},
}
.into()
}
pub fn create_register_as_dmm_msg(sender: String, dmm_account: String) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::RegisterAsDMM { sender, dmm_account },
}
.into()
}
pub fn create_batch_update_orders_msg(
sender: String,
subaccount_id: String,
spot_market_ids_to_cancel_all: Vec<String>,
derivative_market_ids_to_cancel_all: Vec<String>,
spot_orders_to_cancel: Vec<OrderData>,
derivative_orders_to_cancel: Vec<OrderData>,
spot_orders_to_create: Vec<SpotOrder>,
derivative_orders_to_create: Vec<DerivativeOrder>,
) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Exchange,
msg_data: InjectiveMsg::BatchUpdateOrders {
sender,
subaccount_id,
spot_market_ids_to_cancel_all,
derivative_market_ids_to_cancel_all,
spot_orders_to_cancel,
derivative_orders_to_cancel,
spot_orders_to_create,
derivative_orders_to_create,
},
}
.into()
}
pub fn create_mint_tokens_msg(sender: String, amount: Coin, mint_to: String) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Tokenfactory,
msg_data: InjectiveMsg::Mint { sender, amount, mint_to },
}
.into()
}
pub fn create_burn_tokens_msg(sender: String, amount: Coin, _burn_from_address: String) -> CosmosMsg<InjectiveMsgWrapper> {
InjectiveMsgWrapper {
route: InjectiveRoute::Tokenfactory,
msg_data: InjectiveMsg::Burn { sender, amount },
}
.into()
}