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
//! Zink ABI implementation
//!
//! Currently just a wrapper of solidity ABI.

pub mod result;
pub mod selector;

use core::ops::{Deref, DerefMut};

/// Function ABI.
#[derive(Clone, Debug, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Abi(sol_abi::Abi);

impl Deref for Abi {
    type Target = sol_abi::Abi;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl DerefMut for Abi {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}

#[cfg(feature = "bytes")]
impl Abi {
    /// Convert [`Abi`] to bytes.
    pub fn to_bytes(&self) -> postcard::Result<Vec<u8>> {
        postcard::to_stdvec(self).map_err(Into::into)
    }

    /// Convert bytes to [`Abi`].
    pub fn from_bytes(bytes: impl AsRef<[u8]>) -> postcard::Result<Self> {
        postcard::from_bytes(bytes.as_ref()).map_err(Into::into)
    }
}

#[cfg(feature = "hex")]
mod hex_impl {
    use crate::{result::Result, Abi};

    impl Abi {
        /// Convert [`Abi`] to hex string.
        pub fn to_hex(&self) -> Result<String> {
            Ok("0x".to_string() + &hex::encode(self.to_bytes()?))
        }

        /// Convert hex string to [`Abi`].
        pub fn from_hex(hex: impl AsRef<str>) -> Result<Self> {
            Self::from_bytes(hex::decode(hex.as_ref().trim_start_matches("0x"))?)
                .map_err(Into::into)
        }
    }

    impl ToString for Abi {
        fn to_string(&self) -> String {
            self.to_hex().unwrap_or_default()
        }
    }

    impl core::str::FromStr for Abi {
        type Err = crate::result::Error;

        fn from_str(hex: &str) -> Result<Self> {
            Self::from_hex(hex)
        }
    }
}

#[cfg(feature = "syn")]
impl From<&syn::Signature> for Abi {
    fn from(sig: &syn::Signature) -> Self {
        Self(sol_abi::Abi::from(sig))
    }
}