Skip to content

.net class class library for network communication designed specificaly for PlutoWallet project https://github.com/RostislavLitovkin/PlutoWallet

License

Notifications You must be signed in to change notification settings

cisar2218/Plutonication

Repository files navigation

Plutonication

Screenshot 2023-08-19 at 22 50 21

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.

Requirements

-C# and Visual Studio installed on your system.

The package uses .NET 6.

Installation

Nuget package: https://www.nuget.org/packages/Plutonication

dotnet add package Plutonication

Other versions

Usage

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.

Plutonication Console Example

Run Locally

Example Console application can be found in the PlutonicationConsoleSample folder.

cd PlutonicationConsoleSample

# Install nuget dependencies
dotnet restore

dotnet build

dotnet run

Docker

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

Build the package locally

cd Plutonication

# Install nuget dependencies
dotnet restore

dotnet build

Testing

Unit tests

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

How Plutonication works

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.

Problem / Motivation

Currently, there is no way to connect a crypto wallet to more exotic devices, like gaming console and wearables.

Plutonication enables that!

Limitations

  • Both devices need to support internet connection

dApps utilising Plutonication

Feel free to add your own project by making a PR.

Wallets utilising Plutonication

Feel free to add your own project by making a PR.

Inspiration

Contributions

Contributions are welcome.

License

This project is licensed under the MIT License.

About

.net class class library for network communication designed specificaly for PlutoWallet project https://github.com/RostislavLitovkin/PlutoWallet

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages