53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
modules:
|
|
- name: runtime
|
|
config:
|
|
"@type": cosmos.app.runtime.v1alpha1.Module
|
|
|
|
app_name: NFTApp
|
|
|
|
begin_blockers: [staking, auth, bank, mint, genutil, nft, params]
|
|
end_blockers: [staking, auth, bank, mint, genutil, nft, params]
|
|
init_genesis: [auth, bank, staking, mint, genutil, nft, 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: nft
|
|
|
|
- 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: genutil
|
|
config:
|
|
"@type": cosmos.genutil.module.v1.Module
|
|
|
|
- name: mint
|
|
config:
|
|
"@type": cosmos.mint.module.v1.Module
|
|
|
|
- name: nft
|
|
config:
|
|
"@type": cosmos.nft.module.v1.Module
|