@metamask/snaps-rpc-methods
Version:
MetaMask Snaps JSON-RPC method implementations
29 lines • 1.13 kB
JavaScript
import { PermissionType, SubjectType } from "@metamask/permission-controller";
import { SnapEndowments } from "./enum.mjs";
const permissionName = SnapEndowments.EthereumProvider;
/**
* `endowment:ethereum-provider` returns the name of the ethereum global browser API.
* This is intended to populate the endowments of the
* SES Compartment in which a Snap executes.
*
* This populates the global scope with an EIP-1193 provider, which DOES NOT implement all legacy functionality exposed to dapps.
*
* @param _builderOptions - Optional specification builder options.
* @returns The specification for the network endowment.
*/
const specificationBuilder = (_builderOptions) => {
return {
permissionType: PermissionType.Endowment,
targetName: permissionName,
allowedCaveats: null,
endowmentGetter: (_getterOptions) => {
return ['ethereum'];
},
subjectTypes: [SubjectType.Snap],
};
};
export const ethereumProviderEndowmentBuilder = Object.freeze({
targetName: permissionName,
specificationBuilder,
});
//# sourceMappingURL=ethereum-provider.mjs.map