mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
66c049bb35
* snaps-skunkworks@0.13.0 * snaps-skunkworks@0.14.0 * Fix test * Add long-running permission copy and icon * Run linting * Fix typo * Bump E2E version
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
import { endowmentPermissionBuilders } from '@metamask/snap-controllers';
|
|
import {
|
|
restrictedMethodPermissionBuilders,
|
|
selectHooks,
|
|
} from '@metamask/rpc-methods';
|
|
import { ExcludedSnapPermissions } from '../../../../../shared/constants/permissions';
|
|
|
|
/**
|
|
* @returns {Record<string, Record<string, unknown>>} All endowment permission
|
|
* specifications.
|
|
*/
|
|
export const buildSnapEndowmentSpecifications = () =>
|
|
Object.values(endowmentPermissionBuilders).reduce(
|
|
(allSpecifications, { targetKey, specificationBuilder }) => {
|
|
allSpecifications[targetKey] = specificationBuilder();
|
|
return allSpecifications;
|
|
},
|
|
{},
|
|
);
|
|
|
|
/**
|
|
* @param {Record<string, Function>} hooks - The hooks for the Snap
|
|
* restricted method implementations.
|
|
*/
|
|
export function buildSnapRestrictedMethodSpecifications(hooks) {
|
|
return Object.values(restrictedMethodPermissionBuilders).reduce(
|
|
(specifications, { targetKey, specificationBuilder, methodHooks }) => {
|
|
if (!ExcludedSnapPermissions.has(targetKey)) {
|
|
specifications[targetKey] = specificationBuilder({
|
|
methodHooks: selectHooks(hooks, methodHooks),
|
|
});
|
|
}
|
|
return specifications;
|
|
},
|
|
{},
|
|
);
|
|
}
|