(int: bigint)
| 24 | } |
| 25 | |
| 26 | export function encodeInt(int: bigint): Uint8Array { |
| 27 | return bigIntToVmNumber(int); |
| 28 | } |
| 29 | |
| 30 | export function encodeIntAsFixedBytes(int: bigint, byteLength: number): Uint8Array { |
| 31 | const minimal = encodeInt(int); |
no outgoing calls
no test coverage detected