@okxweb3/coin-stellar
Version:
@ok/coin-stellar is a Stellar SDK for building Web3 wallets and applications. It supports Stellar and PI blockchains, enabling private key management, address generation, transaction signing, trustline creation, and asset transfers
18 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Int128 = void 0;
const js_xdr_1 = require("@stellar/js-xdr");
class Int128 extends js_xdr_1.LargeInt {
constructor(...args) {
super(args);
}
get unsigned() {
return false;
}
get size() {
return 128;
}
}
exports.Int128 = Int128;
Int128.defineIntBoundaries();
//# sourceMappingURL=int128.js.map