b3_helper_lib 0.0.5

This is helper library for B3Wallet project
Documentation
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
use crate::{
    constants::{DEVELOPMENT_PREFIX, STAGING_PREFIX},
    ledger::AccountIdentifier,
    ledger::ICRCAccount,
    types::SignerId,
    Environment,
};
use candid::{CandidType, Principal};
use serde::{Deserialize, Serialize};

use std::{cmp, fmt, hash, mem::size_of, ops::Add, str::FromStr};

use super::error::SubaccountError;

impl Default for Subaccount {
    fn default() -> Self {
        Subaccount([0u8; 32])
    }
}

#[derive(CandidType, Deserialize, Serialize, Clone, Debug, PartialEq)]
pub struct Subaccount(pub [u8; 32]);

impl Subaccount {
    /// Creates a new `Subaccount` with a given environment and nonce.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.id(), "account_123456789");
    /// assert_eq!(subaccount.nonce(), 123456789);
    /// assert_eq!(subaccount.environment(), Environment::Production);
    /// ```
    pub fn new(environment: Environment, nonce: u64) -> Self {
        let mut subaccount = [0; 32];
        // Set the 24th byte of the subaccount array as the prefix of the environment
        subaccount[23] = environment.identifier();

        // Convert the nonce into bytes in big-endian order
        let nonce_bytes = nonce.to_be_bytes();
        // Copy the nonce bytes into the subaccount array starting from the 25th byte
        // This leaves the first 24 bytes of the subaccount array as 0 (or the environment prefix at the 24th byte),
        // and the rest of the array as the nonce in big-endian order
        // with this we get smallest ICRCAccount ids
        subaccount[24..].copy_from_slice(&nonce_bytes);

        Subaccount(subaccount)
    }

    /// Creates a new `Subaccount` with a given environment and nonce.
    /// This method is used to create subaccounts for the principal.
    /// The nonce is set to 0.
    /// The environment is set to production.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let principal = Principal::from_text("2chl6-4hpzw-vqaaa-aaaaa-c").unwrap();
    ///
    /// let subaccount = Subaccount::from_principal(principal);
    ///
    /// assert_eq!(subaccount.id(), "principal_2chl6-4hpzw-vqaaa-aaaaa-c");
    /// assert_eq!(subaccount.nonce(), 0);
    /// assert_eq!(subaccount.environment(), Environment::Production);
    ///
    /// let principal = Principal::from_text("b7pqa-qqaaa-aaaap-abdva-cai").unwrap();
    ///
    /// let subaccount = Subaccount::from_principal(principal);
    ///
    /// assert_eq!(subaccount.id(), "principal_b7pqa-qqaaa-aaaap-abdva-cai");
    /// assert_eq!(subaccount.nonce(), 0);
    /// assert_eq!(subaccount.environment(), Environment::Production);
    /// ```
    pub fn from_principal(principal: Principal) -> Self {
        principal.into()
    }

    /// Creates a new `Subaccount` with a given environment and nonce.
    /// This method is used to create subaccounts for the principal.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let principal = Principal::from_text("b7pqa-qqaaa-aaaap-abdva-cai").unwrap();
    ///
    /// let subaccount = Subaccount::from_principal(principal);
    /// assert_eq!(subaccount.environment(), Environment::Production);
    ///
    /// let subaccount = Subaccount::new(Environment::Development, 123456789);
    /// assert_eq!(subaccount.environment(), Environment::Development);
    /// ```
    pub fn environment(&self) -> Environment {
        if self.is_principal() {
            return Environment::Production;
        }

        match self.0[23] {
            STAGING_PREFIX => Environment::Staging,
            DEVELOPMENT_PREFIX => Environment::Development,
            _ => Environment::Production,
        }
    }

