diff --git a/README.md b/README.md
index 8f0f65f..f7bcead 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,49 @@
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
+## Transaction History
+
+BridgeWise UI SDK includes a multi-chain transaction history system for Stellar and EVM bridge flows.
+
+Usage example:
+
+```tsx
+import { useTransactionHistory, BridgeHistory } from '@bridgewise/ui-components';
+
+function HistoryPanel({ account }: { account: string }) {
+ const transactions = useTransactionHistory(account, {
+ filter: { status: 'confirmed' },
+ sortOrder: 'desc',
+ }).transactions;
+
+ return (
+ <>
+
+ Liquidity: {routeLiquidity.availableAmount.toLocaleString()} {token} + {hasInsufficientLiquidity ? ' (insufficient for this route)' : ''} +
+ ) : ( +Liquidity unavailable for this route
+ )} +Connect a wallet to view transaction history.
; + } + + if (loading) { + returnLoading transaction history...
; + } + + if (transactions.length === 0) { + return{emptyStateMessage}
; + } + + return ( ++ {state.liquidityAlert} +
+ )} + {/* Transaction hash link */} {state.txHash && (