A modern, responsive web application for looking up cryptocurrency order details from various payment processors and exchange services.
This is a cloned and enhanced version of the original order lookup tool from David Coen's website. The tool helps users find their cryptocurrency transaction details by entering their order ID and matching it with the appropriate service provider.
- Modern UI/UX: Clean, responsive design with smooth animations
- Multi-Provider Support: Supports Moonpay, Simplex, ChangeNow, and LetsExchange
- Smart Pattern Matching: Automatically detects order ID format and suggests relevant providers
- Real-time Search: Instant results with loading states
- Mobile Responsive: Works perfectly on all device sizes
- Accessibility: Keyboard navigation and screen reader friendly
- Pattern:
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - Example:
550e8400-e29b-41d4-a716-446655440000
- Pattern:
xxxxxxxxxxxxxx(14 alphanumeric characters) - Example:
1234567890abcd
- Pattern: 8-12 alphanumeric characters (e.g., A1B2C3D4)
- Example:
A1B2C3D4
- Open
index.htmlin your web browser - Enter your order ID in the input field
- Click "Search" or press Enter
- View the matching service providers
- Click "View Order Details" to open the transaction page
order-lookup/
├── index.html # Main HTML file
├── styles.css # CSS styles and responsive design
├── script.js # JavaScript functionality
└── README.md # This file
To run this locally:
- Clone or download the files to your local machine
- Open
index.htmlin any modern web browser - No server setup required - it's a static website
- Chrome 60+
- Firefox 55+
- Safari 12+
- Edge 79+
To add a new payment processor or exchange service, edit the partners object in script.js:
const partners = {
// ... existing partners
newprovider: {
name: 'New Provider',
pattern: /^your-pattern-here$/,
url: 'https://provider.com/transaction/',
description: 'Provider description'
}
};The CSS uses CSS custom properties and modern features. Main color scheme and styling can be modified in styles.css.
This project is based on the original order lookup tool by David Coen, available at: https://resources.davidcoen.it/ordercheck/
This is a personal project for educational and development purposes. Please respect the original creator's work.
Feel free to fork this project and make improvements. Some ideas for enhancement:
- Add more payment processors
- Implement order status checking
- Add transaction history
- Create a mobile app version
- Add dark mode support # Force Vercel redeploy