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
use crate::zk_token_elgamal::pod::{
    GroupedElGamalCiphertext2Handles, GroupedElGamalCiphertext3Handles, PodU16, PodU64,
};
#[cfg(not(target_os = "solana"))]
use crate::{errors::ElGamalError, instruction::transfer as decoded};

#[derive(Clone, Copy, bytemuck_derive::Pod, bytemuck_derive::Zeroable)]
#[repr(C)]
pub struct TransferAmountCiphertext(pub GroupedElGamalCiphertext3Handles);

#[cfg(not(target_os = "solana"))]
impl From<decoded::TransferAmountCiphertext> for TransferAmountCiphertext {
    fn from(decoded_ciphertext: decoded::TransferAmountCiphertext) -> Self {
        Self(decoded_ciphertext.0.into())
    }
}

#[cfg(not(target_os = "solana"))]
impl TryFrom<TransferAmountCiphertext> for decoded::TransferAmountCiphertext {
    type Error = ElGamalError;

    fn try_from(pod_ciphertext: TransferAmountCiphertext) -> Result<Self, Self::Error> {
        Ok(Self(pod_ciphertext.0.try_into()?))
    }
}

#[derive(Clone, Copy, bytemuck_derive::Pod, bytemuck_derive::Zeroable)]
#[repr(C)]
pub struct FeeEncryption(pub GroupedElGamalCiphertext2Handles);

#[cfg(not(target_os = "solana"))]
impl From<decoded::FeeEncryption> for FeeEncryption {
    fn from(decoded_ciphertext: decoded::FeeEncryption) -> Self {
        Self(decoded_ciphertext.0.into())
    }
}

#[cfg(not(target_os = "solana"))]
impl TryFrom<FeeEncryption> for decoded::FeeEncryption {
    type Error = ElGamalError;

    fn try_from(pod_ciphertext: FeeEncryption) -> Result<Self, Self::Error> {
        Ok(Self(pod_ciphertext.0.try_into()?))
    }
}

#[derive(Clone, Copy, bytemuck_derive::Pod, bytemuck_derive::Zeroable)]
#[repr(C)]
pub struct FeeParameters {
    /// Fee rate expressed as basis points of the transfer amount, i.e. increments of 0.01%
    pub fee_rate_basis_points: PodU16,
    /// Maximum fee assessed on transfers, expressed as an amount of tokens
    pub maximum_fee: PodU64,
}

#[cfg(not(target_os = "solana"))]
impl From<decoded::FeeParameters> for FeeParameters {
    fn from(decoded_fee_parameters: decoded::FeeParameters) -> Self {
        FeeParameters {
            fee_rate_basis_points: decoded_fee_parameters.fee_rate_basis_points.into(),
            maximum_fee: decoded_fee_parameters.maximum_fee.into(),
        }
    }
}

#[cfg(not(target_os = "solana"))]
impl From<FeeParameters> for decoded::FeeParameters {
    fn from(pod_fee_parameters: FeeParameters) -> Self {
        decoded::FeeParameters {
            fee_rate_basis_points: pod_fee_parameters.fee_rate_basis_points.into(),
            maximum_fee: pod_fee_parameters.maximum_fee.into(),
        }
    }
}