Skip to content

Commit aad9fe8

Browse files
authored
Merge pull request #50 from docknetwork/chore/rename-wallet-sdk
rename wallet-sdk repo
2 parents fe23cb6 + fbd82f7 commit aad9fe8

11 files changed

Lines changed: 25 additions & 25 deletions

File tree

credential-wallet/wallet-sdk/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dock Wallet SDK
22

3-
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.
3+
The [Wallet SDK](https://github.com/docknetwork/wallet-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

@@ -74,11 +74,11 @@ https://github.com/docknetwork/wallet-sdk-examples
7474

7575
## Docs
7676

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

79-
https://docknetwork.github.io/react-native-sdk/
79+
https://docknetwork.github.io/wallet-sdk/
8080

8181
## Features
82-
- [Biometric Plugin](https://github.com/docknetwork/react-native-sdk/blob/master/docs/biometric-plugin.md)
83-
- [Ecosystem Tools](https://github.com/docknetwork/react-native-sdk/blob/master/docs/ecosystem-tools.md)
84-
- [Cloud Wallet](https://github.com/docknetwork/react-native-sdk/blob/master/docs/cloud-wallet.md)
82+
- [Biometric Plugin](https://github.com/docknetwork/wallet-sdk/blob/master/docs/biometric-plugin.md)
83+
- [Ecosystem Tools](https://github.com/docknetwork/wallet-sdk/blob/master/docs/ecosystem-tools.md)
84+
- [Cloud Wallet](https://github.com/docknetwork/wallet-sdk/blob/master/docs/cloud-wallet.md)

credential-wallet/wallet-sdk/biometric-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The biometric ID should not contain the user's actual biometric information. Whe
111111

112112
## Adding a custom biometric provider
113113

114-
Adding a custom biometric provider will require the development of the plugin following the interface defined at [packages/react-native/lib/default-biometrics-plugin.ts](https://github.com/docknetwork/react-native-sdk/blob/master/packages/react-native/lib/default-biometrics-plugin.ts). The plugin should implement the following methods:
114+
Adding a custom biometric provider will require the development of the plugin following the interface defined at [packages/react-native/lib/default-biometrics-plugin.ts](https://github.com/docknetwork/wallet-sdk/blob/master/packages/react-native/lib/default-biometrics-plugin.ts). The plugin should implement the following methods:
115115

116116
* hasProofOfBiometrics: Checks if the verification template is asking for biometric attributes.
117117
* enrollBiometrics: Enrolls the biometric data.

credential-wallet/wallet-sdk/ecosystem-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You can find the implementation of ecosystem tools in the following location:
44

5-
File Path: [packages/core/src/ecosystem-tools.ts](https://github.com/docknetwork/react-native-sdk/blob/5dfbcb197b848802478d2f7a697286a8c3c28823/packages/core/src/ecosystem-tools.ts#L4)
5+
File Path: [packages/core/src/ecosystem-tools.ts](https://github.com/docknetwork/wallet-sdk/blob/5dfbcb197b848802478d2f7a697286a8c3c28823/packages/core/src/ecosystem-tools.ts#L4)
66

77
## Usage Example
88

@@ -47,4 +47,4 @@ This JSON output contains the details of the ecosystems associated with the give
4747

4848
For more examples and usage, please refer to the integration test at:
4949

50-
Test File Path: https://github.com/docknetwork/react-native-sdk/blob/master/integration-tests/ecosystem-tools.test.ts This test file provides comprehensive examples on how to interact with ecosystem tools effectively.
50+
Test File Path: https://github.com/docknetwork/wallet-sdk/blob/master/integration-tests/ecosystem-tools.test.ts This test file provides comprehensive examples on how to interact with ecosystem tools effectively.

developer-documentation/wallet-sdk/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Wallet SDK
22

3-
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.
3+
The [Wallet SDK](https://github.com/docknetwork/wallet-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

@@ -75,16 +75,16 @@ export default App;
7575

7676
Check the following repository for detailed examples for running the Truvera Wallet SDK on NodeJS, Web, and Flutter.
7777

78-
[See the examples](https://github.com/docknetwork/react-native-sdk/tree/master/examples)
78+
[See the examples](https://github.com/docknetwork/wallet-sdk/tree/master/examples)
7979

8080
## Docs
8181

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

84-
[See the Github repository](https://docknetwork.github.io/react-native-sdk/)
84+
[See the Github repository](https://docknetwork.github.io/wallet-sdk/)
8585

8686
## Features
8787

88-
* [Biometric Plugin](https://github.com/docknetwork/react-native-sdk/blob/master/docs/biometric-plugin.md)
89-
* [Ecosystem Tools](https://github.com/docknetwork/react-native-sdk/blob/master/docs/ecosystem-tools.md)
90-
* [Cloud Wallet](https://github.com/docknetwork/react-native-sdk/blob/master/docs/cloud-wallet.md)
88+
* [Biometric Plugin](https://github.com/docknetwork/wallet-sdk/blob/master/docs/biometric-plugin.md)
89+
* [Ecosystem Tools](https://github.com/docknetwork/wallet-sdk/blob/master/docs/ecosystem-tools.md)
90+
* [Cloud Wallet](https://github.com/docknetwork/wallet-sdk/blob/master/docs/cloud-wallet.md)

developer-documentation/wallet-sdk/biometric-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export const dataStoreConfigs: DataStoreConfigs = DEFAULT_WALLET_CONFIGS;
204204

205205
## Adding a custom biometric provider
206206

207-
Adding a custom biometric provider will require the development of the plugin following the IDVProvider interface defined at [packages/core/src/biometric-provider.ts](https://github.com/docknetwork/react-native-sdk/blob/master/packages/core/src/biometric-provider.ts). The plugin should implement the following methods:
207+
Adding a custom biometric provider will require the development of the plugin following the IDVProvider interface defined at [packages/core/src/biometric-provider.ts](https://github.com/docknetwork/wallet-sdk/blob/master/packages/core/src/biometric-provider.ts). The plugin should implement the following methods:
208208

209209
* enroll: Enrolls the biometric data. It should issue an enrollment credential and a match credential.
210210
* match: Performs the biometric match and if it is valid, returns a biometric match credential.

developer-documentation/wallet-sdk/ecosystem-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You can find the implementation of ecosystem tools in the following location:
44

5-
File Path: [packages/core/src/ecosystem-tools.ts](https://github.com/docknetwork/react-native-sdk/blob/5dfbcb197b848802478d2f7a697286a8c3c28823/packages/core/src/ecosystem-tools.ts#L4)
5+
File Path: [packages/core/src/ecosystem-tools.ts](https://github.com/docknetwork/wallet-sdk/blob/5dfbcb197b848802478d2f7a697286a8c3c28823/packages/core/src/ecosystem-tools.ts#L4)
66

77
## Usage Example
88

@@ -47,4 +47,4 @@ This JSON output contains the details of the ecosystems associated with the give
4747

4848
For more examples and usage, please refer to the integration test at:
4949

50-
Test File Path: https://github.com/docknetwork/react-native-sdk/blob/master/integration-tests/ecosystem-tools.test.ts This test file provides comprehensive examples on how to interact with ecosystem tools effectively.
50+
Test File Path: https://github.com/docknetwork/wallet-sdk/blob/master/integration-tests/ecosystem-tools.test.ts This test file provides comprehensive examples on how to interact with ecosystem tools effectively.

developer-documentation/wallet-sdk/examples/react-native-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ React-native project running the Truvera wallet-sdk
77
# make sure you are using the supported nodejs version
88
nvm use 16.14.0
99
# Clone wallet-sdk repository
10-
git clone git@github.com:docknetwork/react-native-sdk.git ../wallet-sdk
10+
git clone git@github.com:docknetwork/wallet-sdk.git ../wallet-sdk
1111
# install dependencies on wallet-sdk repository
1212
cd ../wallet-sdk
1313
yarn install
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Wallet sdk examples
22

33
This repository contains examples for working with the Truvera Wallet SDK.
4-
https://github.com/docknetwork/react-native-sdk
4+
https://github.com/docknetwork/wallet-sdk
55

dock-wallet/wallet-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Wallet SDK
22

3-
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 native applications with added support for Polkadot-JS.
3+
The [Wallet SDK](https://github.com/docknetwork/wallet-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 native applications with added support for Polkadot-JS.
44

55
{% hint style="info" %}
66
Dock Mobile SDK supports devices that have Android 8.1 or higher and iOS 11 or higher.

dock-wallet/wallet-sdk/biometric-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The biometric ID should not contain the user's actual biometric information. Whe
111111

112112
## Adding a custom biometric provider
113113

114-
Adding a custom biometric provider will require the development of the plugin following the interface defined at [packages/react-native/lib/default-biometrics-plugin.ts](https://github.com/docknetwork/react-native-sdk/blob/master/packages/react-native/lib/default-biometrics-plugin.ts). The plugin should implement the following methods:
114+
Adding a custom biometric provider will require the development of the plugin following the interface defined at [packages/react-native/lib/default-biometrics-plugin.ts](https://github.com/docknetwork/wallet-sdk/blob/master/packages/react-native/lib/default-biometrics-plugin.ts). The plugin should implement the following methods:
115115

116116
* hasProofOfBiometrics: Checks if the verification template is asking for biometric attributes.
117117
* enrollBiometrics: Enrolls the biometric data.

0 commit comments

Comments
 (0)