PathrockNetwork Gno Explorer
HomeBlocksTransactionsTokensRealmsPackagesValidatorsAnalytics

PathrockNetwork Gno Explorer — an independent explorer for Gno.land Mainnet (gnoland-1), operated by PathrockNetwork. Not an official Gno.land service.

gnowebarchive RPC

gno.land/p/moul/x/daily/hexdump/v0

Package
Open in gnoweb ↗

Overview

Kind
Pure package
Name
v0
Namespace
moul / x / daily / hexdump
Files
3 (README)(gnomod.toml)
Exported functions
n/a — not supported for pure packages by the node (vm/qfuncs)
Module
gno.land/p/moul/x/daily/hexdump/v0
gno
0.9

Files (3)

  • README.mdmarkdown
  • gnomod.tomltoml
  • hexdump.gnogno
README.mdPreviewRaw
# `gno.land/p/moul/x/daily/hexdump/v0`

**Classic `xxd -C` byte dump** — `Dump`, `DumpString`, `Line`, `Offset`, `Hex`,
`ASCII`, `Printable`, `MaxBytes`, `BytesPerLine`.

```go
import "gno.land/p/moul/x/daily/hexdump/v0"

out, n := hexdump.DumpString("café")
// 00000000  63 61 66 c3 a9                                    |caf..|
// n == 5 — "é" is two bytes
```

The familiar layout: 8-digit hex offset, 16 bytes as hex in two 8-byte groups,
then the ASCII view between pipes with non-printables as `.`. **Short final lines
are padded** so the ASCII gutter never shifts — that alignment is the whole point
of the format, and it has its own test asserting the gutter lands in the same
column on a full and a partial line.

Useful on chain for the same reason it is useful off it: when a value is not what
you expected, the bytes tell you why. Trailing whitespace, stray NULs, UTF-8 that
is not what it claims — all invisible in a rendered string and obvious in a dump.

`Dump` returns the number of bytes rendered alongside the text, so truncation at
`MaxBytes` (4096) is reported rather than silent.

**Live demo:** [`r/moul/x/daily/hexdumpdemo`](https://github.com/moul/gno-contracts/tree/main/r/moul/x/daily/hexdumpdemo/v0)
· render it at [`/r/moul/x/daily/hexdumpdemo/v0`](https://gno.land/r/moul/x/daily/hexdumpdemo/v0).

<!-- BEGIN GNOCONTRACTS FOOTER (generated by `make readmes`; do not edit below) -->

---

Part of **[moul/gno-contracts](https://github.com/moul/gno-contracts)** — moul's versioned gno.land contracts. See the repository for the full catalog, build/test tooling, and usage.

> 🧪 **Highly experimental — potentially vibe-coded.** Not audited; may break, change, or be removed at any time. Do not use with anything of value. Full disclaimer: [DISCLAIMER](https://github.com/moul/gno-contracts/blob/main/DISCLAIMER.md).

<!-- END GNOCONTRACTS FOOTER -->

Functions

not supported for pure packages by the node (vm/qfuncs)

Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.