@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.Int256 = void 0;
const js_xdr_1 = require("@stellar/js-xdr");
class Int256 extends js_xdr_1.LargeInt {
constructor(...args) {
super(args);
}
get unsigned() {
return false;
}
get size() {
return 256;
}
}
exports.Int256 = Int256;
Int256.defineIntBoundaries();
//# sourceMappingURL=int256.js.map