paw-connector-devnet
v1.0.2
Published
PAW Connector Devnet For stabilize Wallet Connections within dApps
Readme
🐾 paw-connector-devnet
A plug-and-play connection component for blockchain authentication built for Devnet environments. Includes a styled React component and simple configuration options.
✨ Features
- 🧹 Easy integration into any React app
- 🔒 Secure blockchain wallet connection
- 🎨 Pre-styled css file
- 🌐 Devnet-ready for rapid prototyping
📦 Installation
npm install paw-connector-devnetOr with Yarn:
yarn add paw-connector-devnet🚀 Usage
import { Connector } from 'paw-connector-devnet';
import 'paw-connector-devnet/dist/paw-connector-devnet.css';
export default function App() {
return (
<div className="bg-gray-200 p-4">
<Connector options={{ toast: alert }} />
</div>
);
}🥉 Props
The Connector component accepts the following options:
| Prop | Type | Description |
| ------- | -------- | -------------------------------- |
| toast | Function | (Optional) Custom toast handler. |
Example:
<Connector options={{ toast: alert }} />📁 Styles
The component includes prebuilt styles:
import 'paw-connector-devnet/dist/paw-connector-devnet.css';Ensure Tailwind or similar utility-based styling frameworks do not conflict with the imported styles.
📜 License
MIT License © [PAW LLC]
