neo-convertor
Version:
A tool to convert neo smart contract data to human-readable one
15 lines (14 loc) • 599 B
TypeScript
import { UintVariable } from './UintVariable';
export declare class Uint64 extends UintVariable {
static readonly MaxValue: Uint64;
static readonly MinValue: Uint64;
static readonly Zero: Uint64;
constructor(low?: number, high?: number);
readonly and: (other: number | Uint64) => Uint64;
readonly not: () => Uint64;
readonly or: (other: number | Uint64) => Uint64;
readonly rightShift: (shift: number) => Uint64;
readonly leftShift: (shift: number) => Uint64;
readonly subtract: (other: Uint64) => Uint64;
readonly toUint32: () => number;
}