gno
gno copied to clipboard
Gno: An interpreted, stack-based Go virtual machine to build succinct and composable apps + gno.land: a blockchain for timeless code and fair open-source.
## Description We have txtar tests in `gno.land/cmd/gnoland/testdata`. Many, maybe all, can be migrated to the tests located at `gnovm/cmd/gno/testdata/gno_test` as realm file tests. These tests exist to test realm...
### Description We're trying to deploy our realms against portal-loop, but [pool realm](https://github.com/gnoswap-labs/gnoswap/tree/tmp/portal-loop-deploy-fail/pool) is failing while `gnokey maketx addpkg` with below error. ``` $ gnokey maketx addpkg -pkgdir ./pool -pkgpath...
## Description Example package: ```go package example import "std" func GetPrevRealm() std.Realm { return std.PrevRealm() } ``` Example tests: ```go package example import ( "std" "testing" "gno.land/p/demo/testutils" ) func TestGetPrevRealmUser(t...
## Description As seen last Thursday on the "office hours" call with @leohhhn @michelleellen and @iam-agf, when testing Gno Studio Connect, we noticed with the example Leon suggested "wugnot" that...
## Description I was following the [Tapas](https://play.gno.land/p/3uwBqP66ekC) tutorial, and when I tried to run it in the playground, I got an error. I figured out that the error occurs when...
## Description This issue concerns adding a guide on how to stress test your Gno network with `supernova`. This tutorial could live in the How-to guides section from the perspective...
## Description This issue concerns reorganizing the code of [docs-linter](https://github.com/gnolang/gno/tree/master/misc/docs-linter) to use channels instead of mutex locks. As suggested by @ajnavarro, we should introduce a `Linter` interface that will allow...
## Description Currently there is an unsolved bug with AVL Tree: #2266 & #1543 This makes the edit & remove functionalities in the blog package unusable. I propose that we...
This PR adds missing functionalities from the acl package: - helpers to remove permissions. - helpers to adds multiple permissions at once -> {verbs: []string{"read","write"}}. - helpers to delete users...
I've added the `version` command to gno to get the version of gno that is installed Contributors' checklist... - [ ] Added new tests, or not needed, or not feasible...