export const narrowUint = (t: UintType | "u64") =>
    t === "u64" ? "u32" : t === "u32" ? "u16" : t === "u16" ? "u8" : "u8";