The premier Hedera wallet experience

Secure, Fast & Intuitive
Hedera Wallet

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.

Bank-grade security
Lightning fast transactions
500K+ trusted users

Everything You Need in a Wallet

HashPack combines powerful functionality with elegant design, providing all the tools you need to interact with the Hedera ecosystem efficiently and securely.

Lightning-Fast Transactions

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.

Multi-Token Support

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.

NFT Gallery & Management

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.

Complete Transaction History

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.

Cross-Platform Access

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.

DeFi Integration Hub

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.

Security You Can Trust

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.

Enterprise Security

Your Assets Are Protected by Best-in-Class Security

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.

Open Source
Decentralized
Encrypted
Your Keys
Audited
Protected

Military-Grade Encryption

Your private keys are protected with AES-256 encryption, the same standard used by banks and government agencies worldwide.

Non-Custodial Design

You maintain complete control of your assets. HashPack never stores or has access to your private keys or recovery phrases.

Hardware Wallet Integration

Connect your Ledger hardware wallet for maximum security when managing large amounts or performing critical transactions.

Regular Security Audits

Our codebase undergoes regular third-party security audits to identify and eliminate potential vulnerabilities before they become threats.

Powered by a Growing Ecosystem

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.

DeFi

Decentralized Finance

Access lending protocols, yield farming, and automated market makers built on Hedera's fast, low-cost network.

Popular Apps:

SaucerSwapHeliSwapPangolin DEX
NFT

Digital Collectibles

Mint, trade, and showcase NFTs on Hedera's energy-efficient network with minimal environmental impact.

Popular Apps:

HashPunksDeadPixel SocietyTurtle Moon NFT
Gaming

Blockchain Gaming

Play-to-earn games and virtual worlds where you truly own your in-game assets and achievements.

Popular Apps:

HashCraftHedera HeroesCryptoClash Arena
Enterprise

Business Solutions

Enterprise-grade applications for supply chain, identity verification, and regulatory compliance.

Popular Apps:

SupplyTraceVerifyIDComplianceChain
Social

Community Platforms

Decentralized social networks and community platforms where users control their data and content.

Popular Apps:

HashChatDecentraBookCreatorDAO
Utilities

Network Services

Essential infrastructure services including oracles, bridges, and cross-chain interoperability solutions.

Popular Apps:

HashOracleCrossChain BridgeHedera Gateway

Ready to Explore the Ecosystem?

Connect your HashPack wallet and start interacting with hundreds of applications building the future of decentralized technology on Hedera.

Built for Developers

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.

Developer SDK

Comprehensive JavaScript SDK for seamless wallet integration with your dApps and websites.

API Documentation

Complete API reference with code examples and interactive playground for testing integrations.

Testing Tools

Sandbox environment and testnet integration for safe development and thorough testing.

Quick Integration Example

JavaScript
// 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;
};