Results 97 issues of George

- As of v2.1, we don't need the `TMPDIR` workaround and should prefer setting `--captive-core-storage-path`. - We also do more validation on the input TOML for `--captive-core-config-path`, and we should...

When closing this issue, please respond with **at least** the GitHub release that supports Protocol 20. # Protocol 20: Soroban The next version of the Stellar network will feature a...

## 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...

With the introduction of Protocol 14 and specifically [CAP-33](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0033.md), accounts can now be created **without** a starting balance when they are sponsored. The [CAP notes](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0033.md#operation-validity-changes): > **Operation Validity Changes** >...

The `getVersionInfo` RPC call was introduced in https://github.com/stellar/soroban-rpc/pull/132 with the following API response: ```typescript interface Response { version: string; commit_hash: string; build_time_stamp: string; captive_core_version: string; protocol_version: number; // uint32 }...

rpc-sdk-scrum

The `getFeeStats` method was introduced in https://github.com/stellar/soroban-rpc/pull/172 with the following response schema: ```typescript interface Response { sorobanInclusionFee: FeeDistribution; inclusionFee: FeeDistribution; latestLedger: number; // uint32 } interface FeeDistribution { max: string;...

rpc-sdk-scrum

Ideally we would be able to fully run `yarn lint`, but that would require a lot more code changes to accomplish, so this is a halfway measure. Closes #967.

This release includes a feature and some bug fixes. ### Added * `TransactionBuilder` now has `addOperationAt` and `clearOperationAt` methods to allow manipulation of individual operations ([#757](https://github.com/stellar/js-stellar-base/pull/757)). ### Fixed * Improve...

rpc-sdk-scrum

There was a lengthy discussion [on Discord](https://discord.com/channels/897514728459468821/1237487237843779594/1237487237843779594) about how the naming of `extendTo` seems to imply an absolute ledger sequence as the parameter (i.e. _extend_ the lifetime _to_ ledger N)....