Back to Registry
View Author Profile
Official Verified
Hashpack Wallet
Skill by harleyscodes
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/harleyscodes/hashpack-walletOr
name: hashpack-wallet description: Integrate HashPack wallet for Hedera blockchain authentication. Use for: (1) Adding HashPack login to webapps, (2) Signing Hbar transactions, (3) Connecting to Hedera DApps, (4) Getting account balance.
HashPack Wallet Integration
Quick Start
// Detect HashPack
const hashpack = (window as any).hashpack;
// Connect
const result = await hashpack.connect();
// Get account ID
const accountId = result.accountId; // e.g., "0.0.12345"
Account ID Format
Hedera account IDs are format: 0.0.12345 (shard.realm.num)
Key Methods
// Connect (opens popup)
await hashpack.connect();
// Sign and submit transaction
const tx = new TransferTransaction()
.addHbarTransfer(from, -10)
.addHbarTransfer(to, 10);
await hashpack.signTransaction(tx);
// Get balance
const balance = await new AccountBalanceQuery()
.setAccountId(accountId)
.execute(client);
// Disconnect
hashpack.disconnect();
Environment
- Mainnet:
https://mainnet.hashio.io/api - Testnet:
https://testnet.hashio.io/api - Previewnet:
https://previewnet.hashio.io/api
Transaction Types
TransferTransaction- Send HBAR/tokensContractExecuteTransaction- Call contractTokenAssociateTransaction- Associate with tokenTokenMintTransaction- Mint tokensTopicCreateTransaction- Create HCS topic
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-harleyscodes-hashpack-wallet": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.