Skip to content

Commit

Permalink
Add credential store to account controller (#1313)
Browse files Browse the repository at this point in the history
* Add IsReadyToConnect, add credential store to account controller

* Trigger register device on store account

* Link register device rpc with account controller

* typo

* Interact with local credential store
  • Loading branch information
octol authored Oct 16, 2024
1 parent f74befe commit dd3484c
Show file tree
Hide file tree
Showing 11 changed files with 324 additions and 75 deletions.
4 changes: 4 additions & 0 deletions nym-vpn-core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions nym-vpn-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ serde_json = "1.0"
sha2 = "0.10"
signature = "2.2.0"
sqlx = "0.6.3"
strum = "0.26"
strum_macros = "0.26"
sysinfo = "0.31"
tap = "1.0.1"
tempfile = "3.13"
Expand Down
4 changes: 4 additions & 0 deletions nym-vpn-core/crates/nym-vpn-account-controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ license.workspace = true
[dependencies]
nym-compact-ecash.workspace = true
nym-config.workspace = true
nym-credential-storage.workspace = true
nym-credentials-interface.workspace = true
nym-ecash-time.workspace = true
nym-http-api-client.workspace = true
nym-sdk.workspace = true
nym-vpn-api-client = { path = "../nym-vpn-api-client" }
nym-vpn-store = { path = "../nym-vpn-store" }
reqwest.workspace = true
strum.workspace = true
strum_macros.workspace = true
thiserror.workspace = true
tokio-util.workspace = true
tokio.workspace = true
Expand Down
Loading

0 comments on commit dd3484c

Please sign in to comment.