Communications protocol that enables seamless interactions between dApps and wallets across all platforms.
Establishing a connection is as easy as scanning a QR code.
This is a c# version.
-C# and Visual Studio installed on your system.
The package uses .NET 6.
Nuget package: https://www.nuget.org/packages/Plutonication
dotnet add package Plutonication
- Javascript/Typescript = https://github.com/rostislavLitovkin/plutonication
The overall structure of Plutonication is designed to be as little intrusive as possible.
A comprehensive guide for adding Plutonication to your dApp / Wallet can be found here: https://plutonication-acnha.ondigitalocean.app/docs/csharp.
Example Console application can be found in the PlutonicationConsoleSample
folder.
cd PlutonicationConsoleSample
# Install nuget dependencies
dotnet restore
dotnet build
dotnet run
The following docker file runs the C# console sample dApp, which can be used for testing all plutonication dApp functionalities.
cd PlutonicationConsoleSample
docker build -t plutonication-csharp-dapp-example .
docker run -p 3000:3000 plutonication-csharp-dapp-example
cd Plutonication
# Install nuget dependencies
dotnet restore
dotnet build
The provided tests showcase how Plutonication can be implemented for both dApps and Wallets.
cd PlutonicationTests
# Install nuget dependencies
dotnet restore
dotnet test PlutonicationTests.csproj
The private key is always saved in your wallet on your phone and is never sent anywhere.
You need to pair the dApp with the wallet. To do so, the wallet needs to receive a special link with information needed to establish the connection. The wallet can receive this link, for example, by scanning a QR code. Once the link is received, the dApp and the wallet will get paired via websockets to establish a stable connection between different platforms. After the connection is established, the wallet is ready to receive any Extrinsics, which it can then sign and send back to the dApp.
To get a more in-depth details of the underlying backend, read this guide: https://plutonication-acnha.ondigitalocean.app/docs/flask-server.
Currently, there is no way to connect a crypto wallet to more exotic devices, like gaming console and wearables.
Plutonication enables that!
- Both devices need to support internet connection
Feel free to add your own project by making a PR.
Feel free to add your own project by making a PR.
Contributions are welcome.
This project is licensed under the MIT License.