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