-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathapp.yaml
48 lines (42 loc) · 1.64 KB
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
modules:
- name: runtime
config:
"@type": cosmos.app.runtime.v1alpha1.Module
app_name: SimApp
# During begin block slashing happens after distr.BeginBlocker so that
# there is nothing left over in the validator fee pool, so as to keep the
# CanWithdrawInvariant invariant.
# NOTE: staking module is required if HistoricalEntries param > 0
# NOTE: capability module's beginblocker must come before any modules using capabilities (e.g. IBC)
begin_blockers: [ upgrade, capability, mint, distribution, slashing,
evidence, staking, auth, bank, gov, crisis, genutil,
authz, feegrant, nft, group,
params, vesting ]
end_blockers: [ crisis, gov, staking,
capability, auth, bank, distribution,
slashing, mint,
genutil, evidence, authz,
feegrant, nft, group,
params, upgrade, vesting ]
override_store_keys:
- module_name: auth
kv_store_key: acc
- name: auth
config:
"@type": cosmos.auth.module.v1.Module
bech32_prefix: cosmos
module_account_permissions:
- account: fee_collector
- account: distribution
- account: mint
permissions: [ minter ]
- account: bonded_tokens_pool
permissions: [ burner, staking ]
- account: not_bonded_tokens_pool
permissions: [ burner, staking ]
- account: gov
permissions: [ burner ]
- account: nft
- name: params
config:
"@type": cosmos.params.module.v1.Module