From f2b9d9be25f256a6bbd3589a7607dc20ec2c5fb2 Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:51:22 +0200 Subject: [PATCH 1/6] Readme update to truvera.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 9732a69..eb971ce 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ # Wallet sdk examples -This repository contains examples for working with the Dock Wallet SDK. +This repository contains examples for working with the Truvera Wallet SDK. https://github.com/docknetwork/react-native-sdk From c1a1051a5045374a85c5a9d01fb46272e4adc971 Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:55:58 +0200 Subject: [PATCH 2/6] update flutter example.md --- flutter-example/readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flutter-example/readme.md b/flutter-example/readme.md index 912cf39..8791e22 100644 --- a/flutter-example/readme.md +++ b/flutter-example/readme.md @@ -1,6 +1,6 @@ -### Flutter App Using Dock Wallet SDK WebView +### Flutter App Using Truvera Wallet SDK WebView -This Flutter project demonstrates how to integrate Dock's Wallet SDK (written in JavaScript) by loading it within a WebView. The app utilizes JSON-RPC calls to interact with the wallet’s functionality, allowing credential management and import via a web bundle. +This Flutter project demonstrates how to integrate Truvera's Wallet SDK (written in JavaScript) by loading it within a WebView. The app utilizes JSON-RPC calls to interact with the wallet’s functionality, allowing credential management and import via a web bundle. #### **Project Structure** @@ -43,7 +43,7 @@ flutter-project/ #### **Features** -- **JSON-RPC Communication**: The `JsonRpcWebView` widget establishes a JSON-RPC interface with the WebView, enabling interaction with Dock’s Wallet SDK methods such as `importCredential`, `getCredentials`, and `clearData`. +- **JSON-RPC Communication**: The `JsonRpcWebView` widget establishes a JSON-RPC interface with the WebView, enabling interaction with Truvera’s Wallet SDK methods such as `importCredential`, `getCredentials`, and `clearData`. - **UI Components**: The UI provides options to view, import, refresh, and clear credentials using simple controls. #### **Usage** From e6a999d7290a8939c30cc32844acd258820bbeb1 Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:57:46 +0200 Subject: [PATCH 3/6] Update flutter webview.md --- flutter-webview/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flutter-webview/README.md b/flutter-webview/README.md index 7e5d675..c95497b 100644 --- a/flutter-webview/README.md +++ b/flutter-webview/README.md @@ -2,7 +2,7 @@ **WebView Project** -This project serves as the WebView logic implementation for Dock's Wallet SDK. It creates a JavaScript bundle that handles wallet-related operations and sends data between the JavaScript and Flutter environments using a JSON-RPC protocol. +This project serves as the WebView logic implementation for Truvera's Wallet SDK. It creates a JavaScript bundle that handles wallet-related operations and sends data between the JavaScript and Flutter environments using a JSON-RPC protocol. #### **Project Structure** @@ -53,5 +53,5 @@ After testing, you can copy `build/` files to your Flutter project’s assets fo #### **Notes** -- This WebView project is designed to integrate specifically with Dock’s Wallet SDK. Refer to the Wallet SDK documentation for more details on available methods and configurations. +- This WebView project is designed to integrate specifically with Truvera’s Wallet SDK. Refer to the Wallet SDK documentation for more details on available methods and configurations. From 0dc1d70a0938e2224d66a854330692957c2d68b4 Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:00:56 +0200 Subject: [PATCH 4/6] Update readme.md --- nodejs-example/readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nodejs-example/readme.md b/nodejs-example/readme.md index 1c7fb0e..35967ec 100644 --- a/nodejs-example/readme.md +++ b/nodejs-example/readme.md @@ -1,5 +1,5 @@ # Wallet sdk web examples -This is an examples on how to install the Dock Wallet SDK in a nodejs application. +This is an examples on how to install the Truvera Wallet SDK in a nodejs application. ## Installation steps @@ -14,16 +14,16 @@ You can read more about OID4VC in [our docs](https://docs.dock.io/developer-docu ### Step 1: Generate an OpenID Issuer and Credential Offer -To get started, define your environment variables to access the Certs API: +To get started, define your environment variables to access the Truvera API: ```bash -export CERTS_API_KEY= -export CERTS_API_URL=https://api.dock.io +export CERTS_API_KEY= +export CERTS_API_URL=https://api.truvera.io export ISSUER_DID= ``` Note: -* API keys can be defined on the [API Keys](https://certs.dock.io/keys) page in Certs -* Issuer DIDs can be viewed on the [Organization Profiles](https://certs.dock.io/dids) page in Certs +* API keys can be defined on the [API Keys](https://truvera.io/keys) page in Truvera Workspace +* Issuer DIDs can be viewed on the [Organization Profiles](https://truvera.io/dids) page in Truvera Workspace Next, generate the OpenID issuer and the credential offer by running the following command: From 5bb145f2124246a8e506afcd516fef2c0ce5ad16 Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:02:06 +0200 Subject: [PATCH 5/6] Update README.md --- react-native-example/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-example/README.md b/react-native-example/README.md index ebf94b4..aa408bb 100644 --- a/react-native-example/README.md +++ b/react-native-example/README.md @@ -1,5 +1,5 @@ # Wallet SDK Demo -React-native project running the dock wallet-sdk +React-native project running the Truvera wallet-sdk # Installation From 0a44abc45771e519ed41e78fffaca9a17f7b305a Mon Sep 17 00:00:00 2001 From: AgneCaunt <139773510+AgneCaunt@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:03:12 +0200 Subject: [PATCH 6/6] Update README.md --- web-example/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-example/README.md b/web-example/README.md index b45c350..91721b8 100644 --- a/web-example/README.md +++ b/web-example/README.md @@ -1,6 +1,6 @@ # Cloud Wallet Demo -This web application leverages the **Dock Wallet SDK** and **Dock Cloud Wallet** for managing credentials and data storage. +This web application leverages the **Truvera Wallet SDK** and **Truvera Cloud Wallet** for managing credentials and data storage. ## Usage Instructions