Closed Shaptic closed 3 weeks ago
Hi @Shaptic, thanks for raising the issue. We've will look into this.
Support for new endpoint POST /transactions_async
added in https://github.com/Beans-BV/dotnet-stellar-sdk/pull/28.
The rest added in https://github.com/Beans-BV/dotnet-stellar-sdk/pull/22.
Please add support to your SDK for the following API changes.
Horizon Changes
Horizon v2.31.0 made the following changes:
POST /transactions_async
allows asynchronous transaction submission (code: stellar/go#5188).POST /transactions
now includes a thehash
in its timeout response, which may or may not require code changes depending on how your SDK handles transaction submission errors (code: stellar/go#5328).Soroban RPC Changes
RPC v21.4.0 added the following endpoints:
getTransactions
, which returns pages of transaction details (code: stellar/soroban-rpc#174).getFeeStats
, which returns aggregated fee statistics over a few ledgers (code: stellar/soroban-rpc#172).getVersionInfo
, which returns detailed information about the software versions the RPC server is running (code: stellar/soroban-rpc#132). Please keep in mind that this endpoint accidentally usedsnake_case
for response fields and it will be updated tocamelCase
(see soroban-rpc#164) as part of Protocol 22's breaking changes when the time comes.Reference
getFeeStats
.getTransactions
.getVersionInfo
./async_transactions
./transactions_async
) and stellar-sdk#1006 (/getFeeStats
), both included in v12.2.0.