
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@mlabs-haskell/feesaswap-components
Advanced tools
React components for FeesaSwap integration
npm install @mlabs-haskell/feesaswap-components
Step 1: Import the CSS styles
Add this to your app's root file (e.g., _app.tsx
in Next.js or index.tsx
in Create React App):
import '@mlabs-haskell/feesaswap-components/styles';
Step 2: Use the component
import React from 'react';
import { FeesaSwap } from '@mlabs-haskell/feesaswap-components';
function MyDApp() {
const handleTransactionSubmitted = (txId: string) => {
console.log('Transaction submitted:', txId);
};
const handleError = (error: Error) => {
console.error('FeesaSwap error:', error);
};
return (
<FeesaSwap
network="mainnet"
unbalancedTransaction={{ cbor: 'your-unbalanced-tx-cbor' }}
wallet="lace"
onTransactionSubmitted={handleTransactionSubmitted}
onError={handleError}
/>
);
}
Prop | Type | Required | Description |
---|---|---|---|
network | CardanoNetwork | ✅ | "mainnet", "preprod", or "preview" |
unbalancedTransaction | UnbalancedTransaction | ✅ | The unbalanced transaction CBOR from your dApp |
wallet | string | ✅ | Wallet name string (e.g., "lace", "eternl", "vespr") |
apiBaseUrl | string | ❌ | API server URL (default: '') |
theme | FeesaSwapTheme | ❌ | Custom theme configuration |
onTransactionSubmitted | (txId: string) => void | ❌ | Callback when transaction is successfully submitted |
onError | (error: Error) => void | ❌ | Error callback |
className | string | ❌ | Additional CSS class names |
After importing the default styles with import '@mlabs-haskell/feesaswap-components/styles'
, you can customize the appearance by overriding CSS variables or classes in your own CSS.
Option 1: CSS Custom Properties (Recommended)
/* In your global CSS or component CSS */
:root {
--fs-primary-color: #007bff;
--fs-background-color: #ffffff;
--fs-border-color: #e2e8f0;
--fs-border-radius: 8px;
--fs-text-color: #1a1a1a;
--fs-font-family: system-ui, -apple-system, sans-serif;
/* ... more variables */
}
Option 2: Direct Class Overrides
/* Override specific component styles */
.feesaswap-component {
background: #f8f9fa;
border: 2px solid #dee2e6;
}
.fs-submit-button {
background: #28a745;
font-weight: bold;
}
You can also pass a theme object as a prop:
const customTheme = {
primaryColor: '#ff6b35',
backgroundColor: '#f8f9fa',
borderRadius: '12px',
fontFamily: 'Inter, sans-serif',
};
<FeesaSwap theme={customTheme} {...otherProps} />
Add the fs-dark
class to enable dark theme:
<div className="fs-dark">
<FeesaSwap {...props} />
</div>
This package includes:
This components package depends on and integrates with @mlabs-haskell/feesaswap-sdk for API communication. The SDK is automatically included as a dependency, but you could also use it directly in any project, including non-React projects.
This package requires React 16.8.0 or higher:
{
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
npm run build
npm run type-check
MIT
FAQs
React components for FeesaSwap integration
We found that @mlabs-haskell/feesaswap-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.