Compare commits

..

8 Commits

Author SHA1 Message Date
Solovyov1796
c80874b0ea
Merge pull request #80 from Solovyov1796/new-local-dev
Some checks failed
Continuous Integration (Commit) / lint (push) Has been cancelled
fix: bump ethermint to fix evm debug flag out of control
2024-10-23 22:40:15 +08:00
Solovyov1796
96e70d3cbd
Merge branch '0glabs:dev' into new-local-dev 2024-10-23 21:55:54 +08:00
Solovyov1796
f9ef0bac6e fix: bump ethermint to fix evm debug flag out of control 2024-10-23 21:55:03 +08:00
Solovyov1796
5f2089b4c5
Merge pull request #79 from Solovyov1796/new-local-dev
test: disable evm trace in localtestnet
2024-10-23 21:44:28 +08:00
Solovyov1796
a4b8d77411 test: disable evm trace in localtestnet 2024-10-23 20:18:42 +08:00
Solovyov1796
f5ce18dd5f
Merge pull request #77 from Solovyov1796/local-dev
bump ethermint
2024-10-23 17:48:35 +08:00
Solovyov1796
890e858558 disable full error trace in localtestnet 2024-10-23 14:40:37 +08:00
Solovyov1796
afacc89c8d bump ethermint 2024-10-23 14:24:03 +08:00
3 changed files with 6 additions and 6 deletions

2
go.mod
View File

@ -250,7 +250,7 @@ replace (
// TODO: Tag before release
github.com/ethereum/go-ethereum => github.com/evmos/go-ethereum v1.10.26-evmos-rc2
// Use ethermint fork that respects min-gas-price with NoBaseFee true and london enabled, and includes eip712 support
github.com/evmos/ethermint => github.com/0glabs/ethermint v0.21.0-0g.v3.1.4
github.com/evmos/ethermint => github.com/0glabs/ethermint v0.21.0-0g.v3.1.5
// See https://github.com/cosmos/cosmos-sdk/pull/10401, https://github.com/cosmos/cosmos-sdk/commit/0592ba6158cd0bf49d894be1cef4faeec59e8320
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0
// Downgraded to avoid bugs in following commits which causes "version does not exist" errors

4
go.sum
View File

@ -213,8 +213,8 @@ github.com/0glabs/cometbft v0.37.9-0glabs.1 h1:KQJG17Y21suKP3QNICLto4b5Ak73XbSmK
github.com/0glabs/cometbft v0.37.9-0glabs.1/go.mod h1:j0Q3RqrCd+cztWCugs3obbzC4NyHGBPZZjtm/fWV00I=
github.com/0glabs/cosmos-sdk v0.47.10-0glabs.5 h1:CwL3i7ccMjOXpKnJ9w0WkM7UpTWLXa/W2ZAwpxFUfb8=
github.com/0glabs/cosmos-sdk v0.47.10-0glabs.5/go.mod h1:KskIVnhXTFqrw7CDccMvx7To5KzUsOomIsQV7sPGOog=
github.com/0glabs/ethermint v0.21.0-0g.v3.1.3 h1:QVXrXXbSROa8ahIt3RcOEFF7gbgFdoIWVSRk9hsAgzw=
github.com/0glabs/ethermint v0.21.0-0g.v3.1.3/go.mod h1:S1Ahmqpzo1XUsfmmpGT7ok0hu5Fekz/pD6EDtXaBg9Q=
github.com/0glabs/ethermint v0.21.0-0g.v3.1.5 h1:aYqzUqq0F5j2b6Qa0P64oA0ibMAbWruS1lZQit+juqs=
github.com/0glabs/ethermint v0.21.0-0g.v3.1.5/go.mod h1:S1Ahmqpzo1XUsfmmpGT7ok0hu5Fekz/pD6EDtXaBg9Q=
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs=
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4=
github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM=

View File

@ -36,11 +36,11 @@ $BINARY init validator --chain-id $chainID
sed -in-place='' 's/enable = false/enable = true/g' $DATA/config/app.toml
# Set evm tracer to json
sed -in-place='' 's/tracer = ""/tracer = "json"/g' $DATA/config/app.toml
sed -in-place='' 's/tracer = ""/tracer = ""/g' $DATA/config/app.toml
# Enable full error trace to be returned on tx failure
# Disable full error trace
sed -in-place='' '/iavl-cache-size/a\
trace = true' $DATA/config/app.toml
trace = false' $DATA/config/app.toml
# Set client chain id
sed -in-place='' 's/chain-id = ""/chain-id = "zgchain_8888-1"/g' $DATA/config/client.toml