We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f5372 commit 79f3763Copy full SHA for 79f3763
packages/permissions-kernel-snap/snap.manifest.ts
@@ -1,8 +1,6 @@
1
/* eslint-disable no-restricted-globals */
2
import type { SnapManifest } from '@metamask/7715-permissions-shared/types';
3
4
-const gatorSnapId = process.env.GATOR_PERMISSIONS_PROVIDER_SNAP_ID;
5
-
6
const manifest: SnapManifest = {
7
version: '0.2.0',
8
description: 'Manage onchain 7715 permissions',
@@ -25,16 +23,11 @@ const manifest: SnapManifest = {
25
23
initialPermissions: {
26
24
'endowment:rpc': {
27
dapps: true,
28
- snaps: true,
+ snaps: false,
29
},
30
31
platformVersion: '8.1.0',
32
manifestVersion: '0.1',
33
};
34
35
-if (gatorSnapId) {
36
- manifest.initialConnections = {
37
- [gatorSnapId]: {},
38
- };
39
-}
40
export default manifest;
0 commit comments