The Hall of Realms
Welcome, gnomes!
The Hall of Realms is a simple & permissionless dashboard for gnomes to share their work with the community.
Here, anyone is welcome to submit their own code. This realm utilizes a common Gno pattern - the registry pattern - to allow anyone to programmatically submit their work.
Simply import the Hall of Realms in your code, and call the Register()
function
inside your realm init, as shown below:
1package myrealm
2
3import `gno.land/r/leon/hor`
4
5func init() {
6 hor.Register(`My Gnome App`, `This is my submission to the Hall of Realms.`)
7}
8...