Skip to content

Commit 7747c72

Browse files
authored
Merge pull request #320 from docknetwork/AgneCaunt-patch-1
Update README.md
2 parents a360ff3 + 68b679f commit 7747c72

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Dock Wallet SDK
1+
# Truvera Wallet SDK
22

33
The [Wallet SDK](https://github.com/docknetwork/react-native-sdk) enables you to build a Verifiable Credentials wallet inside your app and allows your users to receive, store, and manage their DOCK tokens too. This was built for mobile applications with added support for Polkadot-JS.
44

55
To use the wallet-sdk, all you need to do is wrap your app in a `WalletSDKProvider` and start building your wallet.
66

77
Using [polkadot-js](https://polkadot.js.org/) libraries in React Native is a challenge, due to the lack of WebAssembly support.
8-
The Dock Wallet SDK handles all the Polkadot Web Assembly in a WebView, sending messages to the React Native thread through a JSON RPC layer.
8+
The Truvera Wallet SDK handles all the Polkadot Web Assembly in a WebView, sending messages to the React Native thread through a JSON RPC layer.
99

10-
Dock Mobile SDK supports devices that have Android 8.1 or higher and iOS 11 or higher.
10+
Truvera Mobile SDK supports devices that have Android 8.1 or higher and iOS 11 or higher.
1111

1212
## Installation
1313
```js
@@ -67,16 +67,16 @@ export default App;
6767

6868
## Running on other platforms
6969

70-
Check the following repository for detailed examples for running the Dock Wallet SDK on NodeJS, Web, and Flutter.
70+
Check the following repository for detailed examples for running the Truvera Wallet SDK on NodeJS, Web, and Flutter.
7171

72-
https://github.com/docknetwork/wallet-sdk-examples
72+
[https://github.com/docknetwork/wallet-sdk-examples](https://github.com/docknetwork/wallet-sdk-examples)
7373

7474

7575
## Docs
7676

7777
For more details you can check the [getting started guide](https://github.com/docknetwork/react-native-sdk/blob/master/docs/getting-started.md)
7878

79-
https://docknetwork.github.io/react-native-sdk/
79+
[https://docknetwork.github.io/react-native-sdk/](https://docknetwork.github.io/react-native-sdk/)
8080

8181
## Features
8282
- [Biometric Plugin](https://github.com/docknetwork/react-native-sdk/blob/master/docs/biometric-plugin.md)

docs/biometric-plugin.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ The biometric ID should not contain the user's actual biometric information. Whe
9898

9999
## Using the Biometric Service Plugin
100100

101-
* Create a [Dock API key](../../dock-certs/creating-api-keys-and-webhook-endpoints.md)
101+
* Create a [Truvera API key](https://docs.truvera.io/workspace/creating-api-keys-and-webhook-endpoints)
102102
* Wrap the Dock API in your mobile API (which is usually protected with an app username / password)
103103
* When a specific install does a biometric check, call your mobile API to issue a biometric credential
104104
* The biometric binding nested attributes in the primary credential should include the ecosystem and biometric issuer alongside the biometric ID
105-
* Your mobile API calls the Dock API to do issuance to the DID
106-
* In order to use the ecosystem definition of the credentials, the Dock API should be used to query the ecosystem that is found in the credential for the “\*biometric check” schema
105+
* Your mobile API calls the Truvera API to do issuance to the DID
106+
* In order to use the ecosystem definition of the credentials, the Truvera API should be used to query the ecosystem that is found in the credential for the “\*biometric check” schema
107107
* Mobile API should include the DID that the credential is pushed to
108108
* This allows the biometric check credential to be managed in the ecosystem where other participants can rely on it and VPI can be enforced
109109
* Biometric Service Plugin monitors credentials received. When a new biometric check credential is received, old ones can be deleted from wallet storage.

docs/cloud-wallet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const {pullDocuments} = await initializeCloudWallet({
7171
await pullDocuments();
7272
```
7373

74-
The `pullDocuments` function synchronizes the EDV and the wallet by comparing documents and updating the data store accordingly.Documents can be credentials or messages.
74+
The `pullDocuments` function synchronizes the EDV and the wallet by comparing documents and updating the data store accordingly. Documents can be credentials or messages.
7575

7676
### Step 4: Create a New Wallet
7777

docs/getting-started.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Dock Wallet SDK
1+
# Truvera Wallet SDK
22

3-
This guide walks you through the process of setting up the Dock Wallet SDK, creating a wallet, managing decentralized identifiers (DIDs), adding credentials, and verifying them.
3+
This guide walks you through the process of setting up the Truvera Wallet SDK, creating a wallet, managing decentralized identifiers (DIDs), adding credentials, and verifying them.
44

55
## Installation
66

@@ -89,7 +89,7 @@ In this example, the credential is fetched from a specified URI and imported int
8989

9090
### 5. Verify a Credential
9191

92-
The Dock Wallet SDK provides built-in functionality for verifying credentials. This is especially useful when interacting with third parties who need to verify your credentials. The verification controller manages this process. Below is an example of how to start a verification, select which credentials to reveal, create a presentation, and submit it for verification.
92+
The Truvera Wallet SDK provides built-in functionality for verifying credentials. This is especially useful when interacting with third parties who need to verify your credentials. The verification controller manages this process. Below is an example of how to start a verification, select which credentials to reveal, create a presentation, and submit it for verification.
9393

9494
```ts
9595
const {

0 commit comments

Comments
 (0)