init: inital commit

This commit is contained in:
2024-09-29 12:58:05 +05:30
commit 2881d9b860
11 changed files with 785 additions and 0 deletions

24
types.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
export interface Config {
config: {
con: string;
fid: string;
ant: string;
dir: string;
keystore: string;
recoverystore: string;
phrasestore: string;
recphrasestore: string;
};
}
export interface ConData {
privateKey: string;
fidkey: string;
consalt: string;
}
export interface FidData {
privateKey: string;
salt: string;
code: number;
}