github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/gnoland/pages/page_testnets.gno (about)

     1  package gnopages
     2  
     3  func init() {
     4  	path := "testnets"
     5  	title := "Gno.land Testnet List"
     6  	body := `
     7  - [Portal Loop](https://docs.gno.land/concepts/portal-loop) - a rolling testnet 
     8  - [staging.gno.land](https://staging.gno.land) - wiped every commit to monorepo master
     9  - test4.gno.land (upcoming)
    10  - _[test3.gno.land](https://test3.gno.land) (latest)_
    11  - _[test2.gno.land](https://test2.gno.land) (archive)_
    12  - _[test1.gno.land](https://test1.gno.land) (archive)_
    13  
    14  For a list of RPC endpoints, see the [reference documentation](https://docs.gno.land/reference/rpc-endpoints).
    15  
    16  ## Local development
    17  
    18  See the "Getting started" section in the [official documentation](https://docs.gno.land/getting-started/local-setup).
    19  `
    20  	_ = b.NewPost("", path, title, body, "2022-05-20T13:17:29Z", nil, nil)
    21  }