From 164ed0dd8364dfaddc162a6eddd202ea6f07308d Mon Sep 17 00:00:00 2001 From: Ethan Date: Wed, 12 Aug 2026 14:54:41 +0100 Subject: [PATCH] Fix package description to match actual lending token flow The `package.json` description incorrectly says the demo uses **USDC as collateral and ARCT as the borrowed token**. The deployment configuration uses the opposite flow: - `cirBTC` is passed as the collateral token. - The deployed mock `USDC` is passed as the lending/loan token. - The deployment summary explicitly describes the flow as **deposit cirBTC as collateral and borrow USDC**. Update the package description to match the actual deployment configuration. This is a metadata-only correction and does not change app behavior. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e225996..9c98d68 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "arc-borrow-lend", "version": "1.0.0", "private": true, - "description": "Lending and borrowing demo on Arc Testnet — deposit USDC as collateral and borrow ARCT", + "description": "Lending and borrowing demo on Arc Testnet — deposit cirBTC as collateral and borrow USDC", "scripts": { "dev": "next dev", "build": "next build",