Draft
Conversation
Collaborator
🛠 PR Checks SummaryAll Automated Checks passed. ✅ Manual Checks (for Reviewers):
Read More🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers. ✅ Automated Checks (for Contributors):No automated checks match this pull request. ☑️ Contributor Actions:
☑️ Reviewer Actions:
📚 Resources:Debug
|
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
This was referenced Mar 16, 2026
## Summary Complete genesis configuration and tooling for the `gnoland1` betanet launch. ### Genesis configuration (`misc/deployments/gnoland1/`) - **`gen-genesis.sh`** — deterministic genesis generation script. Builds all example packages, creates governance bootstrap transactions (govDAO setup, validator registration, chain params), adds deployer + airdrop balances, and produces a verified `genesis.json`. - **`govdao_prop1.gno`** — MsgRun executed at genesis to bootstrap governance: sets up a temporary deployer as sole T1 member, registers initial validators, locks bank transfers, enables namespace enforcement, adds manfred as T1 member, then locks down the memberstore. - **`config.toml`** — reference node config with `# TODO` markers for operator-specific fields (moniker, external address, persistent peers, seeds). - **`Makefile`** — `make help`, `make generate` (with sha256 verification), `make test` (boots a node to validate genesis block execution), `make clean`. - **`README.md`** — 5-step validator setup guide (generate, build, configure, start, verify+join). ### Genesis validators (7, BFT >2/3 → 5 must be up) gnocore-val-01, gnocore-val-02, moul-val-01, aeddi-val-01, berty-val-01, samourai-crew-1, onbloc-val-01 ### GovDAO scripts (`govdao-scripts/`) Post-genesis operational scripts for govDAO members: - `add-validator.sh` / `rm-validator.sh` — add/remove validators via govDAO proposal - `add-validator-from-valopers.sh` — add validator registered at `r/gnops/valopers` - `extend-govdao-t1.sh` — one-time bootstrap: adds 6 T1 members (Jae, Morgan, Ray, Dongwon, Maxwell, Milos) - `unrestrict-account.sh` — allow address(es) to transfer ugnot when bank is locked ### Node changes - **`-x-early-start` flag** (`tm2/pkg/bft/node/node.go`, `gno.land/cmd/gnoland/start.go`) — experimental flag that starts RPC + P2P before genesis time, deferring only consensus. Helps validators discover each other and sync before the chain starts producing blocks. ## Test plan - [x] `make generate` produces a deterministic `genesis.json` with matching sha256 - [x] `make test` boots a node and validates genesis block execution - [x] Node starts with `--skip-genesis-sig-verification` and syncs - [x] `-x-early-start` starts RPC/P2P early, consensus waits for genesis time - [x] GovDAO scripts execute successfully post-genesis 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Signed-off-by: moul <94029+moul@users.noreply.github.com> Co-authored-by: aeddi <antoine.e.b@gmail.com> Co-authored-by: sw360cab <sw360cab@gmail.com> Co-authored-by: Antoine Eddi <5222525+aeddi@users.noreply.github.com> Co-authored-by: Morgan <git@howl.moe> Co-authored-by: Morgan Bazalgette <morgan@morganbaz.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This branch (
chain/gnoland1) tracks the live state of the gnoland1 network. It is not meant to be merged into master.It may contain cherry-picked commits, hotfixes, or configuration changes that diverge from master and may never be merged upstream. Updating the branch from master would break this invariant.
This PR exists solely for visibility, use it to review what's running on gnoland1.
See also: #5295 (reverse diff, shows what's on master but not yet on gnoland1)