π¦ ClawHub
Hedera Transaction Builder
by @harleyscodes
Build, sign, and submit Hedera transactions including HBAR transfers, token operations, and smart contract calls to the Hedera network.
TERMINAL
clawhub install hedera-tx-builderπ About This Skill
name: hedera-tx-builder description: Build and sign Hedera transactions. Use for: (1) Creating HBAR transfers, (2) Token operations, (3) Smart contract calls, (4) Submitting to Hedera network.
Hedera Transaction Builder
Setup
npm install @hashgraph/sdk
Client Setup
import { Client, AccountBalanceQuery, Hbar } from '@hashgraph/sdk';const client = Client.forMainnet();
// Or for testnet:
const client = Client.forTestnet();
Transfer HBAR
import { TransferTransaction, Hbar } from '@hashgraph/sdk';const tx = new TransferTransaction()
.addHbarTransfer(fromAccountId, new Hbar(-100)) // send
.addHbarTransfer(toAccountId, new Hbar(100)) // receive
.setTransactionMemo("Payment for goods");
// Sign with hashpack or operator
const signTx = await tx.sign(operatorKey);
const result = await signTx.execute(client);
Key Transaction Types
AccountCreate
new AccountCreateTransaction()
.setKey(publicKey)
.setInitialBalance(new Hbar(10))
.setAccountMemo("My account");
TokenAssociate
new TokenAssociateTransaction()
.setAccountId(accountId)
.setTokenIds([tokenId1, tokenId2]);
TopicMessage
new TopicMessageTransaction()
.setTopicId(topicId)
.setMessage("Hello Hedera!");
Network Endpoints
https://mainnet.hashio.io/apihttps://testnet.hashio.io/apiImportant Concepts
shard.realm.num (e.g., 0.0.12345)βοΈ Configuration
npm install @hashgraph/sdk