export function makeUInt64(args: {
high: number
low: number
}
| {
bytes: number[]
littleEndian?: boolean
}
| {hex: string}): UInt64
Arguments
Name | Type | Description |
---|
args | {
high: number
low: number
}
| {
bytes: number[]
littleEndian?: boolean
}
| {hex: string} | |
Return value
UInt64