/** * The Bitnode client module. * * It implements a Bitnode gateway client that can be used to connect to a Bitnode instance and interact with it. * * To connect to a Bitnode instance, create a new instance of the {@link Bitnode} class and call its * {@link Bitnode.connect} method. * * ```typescript * const bitnode = new Bitnode('ws://localhost:12358/ws'); * await bitnode.connect(); * ``` * * @packageDocumentation */ export * from './bitnode';