PathrockNetwork Gno Explorer
HomeBlocksTransactionsRealmsPackagesValidators

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/g1ecsuj0q572jr0dhu29q9njtnmw03hyu7tyyvv6/governor/v0

Package
Open in gnoweb ↗

Overview

Kind
Pure package
Name
v0
Namespace
g1ecsuj0q572jr0dhu29q9njtnmw03hyu7tyyvv6 / governor
Files
8 (gnomod.toml)
Exported functions
n/a — not supported for pure packages by the node (vm/qfuncs)
Module
gno.land/p/g1ecsuj0q572jr0dhu29q9njtnmw03hyu7tyyvv6/governor/v0
gno
0.9

Files (8)

  • gnomod.tomltoml
  • batch.gnogno
  • builtin.gnogno
  • electorate.gnogno
  • governor.gnogno
  • introspect.gnogno
  • keys.gnogno
  • rules.gnogno
  • keys.gnogno
    1// Sorting keys, and nothing else.2//3// The clock moved to the ledger, which is what quantises history and so is the4// only thing that can answer what epoch it is. What is left here is the one5// encoding decision this realm makes for itself.6package governor78import (9	cford32 "gno.land/p/nt/cford32/v0"10)1112// enc is a fixed-width, order-preserving key for a number that has to sort.13//14// proposal ids are listed in order, so they cannot be decimal strings: "10"15// sorts before "9".16func enc(u uint64) string {17	b := cford32.PutUint64Lower(u)18	return string(b[:])19}20

    Functions

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

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