Skip to content

Commit 733da20

Browse files
author
223880
committed
Fix cli and roadmap
1 parent a7b6c31 commit 733da20

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ Import packages or modules for build your own application
9797
- [ ] Nakamoto version in 2025
9898
- [x] Oracle (WIP)
9999
- [x] Compile code
100-
- [ ] Frost
100+
- [x] Frost
101101
- [ ] Musig2
102-
- [ ] Miniscript
102+
- [x] Miniscript
103103
- [x] CLI
104104
- [ ] Breez SDK compatible
105105
- [ ] DLC message

src/cli/cli.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env node
22

33
const { program } = require('commander');
4-
const { myLibraryFunction } = require('./lib'); // Import your library functions here
4+
const { lightning_channel } = require('./lightning_channel');
55

66
program
77
.version('1.0.0')
8-
.description('A CLI for My Library')
9-
.option('-n, --name <name>', 'Provide a name')
8+
.description('A CLI for Javascript')
9+
.option('-n, --ligthnin <option', 'Lightning Channel')
1010
.action((options) => {
11-
console.log('Name:', options.name);
12-
myLibraryFunction(options.name); // Call the library function
11+
console.log('Lightning Channel:', options.name);
12+
myLibraryFunction(options.lightning_channel); // Call the library function
1313
});
1414

1515
program.parse(process.argv);

src/dlc/frost.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ const Keygen = {
1515
KeygenError_InvalidKey
1616

1717
}
18+
19+
module.exports = Keygen;

0 commit comments

Comments
 (0)