Browser — HCS‑3
- TypeScript
- Go
import { HCS } from '@hashgraphonline/standards-sdk';
const hcs = new HCS();
hcs.config.network = 'testnet';
const imageElement = document.createElement('img');
imageElement.setAttribute('data-src', 'hcs://1/0.0.20001');
await hcs.loadImage(imageElement);
// Browser/wallet operations are TypeScript-only.
// In Go, use the server-side client directly — see the [Server](./server) page.