You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
893 B
28 lines
893 B
export const CaveatTypes = Object.freeze({
|
|
restrictReturnedAccounts: 'restrictReturnedAccounts',
|
|
});
|
|
|
|
export const RestrictedMethods = Object.freeze({
|
|
eth_accounts: 'eth_accounts',
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
snap_confirm: 'snap_confirm',
|
|
snap_notify: 'snap_notify',
|
|
snap_manageState: 'snap_manageState',
|
|
'snap_getBip44Entropy_*': 'snap_getBip44Entropy_*',
|
|
'wallet_snap_*': 'wallet_snap_*',
|
|
///: END:ONLY_INCLUDE_IN
|
|
});
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
export const PermissionNamespaces = Object.freeze({
|
|
snap_getBip44Entropy_: 'snap_getBip44Entropy_*',
|
|
wallet_snap_: 'wallet_snap_*',
|
|
});
|
|
|
|
export const EndowmentPermissions = Object.freeze({
|
|
'endowment:network-access': 'endowment:network-access',
|
|
});
|
|
|
|
// Methods / permissions in external packages that we are temporarily excluding.
|
|
export const ExcludedSnapPermissions = new Set([]);
|
|
///: END:ONLY_INCLUDE_IN
|
|
|