Release Notes for Probity v1.0.0
Overview
In this stable v1.0.0 release, we introduce Probity, a protocol for asset-based lending designed to operate on EVM-compatible chains. The protocol contains the source code for the Probity smart contract system and offers examples for seamless integration with your development activities.
Key Features
Contract Source Code: You can find the contract code in the contracts folder. This will allow developers to examine and use the protocol's functions in their own applications.
Audit Report: We have added an audit report located in the audits folder, providing transparency about the protocol's security.
Detailed Documentation: Comprehensive protocol documentation is available, providing a broad overview and detailed guidelines on the protocol's functionalities.
NPM Package: The contract ABIs can be accessed through the @trustline/probity
NPM package, simplifying the integration process.
Installation
Probity can be easily added to your project using npm
with the following command:
npm install @trustline/probity --save
Example
We provide code snippets demonstrating how to import the contract ABI and call a contract method using ethers. Check out the 'Example' section in the README for more details.