George
George
**Describe the problem** It's difficult to interact with ecosystem-level agreements (aka SEPs) in the JS SDK. For example, the entirety of SEP-10 is lumped into [utils.ts](https://github.com/stellar/js-stellar-sdk/blob/master/src/utils.ts). This makes it difficult...
stellar/js-stellar-base has this, and I believe the sdk should too.
While many parts of the SDK have been updated to enable the new signer type from [CAP-40](https://stellar.org/protocol/cap-40), the `SetOptions` operation has not. As part of this, new helpers exist: ```typescript...
**Is your feature request related to a problem? Please describe.** There are a lot of ways to represent an account on the Stellar network. You could use a `Keypair`, an...
These should probably be `const`ified in general :thinking: _Originally posted by @Shaptic in https://github.com/stellar/js-stellar-base/pull/397#discussion_r598909151_
### What This adds two new command line parameters: - `--ledger-cache-preload=`, which starts a goroutine in the background to fill the cache with `count` ledgers - `--ledger-cache-preload-start=`, which specifies the...
Reference: https://github.com/stellar/go/pull/4615#discussion_r982765560. We should add signal handling to both the main service and other background goroutines. As it stands today, if you Ctrl+C the web server while it's doing _normal_...
We currently have per-checkpoint indices, but per-ledger ones would be useful for comparisons. We should use the single-process index builder to minimize deployment complexity until #4566 is resolved. You can...
## Protocol 19 SDK Support Once voted in, the release of Protocol 19 will introduce two new CAPs: - [**CAP-21**](https://stellar.org/protocol/cap-21), which introduces new transaction validity preconditions, and - [**CAP-40**](https://stellar.org/protocol/cap-40), which...
Muxed accounts (introduced into the protocol in [CAP-27](https://stellar.org/protocol/cap-27) and defined in its string form in [SEP-23](https://stellar.org/protocol/sep-23)) **should now be supported by default**. Previously, we asked that they be hidden behind...