feat: add support for public key management

This commit is contained in:
Prad Nukala 2024-10-07 14:02:04 -04:00
parent f7f0c11587
commit 55f3e0f7e0
3 changed files with 13 additions and 2 deletions

Binary file not shown.

View File

@ -20,6 +20,7 @@
"typescript": "^4.9.0" "typescript": "^4.9.0"
}, },
"dependencies": { "dependencies": {
"node-fetch": "^3.3.2" "node-fetch": "^3.3.2",
"sonr-es": "^0.5.3"
} }
} }

View File

@ -31,7 +31,17 @@ class ModalForm {
} }
// ╭───────────────────────────────────────────────────────────╮ // ╭───────────────────────────────────────────────────────────╮
// │ Homepage View Model │ // │ Registration Components │
// ╰───────────────────────────────────────────────────────────╯
class PublicKeyCreationOptions {
}
class PublicKeyRequestOptions {
}
// ╭───────────────────────────────────────────────────────────╮
// │ View Models │
// ╰───────────────────────────────────────────────────────────╯ // ╰───────────────────────────────────────────────────────────╯
class Hero { class Hero {