From 00a01da0397d3e3a6bc5467690e31d52ba7396b1 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Fri, 21 Jan 2022 12:22:43 +0300 Subject: [PATCH] feat: Starport configuration file Many Starport users are asking for CosmWasm. Cosmos SDK is notorious for how hard it is to add modules to an existing chain `app.go` (either manually or programmatically). Until Cosmos SDK becomes better at handling modules, I propose adding a simple `config.yml`, so that users can do this: ``` git clone https://github.com/cosmwasm/wasmd cd wasmd starport chain serve ``` --- config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 config.yml diff --git a/config.yml b/config.yml new file mode 100644 index 00000000..6a225233 --- /dev/null +++ b/config.yml @@ -0,0 +1,16 @@ +accounts: + - name: alice + coins: ["20000token", "200000000stake"] + - name: bob + coins: ["10000token", "100000000stake"] +validator: + name: alice + staked: "100000000stake" +client: + openapi: + path: "docs/static/openapi.yml" +faucet: + name: bob + coins: ["5token", "100000stake"] +build: + main: "cmd/wasmd"