n_token_models/constants/
constant.rs

1//! Constants
2
3
4
5/// Arrays of sizes from 0 to 32
6pub const NULL_PUBKEY:[u8;32] = [0;32];
7
8/// null address
9pub const NULL_ADDRESS:&str = "11111111111111111111111111111111";
10/// address of admin 1
11pub const ADMIN1:&str = "EnHBYsRckMqtAkpfXhhRTpCo3XF5CFgywXyktqMYoJcV";
12/// address of admin 2
13pub const ADMIN2:&str= "v5HYHkpee1kgrrCn7xiAfJcfDND6pAX99BoEgxVKfbV";
14
15/// size of accounts for stake nft 
16pub const NB_ACCOUNT:usize=8;
17
18/// Public key size 
19pub const PUBKEY_SIZE: usize = 32;
20
21/// The buffer of public key of SUPER ADMIN 
22pub const BUFFER_PUBKEY_SUPER_ADMIN:[u8;32] = [
23    204, 193, 93, 5, 199, 108, 171, 91, 214, 51, 110, 202, 161, 21, 93, 119, 0, 76, 78, 118,
24    41, 98, 33, 79, 138, 6, 196, 205, 188, 29, 102, 142,
25];