diff --git a/README.md b/README.md index 0bbc52c..79c1bfb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Each example is designed to be modular, providing clear insights into how you ca The project contains the following demo applications built with CDP SDK -1. **Lending App**: Explore Aave integration with CDP SDK for decentralized lending and borrowing. +1. **Lending App**: Explore how to use CDP SDK for decentralized lending and borrowing. 2. **Onchain AI**: The Onchain AI template provides a simple app for Reinforcement Learning from Human Feedback using the CDP SDK. 3. **Trading bot**: Discover automated trading strategies implemented with CDP SDK on Telegram. 4. **Mass Payouts demo**: Automate mass payouts in crypto with zero gas fee with Transfers API on CDP SDK. diff --git a/app/page.tsx b/app/page.tsx index ab61d09..4ea6015 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -15,7 +15,7 @@ export default function Home() {
-

What are CDP APIs?

+

What are CDP APIs?

Coinbase Developer Platform (CDP) APIs are backend and frontend suites of crypto services to easily build onchain apps.

@@ -42,38 +42,55 @@ export default function Home() {
-
+
{[ - { - name: 'Lending App', - route: '/usdcflow', - description: 'Explore Aave integration with CDP SDK for decentralized lending and borrowing.' - }, + // { + // name: 'USDC Lending App', + // route: '/usdcflow', + // description: 'Explore Aave integration with CDP SDK for decentralized lending and borrowing.', + // buildLink: 'https://docs.cdp.coinbase.com/mpc-wallet/docs/aave-integration' + // }, { name: 'Onchain AI', route: 'https://aiwalletdemo.com/', - description: 'The Onchain AI template provides a simple app for Reinforcement Learning from Human Feedback using the CDP SDK.' + description: 'The Onchain AI template provides a simple app for Reinforcement Learning from Human Feedback using the CDP SDK.', + buildLink: 'https://replit.com/@CoinbaseDev/Onchain-Machine-Learning?v=1#README.md' }, { name: 'Trading Bot', route: 'https://github.com/coinbase/tg-trading-bot', - description: 'Discover automated trading strategies implemented with CDP SDK on Telegram.' + description: 'Discover automated trading strategies implemented with CDP SDK on Telegram.', + buildLink: 'https://replit.com/@CoinbaseDev/Onchain-Trading-Bot#README.md' }, { name: 'Automated Payouts', route: 'https://masspayoutsdemo.com/', - description: 'Automate mass payments for free on Base with Transfer APIs on CDP SDK.' + description: 'Automate mass payments for free on Base with Transfer APIs on CDP SDK.', + buildLink: 'https://replit.com/@CoinbaseDev/Onchain-Payments?v=1#README.md' } ].map((app, index) => ( -
+
+

{app.name}

{app.description}

- - View Demo - +
+
+ + Demo + + + Build Your Own + +
))}