+ );
+};
diff --git a/src/components/events/EventLogExample.tsx b/src/components/events/EventLogExample.tsx
new file mode 100644
index 0000000..3a3f903
--- /dev/null
+++ b/src/components/events/EventLogExample.tsx
@@ -0,0 +1,109 @@
+import React from 'react';
+import { WalletProvider } from '../../hooks/useStellarWallet';
+import { EventLogComponent } from './EventLogComponent';
+
+/**
+ * Example component showing how to integrate the Smart Contract Event Log
+ *
+ * This example demonstrates:
+ * 1. How to wrap the component with necessary providers
+ * 2. How to configure the event log with different options
+ * 3. How to handle wallet connection states
+ */
+export const EventLogExample: React.FC = () => {
+ return (
+
+
+
+
+
+ Smart Contract Event Log Example
+
+
+ This example demonstrates the Smart Contract Event Log component with all features enabled.
+
+ Time Tip:
+ {currentNetworkCongestion === 'low'
+ ? ' Network is fast - even standard fees will be processed quickly.'
+ : currentNetworkCongestion === 'medium'
+ ? ' Consider priority fees for time-sensitive transactions.'
+ : ' Expect delays - use higher fees or wait for better conditions.'
+ }
+
+ Pro Tip: Schedule non-urgent transactions during optimal windows
+ to maximize savings. Set up alerts to notify you when fees drop below your threshold.
+