Skip to content

Commit

Permalink
Merge pull request #24 from dappnode/voss/fix-service-for-https
Browse files Browse the repository at this point in the history
Fix Service for HTTPS exposure,
fixed display endpoints,
removed extra comma in EXTRA_OPTIONS
updated categories, and descriptions.
fix git repo link
  • Loading branch information
alexpeterson91 authored Jan 10, 2024
2 parents dd80931 + 322a72e commit 757c69c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
31 changes: 16 additions & 15 deletions dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,43 @@
"upstreamVersion": "v1.13.1",
"upstreamRepo": "ethereum/go-ethereum",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Execution client Geth for Sepolia (a novel PoS-testing network for Ethereum)",
"description": "This package provides the Geth client for the Sepolia Testnet, which is the new official proof-of-stake Ethereum testnet. Geth is an execution client that enables interaction with the Ethereum blockchain. With this package, you can easily deploy and run a Sepolia node on your DappNode.",
"shortDescription": "Execution client Geth for Sepolia (a PoS test network for Ethereum)",
"description": "This package provides the Geth client for the Sepolia Testnet, which is an official, but permissioned, proof-of-stake Ethereum testnet. Sepolia Geth is an execution client that enables interaction with the Ethereum blockchain in conjuction with a Consensus Layer Client. With this package, you can easily deploy and run a Sepolia Geth node on your Dappnode.",
"type": "service",
"chain": "ethereum",
"author": "Afri Schoedon <dappnode@q9f.cc> (https://github.com/q9f)",
"contributors": [
"Eduardo Antuña <eduadiez@gmail.com> (https://github.com/eduadiez)",
"Afri Schoedon <dappnode@q9f.cc> (https://github.com/q9f)"
"Afri Schoedon <dappnode@q9f.cc> (https://github.com/q9f)",
"Voss <voss@visnovalabs.io> (https://github.com/alexpeterson91)"
],
"categories": ["Developer tools"],
"categories": ["Developer tools", "Blockchain"],
"keywords": ["ethereum", "testnet", "geth", "sepolia", "pos"],
"architectures": ["linux/amd64", "linux/arm64"],
"links": {
"homepage": "https://github.com/dappnode/DAppNodePackage-sepolia-geth#readme",
"api": "http://sepolia-geth.dappnode:8545",
"apiEngine": "http://geth.dappnode:8551"
"api": "http://geth.sepolia-geth.dappnode:8545",
"apiEngine": "http://geth.sepolia-geth.dappnode:8551"
},
"exposable": [
{
"name": "Sepolia Geth JSON-RPC (HTTP)",
"description": "HTTP-JSON-RPC endpoint for Sepolia testnet",
"serviceName": "sepolia-geth",
"port": 8545,
"exposeByDefault": false
"description": "JSON-RPC endpoint for Sepolia Geth",
"serviceName": "geth",
"fromSubdomain": "sepolia-geth",
"port": 8545
},
{
"name": "Sepolia Geth JSON-RPC (WS)",
"description": "WS-JSON-RPC endpoint for Sepolia testnet",
"serviceName": "sepolia-geth-ws",
"port": 8546,
"exposeByDefault": false
"description": "JSON-RPC WebSocket endpoint for Sepolia Geth",
"serviceName": "geth",
"fromSubdomain": "sepolia-geth",
"port": 8546
}
],
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-sepolia-geth.git"
"url": "git+https://github.com/dappnode/DAppNodePackage-sepolia-geth.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-sepolia-geth/issues"
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ services:
volumes:
- "sepolia:/sepolia"
ports:
- "35415:35415"
- "35415:35415/tcp"
- "35415:35415/udp"
restart: unless-stopped
environment:
- >-
EXTRA_OPTIONS=--http.api eth,engine,net,web3,txpool, --ws.api
EXTRA_OPTIONS=--http.api eth,engine,net,web3,txpool --ws.api
eth,engine,net,web3,txpool
- P2P_PORT=35415
- SYNCMODE=snap
Expand Down

0 comments on commit 757c69c

Please sign in to comment.