- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
29 lines
971 B
TypeScript
29 lines
971 B
TypeScript
import { expect } from "chai";
|
|
import { ethers } from "hardhat";
|
|
import { PMMMath } from "../libraries/PMMMath.sol";
|
|
|
|
describe("PMMMath", function () {
|
|
it("Should calculate price correctly", async function () {
|
|
// Test PMM price formula: p = i * (1 + k * (Q - vQ) / vQ)
|
|
const i = ethers.parseEther("1"); // Oracle price
|
|
const k = ethers.parseEther("0.1"); // 10% slippage coefficient
|
|
const Q = ethers.parseEther("2000"); // Current quote reserve
|
|
const vQ = ethers.parseEther("1000"); // Virtual quote reserve
|
|
|
|
// Expected: p = 1 * (1 + 0.1 * (2000 - 1000) / 1000) = 1.1
|
|
// This is a placeholder - actual test would use a test contract
|
|
expect(true).to.be.true;
|
|
});
|
|
|
|
it("Should calculate swap output correctly", async function () {
|
|
// Test swap calculation
|
|
expect(true).to.be.true;
|
|
});
|
|
|
|
it("Should calculate LP shares correctly", async function () {
|
|
// Test LP share calculation
|
|
expect(true).to.be.true;
|
|
});
|
|
});
|
|
|