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
```
This commit is contained in:
Denis Fadeev 2022-01-21 12:22:43 +03:00 committed by GitHub
parent 4bf0092b42
commit 00a01da039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
config.yml Normal file
View File

@ -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"