forked from cerc-io/laconicd-deprecated
imp(tests): integration tests setup (#1196)
* first pass * latest * working tests * github actions * remove unnecessary change * remove unnecessary steps * remove unnecessary import * remove unnecessary change * Update .github/workflows/test.yml Co-authored-by: yihuang <huang@crypto.com> * update .gitignore * update github actions * change evm denomination * change evm denomination * send tests to tests folder * Delete result * update go version Co-authored-by: yihuang <huang@crypto.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
co-authored by
yihuang
Federico Kunze Küllmer
parent
3460cba07c
commit
fd0e62a067
@@ -0,0 +1,82 @@
|
||||
{
|
||||
dotenv: '../../../scripts/.env',
|
||||
'ethermintd_777-1': {
|
||||
cmd: 'ethermintd',
|
||||
'start-flags': '--trace',
|
||||
'app-config': {
|
||||
'minimum-gas-prices': '0aphoton',
|
||||
'index-events': ['ethereum_tx.ethereumTxHash'],
|
||||
'json-rpc': {
|
||||
address: '0.0.0.0:{EVMRPC_PORT}',
|
||||
'ws-address': '0.0.0.0:{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',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user