import { LargeInt } from '@stellar/js-xdr';
export class Int128 extends LargeInt {
/**
* Construct a signed 128-bit integer that can be XDR-encoded.
*
* @param {Array<number|bigint|string>} args - one or more slices to encode
* in big-endian format (i.e. earlier elements are higher bits)
*/
constructor(...args) {
super(args);
}
get unsigned() {
return false;
}
get size() {
return 128;
}
}
Int128.defineIntBoundaries();