-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathapp_config.json
82 lines (82 loc) · 1.83 KB
/
app_config.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"modules": [
{
"name": "authn",
"module": {
"@type": "cosmos.authn.v1.Module",
"bech32_address_prefix": "sim"
}
},
{
"name": "bank",
"module": {
"@type": "cosmos.bank.v1beta1.Module",
"send_deny_list": [],
"denom_managers": {
"coll": {
"@type": "cosmos.collectible.v1alpha1.CollectibleDenomManager"
}
}
}
},
{
"name": "upgrade",
"module": {
"@type": "cosmos.upgrade.v1beta1.Module"
}
}
],
"abci": {
"init_genesis": [
"authn",
"bank"
],
"begin_block": [
"authn",
"bank"
],
"end_block": [
"bank",
"authn"
],
"tx_module": {
"@type": "cosmos.core.tx.v1.Module",
"middleware": [
{
"@type": "cosmos.authn.v1.ValidateMemoMiddleware",
"max_memo_characters": 256
},
{
"@type": "cosmos.authn.v1.ConsumeGasForTxSizeMiddleware",
"tx_size_cost_per_byte": 100
},
{
"@type": "cosmos.bank.v1beta1.DeductFeeMiddleware"
},
{
"@type": "cosmos.authn.v1.SetPubKeyMiddleware"
},
{
"@type": "cosmos.authn.v1.ValidateSigCountMiddleware",
"tx_sig_limit": 7
},
{
"@type": "cosmos.authn.v1.SigGasConsumeMiddleware",
"sig_verify_cost_ed25519": 1000,
"sig_verify_cost_secp256k1": 500,
"allowed_pub_key_types": [
"cosmos.crypto.secp256k1.PubKey",
"cosmos.crypto.secp256r1.PubKey"
]
},
{
"@type": "cosmos.authn.v1.SigVerificationMiddleware"
},
{
"@type": "cosmos.authn.v1.IncrementSequenceMiddleware"
}
]
},
"info_handler": "upgrade"
}
}