Skip to content

Commit

Permalink
Filled CHANGELOG and migration guide to reflect changes in SSE
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Zajkowski committed Jun 24, 2024
1 parent 284b1ef commit 8444bdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ This release candidate is compatible with [#node RC2](https://github.com/casper-
- UniqAddress
- DeployHeader
- Deploy
- variants `TransactionProcessed`, `TransactionExpired` and `TransactionAccepted` of enum `EventName` in `EventStream.ts`

### Changed

Expand All @@ -64,6 +65,7 @@ This release candidate is compatible with [#node RC2](https://github.com/casper-
- `BalanceServiceByJsonRPC` class
- `execution_results` field in `GetDeployResult` was removed. This affects `CasperServiceByJsonRPC.getDeployInfo` method return types.
- field `block` of `GetBlockResult`. This change affects `CasperServiceByJsonRPC.getBlockInfo` method return type
- variants `DeployProcessed` and `DeployAccepted` of enum `EventName` in `EventStream.ts`

## [2.15.5] - 2024-04-18

Expand Down
8 changes: 4 additions & 4 deletions resources/migration-guide_v2-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ This method is used to send a `Transaction` for execution. A `Transaction` is a

This service was removed from 3.0.0 release. It has only one method - `getAccountBalance`. Please use `CasperServiceByJsonRPC.getAccountBalance` instead.

## Speculative endpoints
## EventName

#TODO
Enum `EventName` lost two values: `DeployProcessed` and `DeployAccepted`. `TransactionAccepted`, `TransactionProcessed` and `TransactionExpired` were added. Deploys stopped being a first-entity in favor of Transactions, so they all Deploys will be, in the SSE streams, communicated as `Transaction*` events. Please bear in mind that the internal structure of the events did change significantly.

```
## Speculative endpoints

```
Speculative endpoints are currently not supported by the JS SDK

0 comments on commit 8444bdd

Please sign in to comment.