Browser — HCS‑6BrowserClient
- TypeScript
- Go
- Python
import { HCS6BrowserClient } from '@hashgraphonline/standards-sdk';
import type { DAppSigner } from '@hashgraph/hedera-wallet-connect';
async function run(signer: DAppSigner) {
const client = new HCS6BrowserClient({ network: 'testnet', signer });
const reg = await client.createDynamicRegistry({ ttl: 86400 });
await client.upsert(reg.topicId, { key: 'status', value: { ok: true } });
}
// Browser/wallet operations are TypeScript-only.
// In Go, use the server-side client directly — see the [Server](./server) page.
# Browser/wallet operations are TypeScript-only.
# In Python, use the server-side client directly — see the Server page.