page_testnets.gno
0.54 Kb ยท 17 lines
1package gnopages
2
3func init() {
4 path := "testnets"
5 title := "gno.land Testnet List"
6 body := `
7- [Staging](https://docs.gno.land/concepts/portal-loop) - a rolling testnet
8- _[test5.gno.land](https://test5.gno.land) (latest)_
9
10For a list of RPC endpoints, see the [reference documentation](https://docs.gno.land/reference/rpc-endpoints).
11
12## Local development
13
14See the "Getting started" section in the [official documentation](https://docs.gno.land/getting-started/local-setup).
15`
16 _ = b.NewPost("", path, title, body, "2022-05-20T13:17:29Z", nil, nil)
17}