Add suave/devenv.

This commit is contained in:
Louis Thibault 2024-01-31 16:00:29 -05:00
parent 3fecc86d3e
commit 7cce0bef05
4 changed files with 43 additions and 0 deletions

6
suave/devenv/README.md Normal file
View file

@ -0,0 +1,6 @@
## Run the devnet:
`docker-compose up --build --force-recreate`
## Genesis info
Execution node's address: 0xb5feafbdd752ad52afb7e1bd2e40432a485bbb7f (private key: 6c45335a22461ccdb978b78ab61b238bad2fae4544fb55c14eb096c875ccfc52)
Pre-funded private key: 0x91ab9a7e53c220e6210460b65a7a3bb2ca181412a8a7b43ff336b3df1737ce12, Address: 0xBE69d72ca5f88aCba033a063dF5DBe43a4148De0

View file

@ -0,0 +1,36 @@
version: "3.8"
services:
suave-mevm:
build: flashbots/suave-geth:latest
command:
- --dev
- --dev.gaslimit=30000000
- --http
- --http.port=8545
- --http.addr=0.0.0.0
- --http.vhosts=*
- --http.corsdomain=*
- --ws
- --ws.origins=*
- --ws.addr=0.0.0.0
- --datadir=/data
- --keystore=/keystore/keystore
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
- --password=/keystore/password.txt
depends_on:
- suave-enabled-chain
volumes:
- ./suave-ex-node:/keystore
ports:
- 8545:8545
- 8546:8546
suave-enabled-chain:
image: flashbots/suave-geth:latest
command:
- --dev
- --dev.gaslimit=30000000
- --http
- --ws
ports:
- 8555:8545

View file

@ -0,0 +1 @@
{"address":"b5feafbdd752ad52afb7e1bd2e40432a485bbb7f","crypto":{"cipher":"aes-128-ctr","ciphertext":"8075ff2ed17c6cf6cd162b4bdd2926034e2067f03055990d57510e5d807ef06e","cipherparams":{"iv":"8c31b77d9518a68fda4aa6c90d62562d"},"kdf":"scrypt","kdfparams":{"dklen":32,"n":262144,"p":1,"r":8,"salt":"6e55b1eea32430c4dc0b87cfc31168d552249b8ba946314e3c41dbeaeed3d125"},"mac":"5e411244fd732deb4464d247cfeb9beadc8a37558f12720c4d2ee8691436c50c"},"id":"51d12702-2276-44a9-972e-2011c56edf4e","version":3}

View file