mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
6ed72d6934
* add EncryptionPublicKeyController * update message-managers package
16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
declare module '@metamask/eth-keyring-controller' {
|
|
export class KeyringController {
|
|
signMessage: (...any) => any;
|
|
|
|
signPersonalMessage: (...any) => any;
|
|
|
|
signTypedMessage: (...any) => any;
|
|
|
|
getKeyringForAccount: (address: string) => Promise<{
|
|
type: string;
|
|
}>;
|
|
|
|
getEncryptionPublicKey: (address: string) => Promise<string>;
|
|
}
|
|
}
|