page_testnets.gno

0.54 Kb ยท 18 lines
 1package gnopages
 2
 3func init() {
 4	path := "testnets"
 5	title := "Gno.land Testnet List"
 6	body := `
 7- [Staging](https://docs.gno.land/resources/gnoland-networks/#staging-environments-portal-loops) - a rolling testnet
 8
 9For a list of RPC endpoints, see the [reference documentation](https://docs.gno.land/reference/rpc-endpoints).
10
11## Local development
12
13See the "Build on Gno.land" section in the [Official Documentation](https://docs.gno.land/).
14`
15	if err := b.NewPost("", path, title, body, "2022-05-20T13:17:27Z", nil, nil); err != nil {
16		panic(err)
17	}
18}