-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat-cosmos-sdk-0.47.10-upgrade
- Loading branch information
Showing
19 changed files
with
450 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Use the official Go Ethereum image | ||
FROM ethereum/client-go:latest | ||
|
||
# Expose the ports (8545 for JSON-RPC, 8546 for WebSocket, 30303 for P2P) | ||
EXPOSE 8545 8546 30303 | ||
|
||
# Set the entrypoint to start Geth | ||
ENTRYPOINT ["geth"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: '3.8' | ||
services: | ||
lighthouse: | ||
image: sigp/lighthouse:latest | ||
command: lighthouse --network mainnet beacon --http --checkpoint-sync-url https://sync.invis.tools | ||
ports: | ||
- "5052:5052" | ||
volumes: | ||
- type: volume | ||
source: lighthouse_data | ||
target: /root/.lighthouse | ||
geth: | ||
build: . | ||
ports: | ||
- "18545:18545" # JSON-RPC | ||
- "18546:18546" # WebSocket | ||
- "30303:30303" # P2P Network | ||
volumes: | ||
- type: volume | ||
source: ethereum_data | ||
target: /root/.ethereum | ||
command: | ||
- "--http" | ||
- "--http.addr" | ||
- "0.0.0.0" | ||
- "--http.vhosts=*" | ||
- "--http.api=admin,eth,debug,miner,net,txpool,personal,web3" | ||
- "--ws" | ||
- "--ws.addr" | ||
- "0.0.0.0" | ||
- "--ws.api=admin,eth,debug,miner,net,txpool,personal,web3" | ||
- "--ws.origins=*" | ||
- "--maxpeers=50" | ||
- "--syncmode=snap" | ||
|
||
volumes: | ||
ethereum_data: | ||
lighthouse_data: |
Oops, something went wrong.