client -> wallet

This commit is contained in:
Mononaut 2023-09-11 18:55:26 +00:00
parent 4c625d6c96
commit ca88ef5189
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
export * from "./client";
export * from "./wallet";

View File

@ -5,7 +5,7 @@ import { AddressTracker } from './address';
type AddressEvent = 'added' | 'confirmed' | 'removed' | 'changed';
export class MempoolClient {
export class MempoolWallet {
private api: MempoolApi;
private ws: MempoolSocket;
private tracking: { [key: string]: AddressTracker } = {};