@stellar/stellar-sdk 11.2.0 → 11.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/stellar-sdk.js +129 -119
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/horizon/server_api.d.ts +0 -1
- package/package.json +7 -8
package/dist/stellar-sdk.js
CHANGED
|
@@ -37,8 +37,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
37
37
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
38
38
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
39
39
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
40
|
-
function _toPropertyKey(
|
|
41
|
-
function _toPrimitive(
|
|
40
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
41
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
42
42
|
/**
|
|
43
43
|
* Create a new Account object.
|
|
44
44
|
*
|
|
@@ -124,8 +124,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
124
124
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
125
125
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
126
126
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
127
|
-
function _toPropertyKey(
|
|
128
|
-
function _toPrimitive(
|
|
127
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
128
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
129
129
|
/**
|
|
130
130
|
* Create a new Address object.
|
|
131
131
|
*
|
|
@@ -304,8 +304,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
304
304
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
305
305
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
306
306
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
307
|
-
function _toPropertyKey(
|
|
308
|
-
function _toPrimitive(
|
|
307
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
308
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
309
309
|
/**
|
|
310
310
|
* Asset class represents an asset, either the native asset (`XLM`)
|
|
311
311
|
* or an asset code / issuer account ID pair.
|
|
@@ -688,7 +688,12 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
688
688
|
*
|
|
689
689
|
* @see authorizeInvocation
|
|
690
690
|
* @example
|
|
691
|
-
* import {
|
|
691
|
+
* import {
|
|
692
|
+
* SorobanRpc,
|
|
693
|
+
* Transaction,
|
|
694
|
+
* Networks,
|
|
695
|
+
* authorizeEntry
|
|
696
|
+
* } from '@stellar/stellar-sdk';
|
|
692
697
|
*
|
|
693
698
|
* // Assume signPayloadCallback is a well-formed signing callback.
|
|
694
699
|
* //
|
|
@@ -700,7 +705,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
700
705
|
* }
|
|
701
706
|
*
|
|
702
707
|
* function multiPartyAuth(
|
|
703
|
-
* server: Server,
|
|
708
|
+
* server: SorobanRpc.Server,
|
|
704
709
|
* // assume this involves multi-party auth
|
|
705
710
|
* tx: Transaction,
|
|
706
711
|
* ) {
|
|
@@ -712,10 +717,10 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
712
717
|
* entry,
|
|
713
718
|
* signPayloadCallback,
|
|
714
719
|
* currentLedger + 1000,
|
|
715
|
-
* Networks.
|
|
720
|
+
* Networks.TESTNET);
|
|
716
721
|
* ));
|
|
717
722
|
*
|
|
718
|
-
* return server.prepareTransaction(tx,
|
|
723
|
+
* return server.prepareTransaction(tx, simResult);
|
|
719
724
|
* })
|
|
720
725
|
* .then((preppedTx) => {
|
|
721
726
|
* preppedTx.sign(source);
|
|
@@ -893,8 +898,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
893
898
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
894
899
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
895
900
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
896
|
-
function _toPropertyKey(
|
|
897
|
-
function _toPrimitive(
|
|
901
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
902
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
898
903
|
/**
|
|
899
904
|
* Claimant class represents an xdr.Claimant
|
|
900
905
|
*
|
|
@@ -1094,8 +1099,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
1094
1099
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1095
1100
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1096
1101
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1097
|
-
function _toPropertyKey(
|
|
1098
|
-
function _toPrimitive(
|
|
1102
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1103
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1099
1104
|
/**
|
|
1100
1105
|
* Create a new Contract object.
|
|
1101
1106
|
*
|
|
@@ -1209,6 +1214,12 @@ var _xdr = _interopRequireDefault(__webpack_require__(4081));
|
|
|
1209
1214
|
var _strkey = __webpack_require__(8385);
|
|
1210
1215
|
var _scval = __webpack_require__(5567);
|
|
1211
1216
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
1217
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
1218
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1219
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1220
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1221
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1222
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1212
1223
|
/**
|
|
1213
1224
|
* Converts raw diagnostic or contract events into something with a flatter,
|
|
1214
1225
|
* human-readable, and understandable structure.
|
|
@@ -1232,14 +1243,15 @@ function humanizeEvents(events) {
|
|
|
1232
1243
|
});
|
|
1233
1244
|
}
|
|
1234
1245
|
function extractEvent(event) {
|
|
1235
|
-
return {
|
|
1236
|
-
contractId:
|
|
1246
|
+
return _objectSpread(_objectSpread({}, event.contractId() != null && {
|
|
1247
|
+
contractId: _strkey.StrKey.encodeContract(event.contractId())
|
|
1248
|
+
}), {}, {
|
|
1237
1249
|
type: event.type().name,
|
|
1238
1250
|
topics: event.body().value().topics().map(function (t) {
|
|
1239
1251
|
return (0, _scval.scValToNative)(t);
|
|
1240
1252
|
}),
|
|
1241
1253
|
data: (0, _scval.scValToNative)(event.body().value().data())
|
|
1242
|
-
};
|
|
1254
|
+
});
|
|
1243
1255
|
}
|
|
1244
1256
|
|
|
1245
1257
|
/***/ }),
|
|
@@ -1265,15 +1277,15 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
1265
1277
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1266
1278
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1267
1279
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1268
|
-
function _toPropertyKey(
|
|
1269
|
-
function _toPrimitive(
|
|
1270
|
-
function
|
|
1271
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
1272
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
1280
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1281
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1282
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
1273
1283
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
1274
1284
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
1275
|
-
function _isNativeReflectConstruct() {
|
|
1285
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
1276
1286
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
1287
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
1288
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
1277
1289
|
/**
|
|
1278
1290
|
* Use {@link TransactionBuilder.buildFeeBumpTransaction} to build a
|
|
1279
1291
|
* FeeBumpTransaction object. If you have an object or base64-encoded string of
|
|
@@ -1292,7 +1304,6 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
1292
1304
|
*/
|
|
1293
1305
|
var FeeBumpTransaction = exports.FeeBumpTransaction = /*#__PURE__*/function (_TransactionBase) {
|
|
1294
1306
|
_inherits(FeeBumpTransaction, _TransactionBase);
|
|
1295
|
-
var _super = _createSuper(FeeBumpTransaction);
|
|
1296
1307
|
function FeeBumpTransaction(envelope, networkPassphrase) {
|
|
1297
1308
|
var _this;
|
|
1298
1309
|
_classCallCheck(this, FeeBumpTransaction);
|
|
@@ -1309,7 +1320,7 @@ var FeeBumpTransaction = exports.FeeBumpTransaction = /*#__PURE__*/function (_Tr
|
|
|
1309
1320
|
var fee = tx.fee().toString();
|
|
1310
1321
|
// clone signatures
|
|
1311
1322
|
var signatures = (txEnvelope.signatures() || []).slice();
|
|
1312
|
-
_this =
|
|
1323
|
+
_this = _callSuper(this, FeeBumpTransaction, [tx, signatures, fee, networkPassphrase]);
|
|
1313
1324
|
var innerTxEnvelope = _xdr["default"].TransactionEnvelope.envelopeTypeTx(tx.innerTx().v1());
|
|
1314
1325
|
_this._feeSource = (0, _decode_encode_muxed_account.encodeMuxedAccountToAddress)(_this.tx.feeSource());
|
|
1315
1326
|
_this._innerTransaction = new _transaction.Transaction(innerTxEnvelope, networkPassphrase);
|
|
@@ -10254,7 +10265,7 @@ var _scval = __webpack_require__(5567);
|
|
|
10254
10265
|
* `tx`, which we assume has an `Operation.invokeHostFunction` inside of it:
|
|
10255
10266
|
*
|
|
10256
10267
|
* ```typescript
|
|
10257
|
-
* import { Server, buildInvocationTree } from '
|
|
10268
|
+
* import { Server, buildInvocationTree } from '@stellar/stellar-sdk';
|
|
10258
10269
|
*
|
|
10259
10270
|
* const s = new Server("fill in accordingly");
|
|
10260
10271
|
*
|
|
@@ -10407,8 +10418,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10407
10418
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10408
10419
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10409
10420
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10410
|
-
function _toPropertyKey(
|
|
10411
|
-
function _toPrimitive(
|
|
10421
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
10422
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /* eslint no-bitwise: ["error", {"allow": ["^"]}] */
|
|
10412
10423
|
/**
|
|
10413
10424
|
* `Keypair` represents public (and secret) keys of the account.
|
|
10414
10425
|
*
|
|
@@ -10723,8 +10734,8 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
10723
10734
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10724
10735
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10725
10736
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10726
|
-
function _toPropertyKey(
|
|
10727
|
-
function _toPrimitive(
|
|
10737
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
10738
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10728
10739
|
/**
|
|
10729
10740
|
* LiquidityPoolAsset class represents a liquidity pool trustline change.
|
|
10730
10741
|
*
|
|
@@ -10851,8 +10862,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10851
10862
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10852
10863
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10853
10864
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10854
|
-
function _toPropertyKey(
|
|
10855
|
-
function _toPrimitive(
|
|
10865
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
10866
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10856
10867
|
/**
|
|
10857
10868
|
* LiquidityPoolId class represents the asset referenced by a trustline to a
|
|
10858
10869
|
* liquidity pool.
|
|
@@ -10962,8 +10973,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
10962
10973
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
10963
10974
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10964
10975
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10965
|
-
function _toPropertyKey(
|
|
10966
|
-
function _toPrimitive(
|
|
10976
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
10977
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10967
10978
|
/**
|
|
10968
10979
|
* Type of {@link Memo}.
|
|
10969
10980
|
*/
|
|
@@ -11240,8 +11251,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
11240
11251
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11241
11252
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11242
11253
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11243
|
-
function _toPropertyKey(
|
|
11244
|
-
function _toPrimitive(
|
|
11254
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11255
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11245
11256
|
/**
|
|
11246
11257
|
* Represents a muxed account for transactions and operations.
|
|
11247
11258
|
*
|
|
@@ -11523,18 +11534,17 @@ var _jsXdr = __webpack_require__(6263);
|
|
|
11523
11534
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11524
11535
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11525
11536
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11526
|
-
function _toPropertyKey(
|
|
11527
|
-
function _toPrimitive(
|
|
11528
|
-
function
|
|
11529
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11530
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11537
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11538
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11539
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
11531
11540
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
11532
11541
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
11533
|
-
function _isNativeReflectConstruct() {
|
|
11542
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11534
11543
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11544
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
11545
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11535
11546
|
var Int128 = exports.Int128 = /*#__PURE__*/function (_LargeInt) {
|
|
11536
11547
|
_inherits(Int128, _LargeInt);
|
|
11537
|
-
var _super = _createSuper(Int128);
|
|
11538
11548
|
/**
|
|
11539
11549
|
* Construct a signed 128-bit integer that can be XDR-encoded.
|
|
11540
11550
|
*
|
|
@@ -11546,7 +11556,7 @@ var Int128 = exports.Int128 = /*#__PURE__*/function (_LargeInt) {
|
|
|
11546
11556
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
11547
11557
|
args[_key] = arguments[_key];
|
|
11548
11558
|
}
|
|
11549
|
-
return
|
|
11559
|
+
return _callSuper(this, Int128, [args]);
|
|
11550
11560
|
}
|
|
11551
11561
|
_createClass(Int128, [{
|
|
11552
11562
|
key: "unsigned",
|
|
@@ -11580,18 +11590,17 @@ var _jsXdr = __webpack_require__(6263);
|
|
|
11580
11590
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11581
11591
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11582
11592
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11583
|
-
function _toPropertyKey(
|
|
11584
|
-
function _toPrimitive(
|
|
11585
|
-
function
|
|
11586
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11587
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11593
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11594
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11595
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
11588
11596
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
11589
11597
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
11590
|
-
function _isNativeReflectConstruct() {
|
|
11598
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11591
11599
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11600
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
11601
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11592
11602
|
var Int256 = exports.Int256 = /*#__PURE__*/function (_LargeInt) {
|
|
11593
11603
|
_inherits(Int256, _LargeInt);
|
|
11594
|
-
var _super = _createSuper(Int256);
|
|
11595
11604
|
/**
|
|
11596
11605
|
* Construct a signed 256-bit integer that can be XDR-encoded.
|
|
11597
11606
|
*
|
|
@@ -11603,7 +11612,7 @@ var Int256 = exports.Int256 = /*#__PURE__*/function (_LargeInt) {
|
|
|
11603
11612
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
11604
11613
|
args[_key] = arguments[_key];
|
|
11605
11614
|
}
|
|
11606
|
-
return
|
|
11615
|
+
return _callSuper(this, Int256, [args]);
|
|
11607
11616
|
}
|
|
11608
11617
|
_createClass(Int256, [{
|
|
11609
11618
|
key: "unsigned",
|
|
@@ -11636,21 +11645,21 @@ exports.ScInt = void 0;
|
|
|
11636
11645
|
var _xdr_large_int = __webpack_require__(6836);
|
|
11637
11646
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11638
11647
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11639
|
-
function _toPropertyKey(
|
|
11640
|
-
function _toPrimitive(
|
|
11648
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11649
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11641
11650
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11642
|
-
function
|
|
11643
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11644
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11651
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
11645
11652
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
11646
11653
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
11647
|
-
function _isNativeReflectConstruct() {
|
|
11654
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11648
11655
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11656
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
11657
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11649
11658
|
/**
|
|
11650
11659
|
* Provides an easier way to manipulate large numbers for Stellar operations.
|
|
11651
11660
|
*
|
|
11652
|
-
* You can instantiate this value either from
|
|
11653
|
-
* (whole numbers, or this will throw).
|
|
11661
|
+
* You can instantiate this "**s**mart **c**ontract integer" value either from
|
|
11662
|
+
* bigints, strings, or numbers (whole numbers, or this will throw).
|
|
11654
11663
|
*
|
|
11655
11664
|
* If you need to create a native BigInt from a list of integer "parts" (for
|
|
11656
11665
|
* example, you have a series of encoded 32-bit integers that represent a larger
|
|
@@ -11658,11 +11667,11 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
11658
11667
|
* example, you could do `new XdrLargeInt('u128', bytes...).toBigInt()`.
|
|
11659
11668
|
*
|
|
11660
11669
|
* @example
|
|
11661
|
-
* import { xdr, ScInt } from "@stellar/stellar-base";
|
|
11670
|
+
* import { xdr, ScInt, scValToBigInt } from "@stellar/stellar-base";
|
|
11662
11671
|
*
|
|
11663
11672
|
* // You have an ScVal from a contract and want to parse it into JS native.
|
|
11664
11673
|
* const value = xdr.ScVal.fromXDR(someXdr, "base64");
|
|
11665
|
-
* const bigi =
|
|
11674
|
+
* const bigi = scValToBigInt(value); // grab it as a BigInt
|
|
11666
11675
|
* let sci = new ScInt(bigi);
|
|
11667
11676
|
*
|
|
11668
11677
|
* sci.toNumber(); // gives native JS type (w/ size check)
|
|
@@ -11685,7 +11694,7 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
11685
11694
|
* ScInt(123456789123456789n);
|
|
11686
11695
|
* ScInt(1n << 140n);
|
|
11687
11696
|
* ScInt(-42);
|
|
11688
|
-
* ScInt
|
|
11697
|
+
* ScInt(scValToBigInt(scValU128)); // from above
|
|
11689
11698
|
*
|
|
11690
11699
|
* // If you know the type ahead of time (accessing `.raw` is faster than
|
|
11691
11700
|
* // conversions), you can specify the type directly (otherwise, it's
|
|
@@ -11713,15 +11722,12 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
11713
11722
|
*
|
|
11714
11723
|
* @throws {RangeError} if the `value` is invalid (e.g. floating point), too
|
|
11715
11724
|
* large (i.e. exceeds a 256-bit value), or doesn't fit in the `opts.type`
|
|
11716
|
-
*
|
|
11717
11725
|
* @throws {TypeError} on missing parameters, or if the "signedness" of `opts`
|
|
11718
11726
|
* doesn't match input `value`, e.g. passing `{type: 'u64'}` yet passing -1n
|
|
11719
|
-
*
|
|
11720
11727
|
* @throws {SyntaxError} if a string `value` can't be parsed as a big integer
|
|
11721
11728
|
*/
|
|
11722
11729
|
var ScInt = exports.ScInt = /*#__PURE__*/function (_XdrLargeInt) {
|
|
11723
11730
|
_inherits(ScInt, _XdrLargeInt);
|
|
11724
|
-
var _super = _createSuper(ScInt);
|
|
11725
11731
|
function ScInt(value, opts) {
|
|
11726
11732
|
var _opts$type;
|
|
11727
11733
|
_classCallCheck(this, ScInt);
|
|
@@ -11746,7 +11752,7 @@ var ScInt = exports.ScInt = /*#__PURE__*/function (_XdrLargeInt) {
|
|
|
11746
11752
|
throw RangeError("expected 64/128/256 bits for input (".concat(value, "), got ").concat(bitlen));
|
|
11747
11753
|
}
|
|
11748
11754
|
}
|
|
11749
|
-
return
|
|
11755
|
+
return _callSuper(this, ScInt, [type, value]);
|
|
11750
11756
|
}
|
|
11751
11757
|
return _createClass(ScInt);
|
|
11752
11758
|
}(_xdr_large_int.XdrLargeInt);
|
|
@@ -11778,18 +11784,17 @@ var _jsXdr = __webpack_require__(6263);
|
|
|
11778
11784
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11779
11785
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11780
11786
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11781
|
-
function _toPropertyKey(
|
|
11782
|
-
function _toPrimitive(
|
|
11783
|
-
function
|
|
11784
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11785
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11787
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11788
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11789
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
11786
11790
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
11787
11791
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
11788
|
-
function _isNativeReflectConstruct() {
|
|
11792
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11789
11793
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11794
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
11795
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11790
11796
|
var Uint128 = exports.Uint128 = /*#__PURE__*/function (_LargeInt) {
|
|
11791
11797
|
_inherits(Uint128, _LargeInt);
|
|
11792
|
-
var _super = _createSuper(Uint128);
|
|
11793
11798
|
/**
|
|
11794
11799
|
* Construct an unsigned 128-bit integer that can be XDR-encoded.
|
|
11795
11800
|
*
|
|
@@ -11801,7 +11806,7 @@ var Uint128 = exports.Uint128 = /*#__PURE__*/function (_LargeInt) {
|
|
|
11801
11806
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
11802
11807
|
args[_key] = arguments[_key];
|
|
11803
11808
|
}
|
|
11804
|
-
return
|
|
11809
|
+
return _callSuper(this, Uint128, [args]);
|
|
11805
11810
|
}
|
|
11806
11811
|
_createClass(Uint128, [{
|
|
11807
11812
|
key: "unsigned",
|
|
@@ -11835,18 +11840,17 @@ var _jsXdr = __webpack_require__(6263);
|
|
|
11835
11840
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11836
11841
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11837
11842
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11838
|
-
function _toPropertyKey(
|
|
11839
|
-
function _toPrimitive(
|
|
11840
|
-
function
|
|
11841
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11842
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11843
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11844
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11845
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
11843
11846
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
11844
11847
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
11845
|
-
function _isNativeReflectConstruct() {
|
|
11848
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
11846
11849
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11850
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
11851
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
11847
11852
|
var Uint256 = exports.Uint256 = /*#__PURE__*/function (_LargeInt) {
|
|
11848
11853
|
_inherits(Uint256, _LargeInt);
|
|
11849
|
-
var _super = _createSuper(Uint256);
|
|
11850
11854
|
/**
|
|
11851
11855
|
* Construct an unsigned 256-bit integer that can be XDR-encoded.
|
|
11852
11856
|
*
|
|
@@ -11858,7 +11862,7 @@ var Uint256 = exports.Uint256 = /*#__PURE__*/function (_LargeInt) {
|
|
|
11858
11862
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
11859
11863
|
args[_key] = arguments[_key];
|
|
11860
11864
|
}
|
|
11861
|
-
return
|
|
11865
|
+
return _callSuper(this, Uint256, [args]);
|
|
11862
11866
|
}
|
|
11863
11867
|
_createClass(Uint256, [{
|
|
11864
11868
|
key: "unsigned",
|
|
@@ -11899,8 +11903,8 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
11899
11903
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
11900
11904
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11901
11905
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
11902
|
-
function _toPropertyKey(
|
|
11903
|
-
function _toPrimitive(
|
|
11906
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11907
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /* eslint no-bitwise: ["error", {"allow": [">>"]}] */
|
|
11904
11908
|
/**
|
|
11905
11909
|
* A wrapper class to represent large XDR-encodable integers.
|
|
11906
11910
|
*
|
|
@@ -12180,8 +12184,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
12180
12184
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12181
12185
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
12182
12186
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
12183
|
-
function _toPropertyKey(
|
|
12184
|
-
function _toPrimitive(
|
|
12187
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
12188
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /* eslint-disable no-bitwise */
|
|
12185
12189
|
var ONE = 10000000;
|
|
12186
12190
|
var MAX_INT64 = '9223372036854775807';
|
|
12187
12191
|
|
|
@@ -13484,9 +13488,9 @@ exports.extendFootprintTtl = extendFootprintTtl;
|
|
|
13484
13488
|
var _xdr = _interopRequireDefault(__webpack_require__(4081));
|
|
13485
13489
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13486
13490
|
/**
|
|
13487
|
-
* Builds an operation to bump the
|
|
13488
|
-
* ledger keys). Its only parameter is the
|
|
13489
|
-
*
|
|
13491
|
+
* Builds an operation to bump the time-to-live of a footprint (read and written
|
|
13492
|
+
* ledger keys). Its only parameter is the new, absolute ledger sequence number
|
|
13493
|
+
* at which the entry will expire.
|
|
13490
13494
|
*
|
|
13491
13495
|
* The footprint itself is derived from the transaction (see
|
|
13492
13496
|
* {@link TransactionBuilder}'s `opts.sorobanData` parameter, which is a
|
|
@@ -13497,12 +13501,11 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
13497
13501
|
* @alias Operation.extendFootprintTtl
|
|
13498
13502
|
*
|
|
13499
13503
|
* @param {object} opts - object holding operation parameters
|
|
13500
|
-
* @param {number} opts.extendTo - the
|
|
13501
|
-
*
|
|
13502
|
-
* this transaction
|
|
13504
|
+
* @param {number} opts.extendTo - the absolute ledger sequence number at which
|
|
13505
|
+
* the transaction's ledger keys will now expire
|
|
13503
13506
|
* @param {string} [opts.source] - an optional source account
|
|
13504
13507
|
*
|
|
13505
|
-
* @returns {xdr.Operation}
|
|
13508
|
+
* @returns {xdr.Operation} an Extend Footprint TTL operation
|
|
13506
13509
|
* (xdr.ExtendFootprintTTLOp)
|
|
13507
13510
|
*/
|
|
13508
13511
|
function extendFootprintTtl(opts) {
|
|
@@ -15245,7 +15248,12 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
15245
15248
|
* // ]
|
|
15246
15249
|
*
|
|
15247
15250
|
* @example
|
|
15248
|
-
* import {
|
|
15251
|
+
* import {
|
|
15252
|
+
* nativeToScVal,
|
|
15253
|
+
* scValToNative,
|
|
15254
|
+
* ScInt,
|
|
15255
|
+
* xdr
|
|
15256
|
+
* } from '@stellar/stellar-base';
|
|
15249
15257
|
*
|
|
15250
15258
|
* let gigaMap = {
|
|
15251
15259
|
* bool: true,
|
|
@@ -15518,8 +15526,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
15518
15526
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15519
15527
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
15520
15528
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15521
|
-
function _toPropertyKey(
|
|
15522
|
-
function _toPrimitive(
|
|
15529
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15530
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15523
15531
|
/**
|
|
15524
15532
|
* A container class with helpers to convert between signer keys
|
|
15525
15533
|
* (`xdr.SignerKey`) and {@link StrKey}s.
|
|
@@ -15735,8 +15743,8 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
15735
15743
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15736
15744
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
15737
15745
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15738
|
-
function _toPropertyKey(
|
|
15739
|
-
function _toPrimitive(
|
|
15746
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15747
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15740
15748
|
/* Helper class to assist with formatting and parsing token amounts. */
|
|
15741
15749
|
var Soroban = exports.Soroban = /*#__PURE__*/function () {
|
|
15742
15750
|
function Soroban() {
|
|
@@ -15835,8 +15843,8 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15835
15843
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
15836
15844
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15837
15845
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15838
|
-
function _toPropertyKey(
|
|
15839
|
-
function _toPrimitive(
|
|
15846
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15847
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15840
15848
|
/**
|
|
15841
15849
|
* Supports building {@link xdr.SorobanTransactionData} structures with various
|
|
15842
15850
|
* items set to specific values.
|
|
@@ -16063,8 +16071,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16063
16071
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
16064
16072
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
16065
16073
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16066
|
-
function _toPropertyKey(
|
|
16067
|
-
function _toPrimitive(
|
|
16074
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16075
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /* eslint no-bitwise: ["error", {"allow": ["<<", ">>", "^", "&", "&="]}] */
|
|
16068
16076
|
var versionBytes = {
|
|
16069
16077
|
ed25519PublicKey: 6 << 3,
|
|
16070
16078
|
// G (when encoded in base32)
|
|
@@ -16474,15 +16482,15 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
16474
16482
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
16475
16483
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
16476
16484
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16477
|
-
function _toPropertyKey(
|
|
16478
|
-
function _toPrimitive(
|
|
16479
|
-
function
|
|
16480
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
16481
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
16485
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16486
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
16487
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
16482
16488
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
16483
16489
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
16484
|
-
function _isNativeReflectConstruct() {
|
|
16490
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
16485
16491
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
16492
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
16493
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
16486
16494
|
/**
|
|
16487
16495
|
* Use {@link TransactionBuilder} to build a transaction object. If you have an
|
|
16488
16496
|
* object or base64-encoded string of the transaction envelope XDR, use {@link
|
|
@@ -16504,7 +16512,6 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
16504
16512
|
*/
|
|
16505
16513
|
var Transaction = exports.Transaction = /*#__PURE__*/function (_TransactionBase) {
|
|
16506
16514
|
_inherits(Transaction, _TransactionBase);
|
|
16507
|
-
var _super = _createSuper(Transaction);
|
|
16508
16515
|
function Transaction(envelope, networkPassphrase) {
|
|
16509
16516
|
var _this;
|
|
16510
16517
|
_classCallCheck(this, Transaction);
|
|
@@ -16520,7 +16527,7 @@ var Transaction = exports.Transaction = /*#__PURE__*/function (_TransactionBase)
|
|
|
16520
16527
|
var tx = txEnvelope.tx();
|
|
16521
16528
|
var fee = tx.fee().toString();
|
|
16522
16529
|
var signatures = (txEnvelope.signatures() || []).slice();
|
|
16523
|
-
_this =
|
|
16530
|
+
_this = _callSuper(this, Transaction, [tx, signatures, fee, networkPassphrase]);
|
|
16524
16531
|
_this._envelopeType = envelopeType;
|
|
16525
16532
|
_this._memo = tx.memo();
|
|
16526
16533
|
_this._sequence = tx.seqNum().toString();
|
|
@@ -16847,8 +16854,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
16847
16854
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
16848
16855
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
16849
16856
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16850
|
-
function _toPropertyKey(
|
|
16851
|
-
function _toPrimitive(
|
|
16857
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16858
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
16852
16859
|
/**
|
|
16853
16860
|
* @ignore
|
|
16854
16861
|
*/
|
|
@@ -17121,8 +17128,8 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
17121
17128
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
17122
17129
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
17123
17130
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17124
|
-
function _toPropertyKey(
|
|
17125
|
-
function _toPrimitive(
|
|
17131
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
17132
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
17126
17133
|
/**
|
|
17127
17134
|
* Minimum base fee for transactions. If this fee is below the network
|
|
17128
17135
|
* minimum, the transaction will fail. The more operations in the
|
|
@@ -17159,7 +17166,7 @@ var TimeoutInfinite = exports.TimeoutInfinite = 0;
|
|
|
17159
17166
|
* source account.</p>
|
|
17160
17167
|
*
|
|
17161
17168
|
* <p><strong>Be careful about unsubmitted transactions!</strong> When you build
|
|
17162
|
-
* a transaction, stellar-sdk automatically increments the source account's
|
|
17169
|
+
* a transaction, `stellar-sdk` automatically increments the source account's
|
|
17163
17170
|
* sequence number. If you end up not submitting this transaction and submitting
|
|
17164
17171
|
* another one instead, it'll fail due to the sequence number being wrong. So if
|
|
17165
17172
|
* you decide not to use a built transaction, make sure to update the source
|
|
@@ -40690,6 +40697,9 @@ var gOPD = __webpack_require__(7296);
|
|
|
40690
40697
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
40691
40698
|
var $floor = GetIntrinsic('%Math.floor%');
|
|
40692
40699
|
|
|
40700
|
+
/** @typedef {(...args: unknown[]) => unknown} Func */
|
|
40701
|
+
|
|
40702
|
+
/** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
|
|
40693
40703
|
module.exports = function setFunctionLength(fn, length) {
|
|
40694
40704
|
if (typeof fn !== 'function') {
|
|
40695
40705
|
throw new $TypeError('`fn` is not a function');
|
|
@@ -40714,9 +40724,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
40714
40724
|
|
|
40715
40725
|
if (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {
|
|
40716
40726
|
if (hasDescriptors) {
|
|
40717
|
-
define(fn, 'length', length, true, true);
|
|
40727
|
+
define(/** @type {Parameters<define>[0]} */ (fn), 'length', length, true, true);
|
|
40718
40728
|
} else {
|
|
40719
|
-
define(fn, 'length', length);
|
|
40729
|
+
define(/** @type {Parameters<define>[0]} */ (fn), 'length', length);
|
|
40720
40730
|
}
|
|
40721
40731
|
}
|
|
40722
40732
|
return fn;
|
|
@@ -56836,7 +56846,7 @@ axios.default = axios;
|
|
|
56836
56846
|
/***/ ((module) => {
|
|
56837
56847
|
|
|
56838
56848
|
"use strict";
|
|
56839
|
-
module.exports = {"i8":"11.2.
|
|
56849
|
+
module.exports = {"i8":"11.2.1"};
|
|
56840
56850
|
|
|
56841
56851
|
/***/ })
|
|
56842
56852
|
|