Skip to content

Commit d3049ae

Browse files
authoredOct 4, 2024··
docs: test3 -> portal loop (#2897)
Update links from test3 to portal loop where appropriate. --------- Signed-off-by: moul <[email protected]>
1 parent 8a62a28 commit d3049ae

File tree

10 files changed

+19
-26
lines changed

10 files changed

+19
-26
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ If you haven't already, take a moment to check out our [website](https://gno.lan
2121

2222
> The website is a deployment of our [gnoweb](./gno.land/cmd/gnoweb) frontend; you
2323
> can use it to check out
24-
> [some](https://test3.gno.land/r/demo/boards)
25-
> [example](https://test3.gno.land/r/gnoland/blog)
26-
> [contracts](https://test3.gno.land/r/demo/users).
24+
> [some](https://gno.land/r/demo/boards)
25+
> [example](https://gno.land/r/gnoland/blog)
26+
> [contracts](https://gno.land/r/demo/users).
2727
>
2828
> Use the `[source]` button in the header to inspect the program's source; use
2929
> the `[help]` button to view how you can use [`gnokey`](./gno.land/cmd/gnokey)

‎docs/concepts/gnovm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GnoVM is a virtual machine that interprets Gno, a custom version of Go optimized
88
It works with Tendermint2 and enables smarter, more modular, and transparent appchains with embedded smart-contracts.
99
It can be adapted for use in TendermintCore, forks, and non-Cosmos blockchains.
1010

11-
Read the ["Intro to Gnoland"](https://test3.gno.land/r/gnoland/blog:p/intro) blogpost.
11+
Read the ["Intro to Gnoland"](https://gno.land/r/gnoland/blog:p/intro) blogpost.
1212

1313
This folder focuses on the VM, language, stdlibs, tests, and tools, independent of the blockchain.
1414
This enables non-web3 developers to contribute without requiring an understanding of the broader context.

‎examples/gno.land/r/demo/boards/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ name ["gno.land/r/demo/boards"](https://gno.land/r/demo/boards/)
88
## Build `gnokey`, create your account, and interact with Gno.
99

1010
NOTE: Where you see `-remote localhost:26657` here, that flag can be replaced
11-
with `-remote test3.gno.land:26657` if you have $GNOT on the testnet.
12-
(To use the testnet, also replace `-chainid dev` with `-chainid test3` .)
11+
with `-remote gno.land:26657` if you have $GNOT on the testnet.
12+
(To use the testnet, also replace `-chainid dev` with `-chainid portal-loop` .)
1313

1414
### Build `gnokey` (and other tools).
1515

@@ -85,15 +85,15 @@ The `USERNAME` for posting can different than your `KEYNAME`. It is internally l
8585
./build/gnokey maketx call -pkgpath "gno.land/r/demo/users" -func "Register" -args "" -args "USERNAME" -args "Profile description" -gas-fee "10000000ugnot" -gas-wanted "2000000" -send "200000000ugnot" -broadcast -chainid dev -remote 127.0.0.1:26657 KEYNAME
8686
```
8787

88-
Interactive documentation: https://test3.gno.land/r/demo/users?help&__func=Register
88+
Interactive documentation: https://gno.land/r/demo/users?help&__func=Register
8989

9090
### Create a board with a smart contract call.
9191

9292
```bash
9393
./build/gnokey maketx call -pkgpath "gno.land/r/demo/boards" -func "CreateBoard" -args "BOARDNAME" -gas-fee "1000000ugnot" -gas-wanted "10000000" -broadcast -chainid dev -remote localhost:26657 KEYNAME
9494
```
9595

96-
Interactive documentation: https://test3.gno.land/r/demo/boards?help&__func=CreateBoard
96+
Interactive documentation: https://gno.land/r/demo/boards?help&__func=CreateBoard
9797

9898
Next, query for the permanent board ID by querying (you need this to create a new post):
9999

@@ -109,15 +109,15 @@ NOTE: If a board was created successfully, your SEQUENCE_NUMBER would have incre
109109
./build/gnokey maketx call -pkgpath "gno.land/r/demo/boards" -func "CreateThread" -args BOARD_ID -args "Hello gno.land" -args "Text of the post" -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid dev -remote localhost:26657 KEYNAME
110110
```
111111

112-
Interactive documentation: https://test3.gno.land/r/demo/boards?help&__func=CreateThread
112+
Interactive documentation: https://gno.land/r/demo/boards?help&__func=CreateThread
113113

114114
### Create a comment to a post.
115115

116116
```bash
117117
./build/gnokey maketx call -pkgpath "gno.land/r/demo/boards" -func "CreateReply" -args BOARD_ID -args "1" -args "1" -args "Nice to meet you too." -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid dev -remote localhost:26657 KEYNAME
118118
```
119119

120-
Interactive documentation: https://test3.gno.land/r/demo/boards?help&__func=CreateReply
120+
Interactive documentation: https://gno.land/r/demo/boards?help&__func=CreateReply
121121

122122
```bash
123123
./build/gnokey query "vm/qrender" -data "gno.land/r/demo/boards:BOARDNAME/1" -remote localhost:26657

‎examples/gno.land/r/gnoland/home/home.gno

+1-3
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,7 @@ func discoverLinks() ui.Element {
269269
- [Discover demo packages](https://github.com/gnolang/gno/tree/master/examples)
270270
- [Gnoscan](https://gnoscan.io)
271271
- [Portal Loop](https://docs.gno.land/concepts/portal-loop)
272-
- [Testnet 4](https://test4.gno.land/) (Launched July 2024!)
273-
- [Testnet 3](https://test3.gno.land/) (archive)
274-
- [Testnet 2](https://test2.gno.land/) (archive)
272+
- [Testnet 4](https://test4.gno.land/)
275273
- Testnet Faucet Hub (soon)
276274

277275
</div><!-- end column-->

‎examples/gno.land/r/gnoland/home/home_filetest.gno

+1-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ func main() {
5656
// - [Discover demo packages](https://github.com/gnolang/gno/tree/master/examples)
5757
// - [Gnoscan](https://gnoscan.io)
5858
// - [Portal Loop](https://docs.gno.land/concepts/portal-loop)
59-
// - [Testnet 4](https://test4.gno.land/) (Launched July 2024!)
60-
// - [Testnet 3](https://test3.gno.land/) (archive)
61-
// - [Testnet 2](https://test2.gno.land/) (archive)
59+
// - [Testnet 4](https://test4.gno.land/)
6260
// - Testnet Faucet Hub (soon)
6361
//
6462
// </div><!-- end column-->

‎examples/gno.land/r/gnoland/pages/page_testnets.gno

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ func init() {
66
body := `
77
- [Portal Loop](https://docs.gno.land/concepts/portal-loop) - a rolling testnet
88
- [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)_
9+
- _[test4.gno.land](https://test4.gno.land) (latest)_
1310

1411
For a list of RPC endpoints, see the [reference documentation](https://docs.gno.land/reference/rpc-endpoints).
1512

‎gno.land/cmd/gnoweb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The gno.land web interface.
44

5-
Live demo: https://test3.gno.land/
5+
Live demo: https://gno.land/
66

77
## Install `gnoweb`
88

‎gnovm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GnoVM is a virtual machine that interprets Gnolang, a custom version of Golang o
44
It works with Tendermint2 and enables smarter, more modular, and transparent appchains with embedded smart-contracts.
55
It can be used in TendermintCore, forks, and non-Cosmos blockchains.
66

7-
Read the ["Intro to Gnoland"](https://test3.gno.land/r/gnoland/blog:p/intro) blogpost.
7+
Read the ["Intro to Gnoland"](https://gno.land/r/gnoland/blog:p/intro) blogpost.
88

99
This folder focuses on the VM, language, stdlibs, tests, and tools, independent of the blockchain.
1010
This enables non-web3 developers to contribute without requiring an understanding of the broader context.

‎gnovm/cmd/gno/mod.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (c *modDownloadCfg) RegisterFlags(fs *flag.FlagSet) {
131131
fs.StringVar(
132132
&c.remote,
133133
"remote",
134-
"test3.gno.land:26657",
134+
"gno.land:26657",
135135
"remote for fetching gno modules",
136136
)
137137

‎gnovm/pkg/gnomod/file_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"golang.org/x/mod/module"
1515
)
1616

17-
const testRemote string = "test3.gno.land:26657"
17+
const testRemote string = "gno.land:26657" // XXX(race condition): test with a local node so that this test is consistent with git and not with a deploy
1818

1919
func TestFetchDeps(t *testing.T) {
2020
for _, tc := range []struct {
@@ -68,7 +68,7 @@ func TestFetchDeps(t *testing.T) {
6868
"cached gno.land/p/demo/avl",
6969
},
7070
}, {
71-
desc: "fetch_gno.land/p/demo/blog",
71+
desc: "fetch_gno.land/p/demo/blog6",
7272
modFile: File{
7373
Module: &modfile.Module{
7474
Mod: module.Version{
@@ -84,7 +84,7 @@ func TestFetchDeps(t *testing.T) {
8484
},
8585
},
8686
},
87-
requirements: []string{"avl", "blog", "ufmt"},
87+
requirements: []string{"avl", "blog", "ufmt", "mux"},
8888
stdOutContains: []string{
8989
"fetching gno.land/p/demo/blog",
9090
"fetching gno.land/p/demo/avl // indirect",

0 commit comments

Comments
 (0)
Please sign in to comment.