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.
22 lines
487 B
22 lines
487 B
export const WALLET_PREFIX = 'wallet_';
|
|
|
|
export const NOTIFICATION_NAMES = {
|
|
accountsChanged: 'metamask_accountsChanged',
|
|
unlockStateChanged: 'metamask_unlockStateChanged',
|
|
chainChanged: 'metamask_chainChanged',
|
|
};
|
|
|
|
export const LOG_IGNORE_METHODS = [
|
|
'wallet_registerOnboarding',
|
|
'wallet_watchAsset',
|
|
];
|
|
|
|
export const LOG_METHOD_TYPES = {
|
|
restricted: 'restricted',
|
|
internal: 'internal',
|
|
};
|
|
|
|
/**
|
|
* The permission activity log size limit.
|
|
*/
|
|
export const LOG_LIMIT = 100;
|
|
|