We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c2c50 commit 6cc7dadCopy full SHA for 6cc7dad
packages/snaps-simulation/src/middleware/engine.ts
@@ -45,8 +45,12 @@ export function createJsonRpcEngine({
45
}: CreateJsonRpcEngineOptions) {
46
const engine = new JsonRpcEngine();
47
engine.push(createMockMiddleware(store));
48
+
49
+ // The hooks here do not match the hooks used by the clients, so this
50
+ // middleware should not be used outside of the simulation environment.
51
engine.push(createInternalMethodsMiddleware(restrictedHooks));
52
engine.push(createSnapsMethodMiddleware(true, permittedHooks));
53
54
engine.push(permissionMiddleware);
55
engine.push(
56
createFetchMiddleware({
0 commit comments