forked from cerc-io/laconicd-deprecated
c1c25b1818
* fix(rpc): bind default json-rpc listen address to localhost (#1613) * update nix * bind default json-rpc to 127.0.0.1 * add change doc * Update CHANGELOG.md Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> (cherry picked from commit 3587015b27625bc6c0a002142db0a4dfdc9ecf59) # Conflicts: # CHANGELOG.md * address merge conflicts Co-authored-by: mmsqe <tqd0800210105@gmail.com> Co-authored-by: MalteHerrmann <malte@evmos.org>
89 lines
2.1 KiB
Plaintext
89 lines
2.1 KiB
Plaintext
{
|
|
dotenv: '../../../scripts/.env',
|
|
'ethermint_9000-1': {
|
|
cmd: 'ethermintd',
|
|
'start-flags': '--trace',
|
|
config: {
|
|
mempool: {
|
|
// use v1 mempool to enable tx prioritization
|
|
version: 'v1',
|
|
},
|
|
},
|
|
'app-config': {
|
|
'minimum-gas-prices': '0aphoton',
|
|
'index-events': ['ethereum_tx.ethereumTxHash'],
|
|
'json-rpc': {
|
|
address: '127.0.0.1:{EVMRPC_PORT}',
|
|
'ws-address': '127.0.0.1:{EVMRPC_PORT_WS}',
|
|
api: 'eth,net,web3,debug',
|
|
'feehistory-cap': 100,
|
|
'block-range-cap': 10000,
|
|
'logs-cap': 10000,
|
|
},
|
|
},
|
|
validators: [{
|
|
coins: '1000000000000000000stake,10000000000000000000000aphoton',
|
|
staked: '1000000000000000000stake',
|
|
mnemonic: '${VALIDATOR1_MNEMONIC}',
|
|
}, {
|
|
coins: '1000000000000000000stake,10000000000000000000000aphoton',
|
|
staked: '1000000000000000000stake',
|
|
mnemonic: '${VALIDATOR2_MNEMONIC}',
|
|
}],
|
|
accounts: [{
|
|
name: 'community',
|
|
coins: '10000000000000000000000aphoton',
|
|
mnemonic: '${COMMUNITY_MNEMONIC}',
|
|
}, {
|
|
name: 'signer1',
|
|
coins: '20000000000000000000000aphoton',
|
|
mnemonic: '${SIGNER1_MNEMONIC}',
|
|
}, {
|
|
name: 'signer2',
|
|
coins: '30000000000000000000000aphoton',
|
|
mnemonic: '${SIGNER2_MNEMONIC}',
|
|
}],
|
|
genesis: {
|
|
consensus_params: {
|
|
block: {
|
|
max_bytes: '1048576',
|
|
max_gas: '81500000',
|
|
},
|
|
},
|
|
app_state: {
|
|
evm: {
|
|
params: {
|
|
evm_denom: 'aphoton',
|
|
},
|
|
},
|
|
gov: {
|
|
voting_params: {
|
|
voting_period: '10s',
|
|
},
|
|
deposit_params: {
|
|
max_deposit_period: '10s',
|
|
min_deposit: [
|
|
{
|
|
denom: 'aphoton',
|
|
amount: '1',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
transfer: {
|
|
params: {
|
|
receive_enabled: true,
|
|
send_enabled: true,
|
|
},
|
|
},
|
|
feemarket: {
|
|
params: {
|
|
no_base_fee: false,
|
|
base_fee: '100000000000',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|