helios/src/utils.rs

17 lines
431 B
Rust
Raw Normal View History

2022-08-16 22:59:07 +00:00
use eyre::Result;
use ssz_rs::{Node, Vector};
2022-08-19 22:43:58 +00:00
use super::consensus_rpc::Bytes32;
2022-08-16 22:59:07 +00:00
pub fn hex_str_to_bytes(s: &str) -> Result<Vec<u8>> {
let stripped = s.strip_prefix("0x").unwrap_or(s);
Ok(hex::decode(stripped)?)
}
pub fn bytes32_to_node(bytes: &Bytes32) -> Result<Node> {
Ok(Node::from_bytes(bytes.as_slice().try_into()?))
}
pub fn bytes_to_bytes32(bytes: &[u8]) -> Bytes32 {
Vector::from_iter(bytes.to_vec())
}