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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
//! Contracts API
//!
//! This module provides functionality to manage smart contracts.
use crate::client::RainClient;
use crate::error::Result;
use crate::models::contracts::*;
use uuid::Uuid;
impl RainClient {
/// Get smart contract information for a company
///
/// # Arguments
///
/// * `company_id` - The unique identifier of the company
///
/// # Returns
///
/// Returns a [`Vec<Contract>`] containing the list of contracts.
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `404` - Company not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let company_id = Uuid::new_v4();
/// let contracts = client.get_company_contracts(&company_id).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn get_company_contracts(&self, company_id: &Uuid) -> Result<Vec<Contract>> {
let path = format!("/companies/{company_id}/contracts");
self.get(&path).await
}
/// Create a smart contract for a company
///
/// # Arguments
///
/// * `company_id` - The unique identifier of the company
/// * `request` - The contract creation request
///
/// # Returns
///
/// Returns success (202 Accepted) with no response body.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `404` - Company not found
/// - `409` - Company already has a contract on this chain
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::contracts::CreateCompanyContractRequest;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let company_id = Uuid::new_v4();
/// let request = CreateCompanyContractRequest {
/// chain_id: 1, // Ethereum mainnet
/// owner_address: "0x1234...".to_string(),
/// };
/// client.create_company_contract(&company_id, &request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn create_company_contract(
&self,
company_id: &Uuid,
request: &CreateCompanyContractRequest,
) -> Result<()> {
let path = format!("/companies/{company_id}/contracts");
// Returns 202 Accepted with no body - handle gracefully
let _: serde_json::Value = self.post(&path, request).await?;
Ok(())
}
/// Get smart contract information for an authorized user tenant
///
/// # Returns
///
/// Returns a [`Vec<Contract>`] containing the list of contracts.
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let contracts = client.get_contracts().await?;
/// println!("Found {} contracts", contracts.len());
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn get_contracts(&self) -> Result<Vec<Contract>> {
let path = "/contracts";
self.get(path).await
}
/// Update a smart contract
///
/// # Arguments
///
/// * `contract_id` - The unique identifier of the contract
/// * `request` - The contract update request
///
/// # Returns
///
/// Returns success (200 OK) with response body.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `404` - Contract not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::contracts::UpdateContractRequest;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let contract_id = Uuid::new_v4();
/// let request = UpdateContractRequest {
/// onramp: true,
/// };
/// let response: serde_json::Value = client.update_contract(&contract_id, &request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn update_contract(
&self,
contract_id: &Uuid,
request: &UpdateContractRequest,
) -> Result<serde_json::Value> {
let path = format!("/contracts/{contract_id}");
self.put(&path, request).await
}
/// Get smart contract information for a user
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user
///
/// # Returns
///
/// Returns a [`Vec<Contract>`] containing the list of contracts.
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// let contracts = client.get_user_contracts(&user_id).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn get_user_contracts(&self, user_id: &Uuid) -> Result<Vec<Contract>> {
let path = format!("/users/{user_id}/contracts");
self.get(&path).await
}
/// Create a smart contract for a user
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user (must have EVM or Solana address)
/// * `request` - The contract creation request
///
/// # Returns
///
/// Returns success (202 Accepted) with no response body.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `409` - User already has a contract on this chain
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::contracts::CreateUserContractRequest;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// let request = CreateUserContractRequest {
/// chain_id: 1, // Ethereum mainnet
/// };
/// client.create_user_contract(&user_id, &request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn create_user_contract(
&self,
user_id: &Uuid,
request: &CreateUserContractRequest,
) -> Result<()> {
let path = format!("/users/{user_id}/contracts");
// Returns 202 Accepted with no body - handle gracefully
let _: serde_json::Value = self.post(&path, request).await?;
Ok(())
}
// ============================================================================
// Blocking Methods
// ============================================================================
/// Get smart contract information for a company (blocking)
#[cfg(feature = "sync")]
pub fn get_company_contracts_blocking(&self, company_id: &Uuid) -> Result<Vec<Contract>> {
let path = format!("/companies/{company_id}/contracts");
self.get_blocking(&path)
}
/// Create a smart contract for a company (blocking)
#[cfg(feature = "sync")]
pub fn create_company_contract_blocking(
&self,
company_id: &Uuid,
request: &CreateCompanyContractRequest,
) -> Result<()> {
let path = format!("/companies/{company_id}/contracts");
// Returns 202 Accepted with no body - handle gracefully
let _: serde_json::Value = self.post_blocking(&path, request)?;
Ok(())
}
/// Get smart contract information for an authorized user tenant (blocking)
#[cfg(feature = "sync")]
pub fn get_contracts_blocking(&self) -> Result<Vec<Contract>> {
let path = "/contracts";
self.get_blocking(path)
}
/// Update a smart contract (blocking)
#[cfg(feature = "sync")]
pub fn update_contract_blocking(
&self,
contract_id: &Uuid,
request: &UpdateContractRequest,
) -> Result<serde_json::Value> {
let path = format!("/contracts/{contract_id}");
self.put_blocking(&path, request)
}
/// Get smart contract information for a user (blocking)
#[cfg(feature = "sync")]
pub fn get_user_contracts_blocking(&self, user_id: &Uuid) -> Result<Vec<Contract>> {
let path = format!("/users/{user_id}/contracts");
self.get_blocking(&path)
}
/// Create a smart contract for a user (blocking)
#[cfg(feature = "sync")]
pub fn create_user_contract_blocking(
&self,
user_id: &Uuid,
request: &CreateUserContractRequest,
) -> Result<()> {
let path = format!("/users/{user_id}/contracts");
// Returns 202 Accepted with no body - handle gracefully
let _: serde_json::Value = self.post_blocking(&path, request)?;
Ok(())
}
}