@stellar/stellar-sdk 11.0.0 → 11.0.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.
@@ -181,7 +181,7 @@ export declare class Server {
181
181
  * @see https://soroban.stellar.org/api/methods/getEvents
182
182
  * @example
183
183
  * server.getEvents({
184
- * startLedger: "1000",
184
+ * startLedger: 1000,
185
185
  * filters: [
186
186
  * {
187
187
  * type: "contract",
@@ -328,7 +328,7 @@ var Server = exports.Server = function () {
328
328
  limit: request.limit
329
329
  })
330
330
  }, request.startLedger && {
331
- startLedger: request.startLedger.toString()
331
+ startLedger: request.startLedger
332
332
  })));
333
333
  case 1:
334
334
  case "end":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar/stellar-sdk",
3
- "version": "11.0.0",
3
+ "version": "11.0.1",
4
4
  "description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
5
5
  "keywords": [
6
6
  "stellar"