cosmos-sdk/x/authz/testutil/app.yaml
atheeshp 6a844d37ff
feat: decouple x/authz from simapp (#12279)
* wip: decouple authz

* update specs

* review changes
2022-06-20 11:40:37 +02:00

51 lines
1.3 KiB
YAML

modules:
- name: runtime
config:
"@type": cosmos.app.runtime.v1alpha1.Module
app_name: AuthzApp
begin_blockers: [mint, staking, auth, bank, genutil, authz, params]
end_blockers: [mint, staking, auth, bank, genutil, authz, params]
init_genesis: [auth, bank, staking, mint, genutil, authz, params]
- name: auth
config:
"@type": cosmos.auth.module.v1.Module
bech32_prefix: cosmos
module_account_permissions:
- account: fee_collector
- account: mint
permissions: [minter]
- account: bonded_tokens_pool
permissions: [burner, staking]
- account: not_bonded_tokens_pool
permissions: [burner, staking]
- account: gov
permissions: [burner]
- name: bank
config:
"@type": cosmos.bank.module.v1.Module
- name: params
config:
"@type": cosmos.params.module.v1.Module
- name: tx
config:
"@type": cosmos.tx.module.v1.Module
- name: staking
config:
"@type": cosmos.staking.module.v1.Module
- name: authz
config:
"@type": cosmos.authz.module.v1.Module
- name: genutil
config:
"@type": cosmos.genutil.module.v1.Module
- name: mint
config:
"@type": cosmos.mint.module.v1.Module