diff --git a/CONTRIBUTIONS.md b/CONTRIBUTIONS.md index 6e49e26ef38..48698c8c1b8 100644 --- a/CONTRIBUTIONS.md +++ b/CONTRIBUTIONS.md @@ -24,6 +24,7 @@ Add to your emacs configuration file: Notable contributions of fixes/features/refactors: +* [https://github.com/gnolang/gno/pull/136](#136) - @moul, foo20, a grc20 example smart contract * [https://github.com/gnolang/gno/pull/126](#126) - @moul, feat: use the new Precompile in gnodev and in the addpkg/execution flow (2/2) * [https://github.com/gnolang/gno/pull/119](#119) - @moul, add a Gno2Go precompiler (1/2) * [https://github.com/gnolang/gno/pull/112](#112) - @moul, feat: add 'gnokey maketx --broadcast' option diff --git a/cmd/gnoland/main.go b/cmd/gnoland/main.go index eaefcff25eb..4d5333142bf 100644 --- a/cmd/gnoland/main.go +++ b/cmd/gnoland/main.go @@ -155,7 +155,7 @@ func makeGenesisDoc(pvPub crypto.PubKey) *bft.GenesisDoc { } // Load initial packages from examples. txs := []std.Tx{} - for _, path := range []string{"p/avl", "r/users", "r/boards", "r/banktest"} { + for _, path := range []string{"p/avl", "p/grc/grc20", "p/grc/grc721", "p/maths", "p/ufmt", "r/foo20", "r/users", "r/boards", "r/banktest"} { // open files in directory as MemPackage. memPkg := gno.ReadMemPackage("./examples/gno.land/"+path, "gno.land/"+path) var tx std.Tx diff --git a/gnoland/website/views/home.html b/gnoland/website/views/home.html index c807ee0de5c..6b923d1a51a 100644 --- a/gnoland/website/views/home.html +++ b/gnoland/website/views/home.html @@ -26,6 +26,8 @@ * [/r/nft](/r/nft) * [/r/users](/r/users) * [/r/banktest](/r/banktest) + * [/p/grc/grc20](/p/grc/grc20) + * [/p/grc/grc721](/p/grc/grc721) This is a testnet. \ Package names are not guaranteed to be available for production.\