export const uintTypeForSize = (x: number): UintType =>
    x <= 0x100 ? "u8" : x <= 0x10000 ? "u16" : "u32";