mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
Deprecate broadcast client (#1976)
This commit is contained in:
@@ -5,6 +5,7 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
|
|||||||
## Unreleased
|
## Unreleased
|
||||||
### Added
|
### Added
|
||||||
* Export deriveAddress from ripple-keypairs in xrpl.js
|
* Export deriveAddress from ripple-keypairs in xrpl.js
|
||||||
|
* Deprecated BroadcastClient as it does not solve the reliabile connection problem.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Add missing filter types in AccountObjectType
|
* Add missing filter types in AccountObjectType
|
||||||
|
|||||||
@@ -3,6 +3,16 @@ import { Client, ClientOptions } from '.'
|
|||||||
/**
|
/**
|
||||||
* Client that can rely on multiple different servers.
|
* 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
|
* @category Clients
|
||||||
*/
|
*/
|
||||||
export default class BroadcastClient extends Client {
|
export default class BroadcastClient extends Client {
|
||||||
|
|||||||
Reference in New Issue
Block a user