The premier Hedera wallet experience
HashPack is the most trusted wallet for the Hedera network. Send, receive, and manage your HBAR, HTS tokens, and NFTs with enterprise-grade security and an intuitive interface designed for both beginners and power users.
HashPack combines powerful functionality with elegant design, providing all the tools you need to interact with the Hedera ecosystem efficiently and securely.
Experience near-instant transaction processing on the Hedera network with minimal fees. Send HBAR and HTS tokens anywhere in the world within seconds, making HashPack perfect for daily use and business operations.
Manage all your Hedera assets in one place. HashPack supports HBAR, all Hedera Token Service (HTS) tokens, and provides seamless token swapping functionality with real-time market data and price tracking.
Discover, collect, and showcase your NFTs with HashPack's beautiful gallery interface. View detailed metadata, manage collections, and easily transfer NFTs with our intuitive drag-and-drop functionality.
Track every transaction with detailed history logs, exportable reports, and advanced filtering options. HashPack maintains comprehensive records for tax reporting and portfolio analysis with CSV export capabilities.
Access your wallet seamlessly across all devices with our browser extension, mobile app, and web interface. Your encrypted data syncs securely, ensuring consistent experience whether you're on desktop or mobile.
Connect to the growing Hedera DeFi ecosystem with one-click dApp connections. Participate in yield farming, liquidity provision, and decentralized trading while maintaining full control of your private keys.
Built with security-first principles, HashPack employs industry-leading protection measures to safeguard your digital assets. Your security is our highest priority, with multiple layers of protection ensuring your funds remain safe.
HashPack implements zero-knowledge architecture, ensuring that even we cannot access your funds or personal information. Your private keys never leave your device, and all transactions are signed locally using advanced cryptographic protocols.
Your private keys are protected with AES-256 encryption, the same standard used by banks and government agencies worldwide.
You maintain complete control of your assets. HashPack never stores or has access to your private keys or recovery phrases.
Connect your Ledger hardware wallet for maximum security when managing large amounts or performing critical transactions.
Our codebase undergoes regular third-party security audits to identify and eliminate potential vulnerabilities before they become threats.
HashPack connects you to hundreds of applications across the Hedera ecosystem. From decentralized finance to gaming, NFTs to enterprise solutions, discover what's possible with your wallet as the gateway to a new digital economy.
Access lending protocols, yield farming, and automated market makers built on Hedera's fast, low-cost network.
Mint, trade, and showcase NFTs on Hedera's energy-efficient network with minimal environmental impact.
Play-to-earn games and virtual worlds where you truly own your in-game assets and achievements.
Enterprise-grade applications for supply chain, identity verification, and regulatory compliance.
Decentralized social networks and community platforms where users control their data and content.
Essential infrastructure services including oracles, bridges, and cross-chain interoperability solutions.
Connect your HashPack wallet and start interacting with hundreds of applications building the future of decentralized technology on Hedera.
HashPack provides comprehensive tools and resources for developers to integrate wallet functionality into their applications. Our developer-friendly APIs and SDKs make it easy to build amazing user experiences on Hedera.
Comprehensive JavaScript SDK for seamless wallet integration with your dApps and websites.
Complete API reference with code examples and interactive playground for testing integrations.
Sandbox environment and testnet integration for safe development and thorough testing.
// Install HashPack SDK
npm install @hashgraph/hashpack
// Import and initialize
import { HashPack } from '@hashgraph/hashpack';
const hashPack = new HashPack();
// Connect to wallet
const connectWallet = async () => {
const data = await hashPack.connectToLocalWallet();
console.log('Connected:', data.accountIds);
};
// Send transaction
const sendTransaction = async () => {
const transaction = await hashPack.sendTransaction({
topic: 'transaction',
byteArray: transactionBytes,
metadata: { accountToSign: accountId }
});
return transaction;
};