We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6578e8a commit 18daffbCopy full SHA for 18daffb
src/attachSDK.ts
@@ -19,7 +19,8 @@ export default async function attachSDK(): Promise<ICreditAccountsService> {
19
const config: Config = DI.get(DI.Config);
20
const client: Client = DI.get(DI.Client);
21
const logger: ILogger = DI.create(DI.Logger, "sdk");
22
- const multicallSpy: MulticallSpy = DI.get(DI.MulticallSpy);
+ const multicallSpy: MulticallSpy = DI.create(DI.MulticallSpy);
23
+ DI.set(DI.MulticallSpy, multicallSpy);
24
25
await client.launch();
26
let optimisticTimestamp: number | undefined;
0 commit comments