Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

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
Contributor

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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants