bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
20 lines (19 loc) • 972 B
JavaScript
// Inscriptions Module - Blockchain inscription components
// Export all inscription components, hooks, and types
// Base component
export { InscriptionButton } from "./components/InscriptionButton.js";
// Token components
export { BSV20MintButton } from "./components/BSV20MintButton.js";
export { BSV21MintButton } from "./components/BSV21MintButton.js";
// Collection components
export { CollectionForm } from "./components/CollectionForm.js";
export { CollectionMintButton } from "./components/CollectionMintButton.js";
export { RarityEditor } from "./components/RarityEditor.js";
export { RoyaltyEditor } from "./components/RoyaltyEditor.js";
export { TraitEditor } from "./components/TraitEditor.js";
// Text components
export { TextInscriptionButton } from "./components/TextInscriptionButton.js";
// HTML components
export { HTMLInscriptionButton } from "./components/HTMLInscriptionButton.js";
// Hooks
export { useInscription } from "./hooks/useInscription.js";