We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1e008f commit f4db683Copy full SHA for f4db683
.changeset/fuzzy-ants-cry.md
@@ -0,0 +1,5 @@
1
+---
2
+"@latticexyz/entrykit": patch
3
4
+
5
+Updated error message for unsupported methods in `userOpExecutor`.
packages/entrykit/src/quarry/transports/userOpExecutor.ts
@@ -64,7 +64,7 @@ export function userOpExecutor({ executor }: { executor: ConnectedClient }): Tra
64
return await estimateUserOperationGas(params);
65
}
66
67
- throw new Error("Method not implemented.");
+ throw new Error(`userOpExecutor: method "${method}" not supported`);
68
};
69
70
return createTransport({
0 commit comments