2024-02-01 04:48:40 +00:00
|
|
|
modules:
|
|
|
|
- name: runtime
|
|
|
|
config:
|
|
|
|
"@type": cosmos.app.runtime.v1alpha1.Module
|
|
|
|
app_name: LaconicApp
|
|
|
|
# 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
|
2024-08-16 06:23:56 +00:00
|
|
|
begin_blockers: [distribution, slashing, staking]
|
2024-09-05 04:15:42 +00:00
|
|
|
end_blockers: [crisis, gov, staking, auction, registry]
|
2024-02-01 04:48:40 +00:00
|
|
|
# NOTE: The genutils module must occur after staking so that pools are properly initialized with tokens from genesis accounts.
|
|
|
|
# NOTE: The genutils module must also occur after auth so that it can access the params from auth.
|
2024-09-05 04:15:42 +00:00
|
|
|
init_genesis: [auth, bank, distribution, staking, slashing, gov, crisis, genutil, auction, bond, registry, onboarding]
|
2024-02-01 04:48:40 +00:00
|
|
|
override_store_keys:
|
|
|
|
- module_name: auth
|
|
|
|
kv_store_key: acc
|
|
|
|
- name: auth
|
|
|
|
config:
|
|
|
|
"@type": cosmos.auth.module.v1.Module
|
2024-02-15 06:56:18 +00:00
|
|
|
bech32_prefix: laconic
|
2024-02-01 04:48:40 +00:00
|
|
|
module_account_permissions:
|
|
|
|
- account: fee_collector
|
|
|
|
- account: distribution
|
|
|
|
- account: bonded_tokens_pool
|
|
|
|
permissions: [burner, staking]
|
|
|
|
- account: not_bonded_tokens_pool
|
|
|
|
permissions: [burner, staking]
|
2024-09-05 04:15:42 +00:00
|
|
|
- account: gov
|
|
|
|
permissions: [burner]
|
2024-02-09 08:44:45 +00:00
|
|
|
- account: auction
|
|
|
|
- account: auction_burn
|
2024-02-02 09:39:10 +00:00
|
|
|
- account: bond
|
2024-02-15 07:08:32 +00:00
|
|
|
- account: registry
|
|
|
|
- account: record_rent
|
|
|
|
- account: authority_rent
|
2024-02-01 04:48:40 +00:00
|
|
|
- name: bank
|
|
|
|
config:
|
|
|
|
"@type": cosmos.bank.module.v1.Module
|
|
|
|
blocked_module_accounts_override:
|
|
|
|
[auth, distribution, bonded_tokens_pool, not_bonded_tokens_pool]
|
|
|
|
- name: staking
|
|
|
|
config:
|
|
|
|
"@type": cosmos.staking.module.v1.Module
|
2024-08-16 06:23:56 +00:00
|
|
|
- name: slashing
|
|
|
|
config:
|
|
|
|
"@type": cosmos.slashing.module.v1.Module
|
2024-02-01 04:48:40 +00:00
|
|
|
- name: distribution
|
|
|
|
config:
|
|
|
|
"@type": cosmos.distribution.module.v1.Module
|
|
|
|
- name: consensus
|
|
|
|
config:
|
|
|
|
"@type": cosmos.consensus.module.v1.Module
|
|
|
|
- name: genutil
|
|
|
|
config:
|
|
|
|
"@type": cosmos.genutil.module.v1.Module
|
|
|
|
- name: tx
|
|
|
|
config:
|
|
|
|
"@type": cosmos.tx.config.v1.Config
|
2024-09-05 04:15:42 +00:00
|
|
|
- name: gov
|
|
|
|
config:
|
|
|
|
"@type": cosmos.gov.module.v1.Module
|
2024-03-06 09:24:15 +00:00
|
|
|
- name: crisis
|
|
|
|
config:
|
|
|
|
"@type": cosmos.crisis.module.v1.Module
|
2024-02-01 10:58:34 +00:00
|
|
|
- name: bond
|
|
|
|
config:
|
|
|
|
"@type": cerc.bond.module.v1.Module
|
2024-02-09 08:44:45 +00:00
|
|
|
- name: auction
|
|
|
|
config:
|
|
|
|
"@type": cerc.auction.module.v1.Module
|
2024-02-15 07:08:32 +00:00
|
|
|
- name: registry
|
|
|
|
config:
|
|
|
|
"@type": cerc.registry.module.v1.Module
|
2024-07-01 06:05:28 +00:00
|
|
|
- name: onboarding
|
|
|
|
config:
|
|
|
|
"@type": cerc.onboarding.module.v1.Module
|