laconicd/app/app.yaml
prathamesh0 e511051f3e
Add commands to create and list bonds (#3)
* Add message service with a create bond command

* Add query proto file with bonds list query

* Remove legacy amino coded registration

* Add bond to auth module config

* Use collections package for bond module state
2024-02-02 15:09:10 +05:30

52 lines
1.8 KiB
YAML

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
begin_blockers: [distribution, staking]
end_blockers: [staking]
# 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.
init_genesis: [auth, bank, distribution, staking, genutil, bond]
override_store_keys:
- module_name: auth
kv_store_key: acc
- name: auth
config:
"@type": cosmos.auth.module.v1.Module
bech32_prefix: photon
module_account_permissions:
- account: fee_collector
- account: distribution
- account: bonded_tokens_pool
permissions: [burner, staking]
- account: not_bonded_tokens_pool
permissions: [burner, staking]
- account: bond
- 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
- 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
- name: bond
config:
"@type": cerc.bond.module.v1.Module