github.com/0xsequence/ethkit@v1.25.0/ethtest/testchain/package.json (about) 1 { 2 "name": "testchain", 3 "version": "0.0.0", 4 "private": true, 5 "license": "none", 6 "scripts": { 7 "start:hardhat": "hardhat node --hostname 0.0.0.0", 8 "start:hardhat:verbose": "hardhat --verbose node --hostname 0.0.0.0", 9 "start:ganache": "ganache --miner.blockTime 1 --chain.chainId ${npm_package_config_ganacheChainID} --chain.networkId ${npm_package_config_ganacheChainID} --server.port ${npm_package_config_ganachePort} --miner.blockGasLimit ${npm_package_config_ganacheGasLimit} --miner.defaultGasPrice ${npm_package_config_ganacheGasPrice} --wallet.defaultBalance ${npm_package_config_etherBalance} --wallet.mnemonic \"${npm_package_config_mnemonic}\" ${npm_package_config_extra}", 10 "start:ganache:verbose": "ganache --miner.blockTime 1 --chain.chainId ${npm_package_config_ganacheChainID} --chain.networkId ${npm_package_config_ganacheChainID} --logging.verbose --server.port ${npm_package_config_ganachePort} --miner.blockGasLimit ${npm_package_config_ganacheGasLimit} --miner.defaultGasPrice ${npm_package_config_ganacheGasPrice} --wallet.defaultBalance ${npm_package_config_etherBalance} --wallet.mnemonic \"${npm_package_config_mnemonic}\" ${npm_package_config_extra}", 11 "stop:ganache": "ps aux | grep ganache | grep -v grep | awk '{print $2}' | xargs kill -9", 12 "start:geth": "docker run -p 8545:8545 --log-driver none --rm ethereum/client-go:v1.10.16 --dev --dev.period 2 --networkid ${npm_package_config_ganacheChainID} --miner.gaslimit 15000000 --miner.gasprice 1 --http --http.addr 0.0.0.0 --rpc.allow-unprotected-txs --verbosity 1", 13 "start:geth:verbose": "docker run -p 8545:8545 --rm ethereum/client-go:v1.10.16 --dev --dev.period 2 --networkid ${npm_package_config_ganacheChainID} --miner.gaslimit 15000000 --miner.gasprice 1 --http --http.addr 0.0.0.0 --rpc.allow-unprotected-txs", 14 "wait:server": "wait-on -t 120000 http-get://127.0.0.1:8545/" 15 }, 16 "devDependencies": { 17 "concurrently": "^8.0.1", 18 "ganache": "^7.7.7", 19 "hardhat": "^2.13.0", 20 "wait-on": "^7.0.1" 21 }, 22 "config": { 23 "mnemonic": "major danger this key only test please avoid main net use okay", 24 "ganacheChainID": 1337, 25 "ganachePort": 8545, 26 "ganacheGasLimit": "0xfffffffffff", 27 "ganacheGasPrice": "20000000000", 28 "etherBalance": "100000", 29 "extra": "" 30 } 31 }