We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
getSdk
1 parent fad6c64 commit a84f9c8Copy full SHA for a84f9c8
src/lib/utils.ts
@@ -31,7 +31,10 @@ export function getDefaultAccounts(): MemoryAccount[] {
31
);
32
}
33
34
-export function getSdk(options: {}): AeSdk {
+export function getSdk(
35
+ options: ConstructorParameters<typeof Node>[1] &
36
+ ConstructorParameters<typeof CompilerHttp>[1],
37
+): AeSdk {
38
const instance = new Node(networks.devmode.nodeUrl, options);
39
40
return new AeSdk({
0 commit comments