    /// Returns the id of the subaccount.
    /// The id is used to identify the subaccount in the backend.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let principal = Principal::from_text("b7pqa-qqaaa-aaaap-abdva-cai").unwrap();
    ///
    /// let subaccount = Subaccount::from_principal(principal);
    /// assert_eq!(subaccount.id(), "principal_b7pqa-qqaaa-aaaap-abdva-cai");
    ///
    /// let subaccount = Subaccount::new(Environment::Development, 123456789);
    /// assert_eq!(subaccount.id(), "development_account_123456789");
    ///
    /// let subaccount = Subaccount::new(Environment::Staging, 123456789);
    /// assert_eq!(subaccount.id(), "staging_account_123456789");
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.id(), "account_123456789");
    /// ```
    pub fn id(&self) -> String {
        if let Ok(principal) = self.to_principal() {
            return format!("principal_{}", principal);
        }

        if self.is_default() {
            return "-default".to_string();
        }

        let env_str = match self.0[23] {
            STAGING_PREFIX => "staging_account",
            DEVELOPMENT_PREFIX => "development_account",
            _ => "account",
        };

        let index = self.nonce().to_string();

        [env_str, &index].join("_")
    }

    /// returns the account name of the subaccount
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.name(), "Account 123456790");
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 0);
    /// assert_eq!(subaccount.name(), "Default");
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 1);
    /// assert_eq!(subaccount.name(), "Account 2");
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 2);
    /// assert_eq!(subaccount.name(), "Account 3");
    /// ```
    pub fn name(&self) -> String {
        if self.is_principal() {
            return "Principal".to_string();
        }

        if self.is_default() {
            return "Default".to_string();
        }

        let next_index = self.nonce().add(1).to_string();

        self.environment().to_name(next_index)
    }

    /// returns the nonce of the subaccount
    /// The nonce is the last 24 bytes of the subaccount
    /// if first byte of the subaccount id is 0 then its an Account
    /// otherwise its an Principal
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    ///
    /// let subaccount = Subaccount::from_principal("2chl6-4hpzw-vqaaa-aaaaa-c".parse().unwrap());
    /// assert_eq!(subaccount.nonce(), 0);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.nonce(), 123456789);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 1);
    /// assert_eq!(subaccount.nonce(), 1);
    /// ```
    pub fn nonce(&self) -> u64 {
        if self.is_principal() {
            return 0;
        }

        let nonce_bytes = &self.0[24..];
        u64::from_be_bytes(nonce_bytes.try_into().unwrap())
    }

    /// Checks if the subaccount is the default subaccount
    /// The default subaccount is the first Production subaccount of an account
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    ///
    /// let subaccount = Subaccount::from_principal("2chl6-4hpzw-vqaaa-aaaaa-c".parse().unwrap());
    /// assert_eq!(subaccount.is_default(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.is_default(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Development, 0);
    /// assert_eq!(subaccount.is_default(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Staging, 0);
    /// assert_eq!(subaccount.is_default(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 0);
    /// assert_eq!(subaccount.is_default(), true);
    /// ```
    pub fn is_default(&self) -> bool {
        self.0 == [0u8; 32]
    }

    /// Checks if the subaccount is a principal subaccount
    /// A principal subaccount is a subaccount that is not the default subaccount
    /// and has a principal id
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    ///
    /// let subaccount = Subaccount::from_principal("2chl6-4hpzw-vqaaa-aaaaa-c".parse().unwrap());
    /// assert_eq!(subaccount.is_principal(), true);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 123456789);
    /// assert_eq!(subaccount.is_principal(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Development, 0);
    /// assert_eq!(subaccount.is_principal(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Staging, 0);
    /// assert_eq!(subaccount.is_principal(), false);
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 0);
    /// assert_eq!(subaccount.is_principal(), false);
    /// ```
    pub fn is_principal(&self) -> bool {
        self.0[0] != 0
    }

    /// Returns the subaccount from slice.
    /// Error if the slice is not 32 bytes long.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::Subaccount;
    ///
    /// let subaccount = Subaccount::from_slice(&[0u8; 32]).unwrap();
    /// assert!(subaccount.is_default());
    ///
    /// let subaccount = Subaccount::from_slice(&[1u8; 32]).unwrap();
    /// assert_eq!(subaccount.to_string(), "0101010101010101010101010101010101010101010101010101010101010101".to_string());
    ///
    /// let subaccount = Subaccount::from_slice(&[2u8; 32]).unwrap();
    /// assert_eq!(subaccount.to_string(), "0202020202020202020202020202020202020202020202020202020202020202".to_string());
    ///
    /// let subaccount = Subaccount::from_slice(&[0u8; 33]);
    /// assert!(subaccount.is_err());
    /// ```
    pub fn from_slice(slice: &[u8]) -> Result<Self, SubaccountError> {
        if slice.len() != 32 {
            return Err(SubaccountError::LengthError(slice.len()));
        }

        let mut subaccount = [0; 32];
        subaccount.copy_from_slice(slice);

        Ok(Subaccount(subaccount))
    }

    pub fn as_ref(&self) -> &[u8; 32] {
        &self.0
    }

    pub fn as_slice(&self) -> &[u8] {
        &self.0
    }

    pub fn to_vec(&self) -> Vec<u8> {
        self.0.to_vec()
    }

    /// Returns the subaccount as a Principal.
    /// Panics if the slice is longer than 29 bytes.
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let principal = Principal::from_text("b7pqa-qqaaa-aaaap-abdva-cai").unwrap();
    ///
    /// let subaccount = Subaccount::from_principal(principal);
    ///
    /// assert_eq!(subaccount.to_principal().unwrap().to_text(), "b7pqa-qqaaa-aaaap-abdva-cai");
    /// ```
    pub fn to_principal(&self) -> Result<Principal, SubaccountError> {
        if !self.is_principal() {
            return Err(SubaccountError::NotPrincipal);
        }

        let length = self.0[0] as usize;

        if length > 29 {
            return Err(SubaccountError::LengthError(length));
        }

        let principal_slice = self.0[1..length + 1].to_vec();

        let principal = Principal::from_slice(&principal_slice);

        Ok(principal)
    }

    /// Returns the hex representation of the subaccount
    /// with leading zeros removed
    /// e.g. 0000000
    /// will be returned as 0
    /// 0000001
    /// will be returned as 1
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let subaccount = Subaccount::new(Environment::Production, 0);
    /// assert_eq!(subaccount.to_hex(), "".to_string());
    ///
    /// let subaccount = Subaccount::from_principal("2chl6-4hpzw-vqaaa-aaaaa-c".parse().unwrap());
    /// assert_eq!(subaccount.to_hex(), "9efcdab00000000000100000000000000000000000000000000000000000000".to_string());
    /// ```
    pub fn to_hex(&self) -> String {
        hex::encode(&self.as_slice())
            .trim_start_matches('0')
            .to_owned()
    }

    /// Returns the hex representation of the subaccount
    /// with add leading zeros if necessary
    ///
    /// # Example
    ///
    /// ```
    /// use b3_helper_lib::{Environment, Subaccount};
    /// use candid::Principal;
    ///
    /// let subaccount = Subaccount::from_hex("").unwrap();
    /// assert!(subaccount.is_default());
    ///
    /// let subaccount = Subaccount::from_hex("test");
    /// assert!(subaccount.is_err());
    ///
    /// let subaccount = Subaccount::from_hex("1").unwrap();
    /// assert_eq!(subaccount.id(), "account_1");
    ///
    /// let subaccount = Subaccount::from_hex("ff00000000000004d2").unwrap();
    /// assert_eq!(subaccount.id(), "development_account_1234");
    /// assert_eq!(subaccount.nonce(), 1234);
    /// assert_eq!(subaccount.environment(), Environment::Development);
    /// assert_eq!(subaccount.id(), "development_account_1234");
    ///
    /// let subaccount = Subaccount::from_hex("aa00000000075bcd15").unwrap();
    /// assert_eq!(subaccount.id(), "staging_account_123456789");
    /// assert_eq!(subaccount.nonce(), 123456789);
    /// assert_eq!(subaccount.environment(), Environment::Staging);
    ///
    /// let subaccount = Subaccount::from_hex("9efcdab00000000000100000000000000000000000000000000000000000000").unwrap();
    /// assert!(subaccount.is_principal());
    /// assert_eq!(subaccount.to_principal().unwrap().to_text(), "2chl6-4hpzw-vqaaa-aaaaa-c");
    /// ```
    pub fn from_hex(hex: &str) -> Result<Self, SubaccountError> {
        // add leading zeros if necessary
        let hex = if hex.len() < 64 {
            let mut hex = hex.to_string();
            hex.insert_str(0, &"0".repeat(64 - hex.len()));
            hex
        } else {
            hex.to_string()
        };

        let bytes = hex::decode(hex).map_err(|e| SubaccountError::HexError(e.to_string()))?;

        Subaccount::from_slice(&bytes)
    }
}

