Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bootstrap recovery manager plugin repository #9160

Open
Tracked by #6919
ishantiw opened this issue Nov 29, 2023 · 0 comments
Open
Tracked by #6919

Bootstrap recovery manager plugin repository #9160

ishantiw opened this issue Nov 29, 2023 · 0 comments

Comments

@ishantiw
Copy link
Member

ishantiw commented Nov 29, 2023

Description

  • Create lisk-framework-recovery-plugin repo under framework-plugins
  • Create recovery_plugin.ts, types.ts, constants.ts, db.ts, endpoint.ts and index.ts files
  • Declare RecoveryPluginConfig interface and declare RecoveryPlugin class extending BasePlugin.
enum ConnectionMode {
	ipc = 'ipc',
	ws = 'ws'
};
interface ConnectionObj {
	mode: ConnectionMode,
	connectionString: string;
};

interface RecoveryPluginConfig {
	mainchainClientInfo: ConnectionObj,
	encryptedPrivateKey: string 
}
  • Add empty test files for each file under /test

Acceptance Criteria

  • Should have all the files present
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants