@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
13 lines (12 loc) • 421 B
TypeScript
import { LargeInt } from "@stellar/js-xdr";
export declare class Uint128 extends LargeInt {
/**
* Construct an unsigned 128-bit integer that can be XDR-encoded.
*
* @param args - one or more slices to encode
* in big-endian format (i.e. earlier elements are higher bits)
*/
constructor(...args: Array<bigint | number | string>);
get unsigned(): boolean;
get size(): number;
}