├── .github └── workflows │ └── app1.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── commands.go ├── root.go └── utils.go ├── docs ├── app.md ├── lvl-1.md ├── lvl-max.md └── module.md ├── go.mod ├── go.sum ├── main.go └── templates ├── lvl-1 ├── .golangci.yml.tmpl ├── Makefile.tmpl ├── app │ ├── app.go.tmpl │ └── export.go.tmpl ├── cmd │ ├── appcli │ │ └── main.go.tmpl │ └── appd │ │ ├── genaccounts.go.tmpl │ │ └── main.go.tmpl ├── go.mod.tmpl └── x │ └── .gitkeep ├── lvl-max ├── .golangci.yml.tmpl ├── Makefile.tmpl ├── app │ ├── app.go.tmpl │ ├── export.go.tmpl │ └── sim_test.go.tmpl ├── cmd │ ├── appcli │ │ └── main.go.tmpl │ └── appd │ │ ├── genaccounts.go.tmpl │ │ └── main.go.tmpl ├── go.mod.tmpl └── x │ └── .gitkeep └── module ├── README.md ├── abci.go.tmpl ├── client ├── cli │ ├── query.go.tmpl │ └── tx.go.tmpl └── rest │ ├── query.go.tmpl │ ├── rest.go.tmpl │ └── tx.go.tmpl ├── genesis.go.tmpl ├── handler.go.tmpl ├── keeper ├── keeper.go.tmpl ├── params.go.tmpl └── querier.go.tmpl ├── module.go.tmpl ├── spec └── README.md.tmpl └── types ├── codec.go.tmpl ├── errors.go.tmpl ├── events.go.tmpl ├── expected_keepers.go.tmpl ├── genesis.go.tmpl ├── key.go.tmpl ├── msg.go.tmpl ├── params.go.tmpl └── querier.go.tmpl /.github/workflows/app1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/.github/workflows/app1.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/README.md -------------------------------------------------------------------------------- /cmd/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/cmd/commands.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/cmd/utils.go -------------------------------------------------------------------------------- /docs/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/docs/app.md -------------------------------------------------------------------------------- /docs/lvl-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/docs/lvl-1.md -------------------------------------------------------------------------------- /docs/lvl-max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/docs/lvl-max.md -------------------------------------------------------------------------------- /docs/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/docs/module.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/main.go -------------------------------------------------------------------------------- /templates/lvl-1/.golangci.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/.golangci.yml.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/Makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/Makefile.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/app/app.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/app/app.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/app/export.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/app/export.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/cmd/appcli/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/cmd/appcli/main.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/cmd/appd/genaccounts.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/cmd/appd/genaccounts.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/cmd/appd/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/cmd/appd/main.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/go.mod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-1/go.mod.tmpl -------------------------------------------------------------------------------- /templates/lvl-1/x/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/lvl-max/.golangci.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/.golangci.yml.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/Makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/Makefile.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/app/app.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/app/app.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/app/export.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/app/export.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/app/sim_test.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/app/sim_test.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/cmd/appcli/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/cmd/appcli/main.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/cmd/appd/genaccounts.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/cmd/appd/genaccounts.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/cmd/appd/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/cmd/appd/main.go.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/go.mod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/lvl-max/go.mod.tmpl -------------------------------------------------------------------------------- /templates/lvl-max/x/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/README.md -------------------------------------------------------------------------------- /templates/module/abci.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/abci.go.tmpl -------------------------------------------------------------------------------- /templates/module/client/cli/query.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/client/cli/query.go.tmpl -------------------------------------------------------------------------------- /templates/module/client/cli/tx.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/client/cli/tx.go.tmpl -------------------------------------------------------------------------------- /templates/module/client/rest/query.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/client/rest/query.go.tmpl -------------------------------------------------------------------------------- /templates/module/client/rest/rest.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/client/rest/rest.go.tmpl -------------------------------------------------------------------------------- /templates/module/client/rest/tx.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/client/rest/tx.go.tmpl -------------------------------------------------------------------------------- /templates/module/genesis.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/genesis.go.tmpl -------------------------------------------------------------------------------- /templates/module/handler.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/handler.go.tmpl -------------------------------------------------------------------------------- /templates/module/keeper/keeper.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/keeper/keeper.go.tmpl -------------------------------------------------------------------------------- /templates/module/keeper/params.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/keeper/params.go.tmpl -------------------------------------------------------------------------------- /templates/module/keeper/querier.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/keeper/querier.go.tmpl -------------------------------------------------------------------------------- /templates/module/module.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/module.go.tmpl -------------------------------------------------------------------------------- /templates/module/spec/README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/spec/README.md.tmpl -------------------------------------------------------------------------------- /templates/module/types/codec.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/codec.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/errors.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/errors.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/events.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/events.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/expected_keepers.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/expected_keepers.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/genesis.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/genesis.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/key.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/key.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/msg.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/msg.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/params.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/params.go.tmpl -------------------------------------------------------------------------------- /templates/module/types/querier.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/scaffold/HEAD/templates/module/types/querier.go.tmpl --------------------------------------------------------------------------------