pub(in super::super) fn format_manifest_type(kind: &str) -> String {
match kind.to_ascii_lowercase().as_str() {
"void" => "void".into(),
"boolean" => "bool".into(),
"integer" => "int".into(),
"string" => "string".into(),
"hash160" => "hash160".into(),
"hash256" => "hash256".into(),
"bytearray" => "bytes".into(),
"signature" => "signature".into(),
"array" => "array".into(),
"map" => "map".into(),
"interopinterface" => "interop".into(),
"any" => "any".into(),
other => other.to_string(),
}
}