@etherspot/modular-sdk
Version:
Etherspot Modular SDK - build with ERC-7579 smart accounts modules
18 lines • 593 B
TypeScript
import { ErrorSubject, Service } from './common/index.js';
import { NetworkService } from './network/index.js';
import { WalletService } from './wallet/index.js';
export declare class Context {
readonly services: {
networkService: NetworkService;
walletService: WalletService;
};
readonly error$: ErrorSubject;
private readonly attached;
constructor(services: {
networkService: NetworkService;
walletService: WalletService;
});
attach<T extends Service>(service: T): void;
destroy(): void;
}
//# sourceMappingURL=context.d.ts.map