├── .github └── CODEOWNERS ├── .gitignore ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md └── banner.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @gnolang/devrels 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | .idea -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnoverse/awesome-gno/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnoverse/awesome-gno/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnoverse/awesome-gno/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnoverse/awesome-gno/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnoverse/awesome-gno/HEAD/banner.png --------------------------------------------------------------------------------