pub type ExecuteTxResponse = Result<String, String>;
pub enum ExecuteTxResponse { Ok(String), Err(String), }
Contains the success value
Contains the error value