impl Subaccount {
    pub fn account_identifier(&self, owner: SignerId) -> AccountIdentifier {
        AccountIdentifier::new(owner, self.clone())
    }

    pub fn icrc_account(&self, owner: SignerId) -> ICRCAccount {
        ICRCAccount::new(owner, Some(self.clone()))
    }
}

impl Eq for Subaccount {}

impl cmp::PartialOrd for Subaccount {
    fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
        Some(self.cmp(other))
    }
}

impl cmp::Ord for Subaccount {
    fn cmp(&self, other: &Self) -> cmp::Ordering {
        self.0.cmp(&other.0)
    }
}

impl hash::Hash for Subaccount {
    fn hash<H: hash::Hasher>(&self, state: &mut H) {
        self.0.hash(state);
    }
}

impl From<Principal> for Subaccount {
    fn from(principal: Principal) -> Self {
        let mut subaccount = [0; size_of::<Subaccount>()];
        let principal_id = principal.as_slice();

        subaccount[0] = principal_id.len().try_into().unwrap();
        subaccount[1..1 + principal_id.len()].copy_from_slice(principal_id);

        Subaccount(subaccount)
    }
}

impl From<[u8; 32]> for Subaccount {
    fn from(bytes: [u8; 32]) -> Self {
        Self(bytes)
    }
}

impl TryFrom<Vec<u8>> for Subaccount {
    type Error = SubaccountError;

    fn try_from(value: Vec<u8>) -> Result<Self, Self::Error> {
        if value.len() != 32 {
            return Err(SubaccountError::LengthError(value.len()));
        }

        let mut bytes = [0u8; 32];
        bytes.copy_from_slice(&value);

        Ok(Self(bytes))
    }
}

impl FromStr for Subaccount {
    type Err = SubaccountError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(Self::from_hex(s)?)
    }
}

impl fmt::Display for Subaccount {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        hex::encode(&self.0).fmt(f)
    }
}