Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 41 additions & 30 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,58 @@
{
"name": "op-node.dnp.dappnode.eth",
"version": "0.1.3",
"upstreamVersion": "op-proposer/v1.10.2",
"upstreamRepo": "ethereum-optimism/optimism",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Optimism Rollup node",
"description": "The Optimism rollup node is the component responsible for deriving the L2 chain from L1 blocks (and their associated receipts)",
"architectures": [
"linux/amd64"
],
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"categories": ["ETH2.0"],
"keywords": ["optimism", "rollup", "ethereum", "node"],
"type": "service",
"architectures": ["linux/amd64"],
"links": {
"homepage": "https://github.com/dappnode/DAppNodePackage-op-node#readme",
"api": "http://op-node.dappnode:9545"
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-op-node/issues"
},
"categories": [
"ETH2.0"
],
"description": "The Optimism rollup node is the component responsible for deriving the L2 chain from L1 blocks (and their associated receipts)",
"exposable": [
{
"name": "OP Node JSON-RPC (HTTP)",
"description": "HTTP-JSON-RPC endpoint for OP",
"serviceName": "op-node",
"port": 9545
"name": "OP Node JSON-RPC (HTTP)",
"port": 9545,
"serviceName": "op-node"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-op-node.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-op-node/issues"
},
"license": "GPL-3.0",
"requirements": {
"minimumDappnodeVersion": "0.2.80"
},
"globalEnvs": [
{
"envs": [
"EXECUTION_CLIENT_MAINNET",
"CONSENSUS_CLIENT_MAINNET",
"OP_EXECUTION_CLIENT"
],
"services": ["op-node"]
"services": [
"op-node"
]
}
]
],
"keywords": [
"optimism",
"rollup",
"ethereum",
"node"
],
"license": "GPL-3.0",
"links": {
"api": "http://op-node.dappnode:9545",
"homepage": "https://github.com/dappnode/DAppNodePackage-op-node#readme"
},
"name": "op-node.dnp.dappnode.eth",
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-op-node.git"
},
"requirements": {
"minimumDappnodeVersion": "0.2.80"
},
"shortDescription": "Optimism Rollup node",
"type": "service",
"upstreamArg": "UPSTREAM_VERSION",
"upstreamRepo": "ethereum-optimism/optimism",
"upstreamVersion": "kona-node/v1.6.1",
"version": "0.1.4"
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: op-node
args:
UPSTREAM_VERSION: op-proposer/v1.10.2
UPSTREAM_VERSION: kona-node/v1.6.1
environment:
- CUSTOM_L1_RPC
- CUSTOM_L1_BEACON_API
Expand Down
Loading