Deprecate broadcast client (#1976)

This commit is contained in:
Jackson Mills
2022-04-29 14:33:22 -07:00
committed by GitHub
parent 1c6b175619
commit 0a3ad3140c
2 changed files with 11 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
## Unreleased
### Added
* Export deriveAddress from ripple-keypairs in xrpl.js
* Deprecated BroadcastClient as it does not solve the reliabile connection problem.
### Fixed
* Add missing filter types in AccountObjectType

View File

@@ -3,6 +3,16 @@ import { Client, ClientOptions } from '.'
/**
* Client that can rely on multiple different servers.
*
* @deprecated since version 2.2.0.
* Will be deleted in version 3.0.0.
*
* Currently this implementation does not provide better reliability.
* To get better reliability, implement reconnect/error handling logic
* and choose a reliable endpoint.
*
* If you need the ability to fall-back to different endpoints, consider
* using [xrpl-client](https://github.com/XRPL-Labs/xrpl-client/)
*
* @category Clients
*/
export default class BroadcastClient extends Client {