mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-01-11 05:28:01 -05:00
5 lines
103 B
TypeScript
5 lines
103 B
TypeScript
export const getUint = (bits: number) => {
|
|
if (bits <= 8) return 'uint8';
|
|
return `uint${bits}`;
|
|
};
|