Skip to content

A TypeScript-based SDK for building and managing decentralised reputation systems in dapps, featuring modular components for zero-knowledge proofs, p2p attestations, transaction history, and org based attestations

Notifications You must be signed in to change notification settings

mande-labs/poc-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Proof of Credibility (POC) SDK

The Proof of Credibility (POC) SDK is a comprehensive framework designed for decentralized applications (dApps) to build and manage reputation systems efficiently. Utilizing Mande L2 chain, the SDK leverages the flexibility and security of smart contracts to provide robust reputation management solutions.

Features

  • Modular Design: Adheres to the Diamond standard (ERC-2535) for smart contract modularity, allowing dynamic addition and removal of functionalities.

  • Comprehensive Reputation Management: Enables dApps to implement sophisticated reputation systems, enhancing trust and credibility in decentralized environments.

  • Flexible Integration: Designed for ease of use with various blockchain-based applications and services.

  • Scalable and Upgradable: Thanks to the Diamond standard, the SDK is highly scalable and can be upgraded without disrupting the existing ecosystem.

Installation [Not public yet]

You may check progress on this branch - v0

To install the POC SDK, use npm:

npm install poc-sdk

Or, if you prefer using yarn:

yarn add poc-sdk

Quick Start

Here's a quick guide to get started with the POC SDK:

Initialize the SDK

import { POC } from 'poc-sdk';

const poc = new POC();

Add Modules

// Example of adding a zk (Zero-Knowledge) module

const zkModule = new ZKModule();

poc.addModule('zk', zkModule);

// Add more modules as needed

Use Modules

const zk = poc.getModule('zk') as IZKModule;

// Use the zk module methods as required

Documentation

Coming soon!

Contributing

Contributions are welcome! Please DM @bytesbuster on telegram if you are interested.

License

This project is licensed under the MIT License.


About

A TypeScript-based SDK for building and managing decentralised reputation systems in dapps, featuring modular components for zero-knowledge proofs, p2p attestations, transaction history, and org based attestations

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published