9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
module.exports.description = "Verify a message was signed by a specific key"
|
|
|
|
module.exports.builder = (yargs) => {
|
|
|
|
}
|
|
|
|
module.exports.handler = (argv) => {
|
|
console.log("Verify message using one of the keys");
|
|
} |