@massalabs/massa-web3
Version:
massa's web3 sdk client
42 lines (41 loc) • 1.31 kB
TypeScript
export type I16_t = bigint;
export declare const SIZE_BYTE = 2;
export declare const SIZE_BIT = 16;
export declare const MIN: bigint;
export declare const MAX: bigint;
/**
* Converts an I16 value to bytes
*
* @param value - The number to convert
* @returns The bytes representation of the number
* @throws if the value is out of range for I16
*/
export declare function toBytes(value: I16_t): Uint8Array;
/**
* Converts bytes to an I16 value
*
* @remarks
* Silently ignores bytes that are not needed to represent the I16 value.
*
* @param bytes - The bytes to convert
* @returns The I16 representation of the bytes
*/
export declare function fromBytes(bytes: Uint8Array): I16_t;
/**
* Converts an I16 value to a number
* @param buffer - The buffer to read from
* @param offset - The optional offset in the buffer at which to start reading the I16 value (default: 0)
* @returns The I16 representation of the bytes
*/
export declare function fromBuffer(buffer: Uint8Array, offset: number): {
value: I16_t;
offset: number;
};
/**
* Converts a number to an I16 value
*
* @param value - The number to convert
* @returns The I16 representation of the number
* @throws if the value is not a safe integer or out of range for I16
*/
export declare function fromNumber(value: number): I16_t;