2021-04-16 08:49:37 +00:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2021-03-23 22:50:18 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
2021-08-27 09:00:06 +00:00
|
|
|
std/[sequtils],
|
2021-03-23 22:50:18 +00:00
|
|
|
stew/results,
|
|
|
|
chronicles,
|
2021-10-21 11:01:29 +00:00
|
|
|
libp2p/[multiaddress, multicodec, peerstore],
|
2021-03-23 22:50:18 +00:00
|
|
|
libp2p/protocols/pubsub/pubsubpeer,
|
2021-08-03 15:17:11 +00:00
|
|
|
./rest_utils,
|
2021-03-23 22:50:18 +00:00
|
|
|
../eth1/eth1_monitor,
|
|
|
|
../validators/validator_duties,
|
2021-08-10 20:46:35 +00:00
|
|
|
../spec/forks,
|
2021-10-19 14:09:26 +00:00
|
|
|
../beacon_node, ../nimbus_binary_common
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-10-27 12:01:11 +00:00
|
|
|
export rest_utils
|
|
|
|
|
|
|
|
when defined(chronosFutureTracking):
|
|
|
|
import stew/base10
|
|
|
|
|
2021-03-23 22:50:18 +00:00
|
|
|
logScope: topics = "rest_nimbusapi"
|
|
|
|
|
|
|
|
type
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPeerInfo* = object
|
|
|
|
peerId*: string
|
|
|
|
addrs*: seq[string]
|
|
|
|
protocols*: seq[string]
|
|
|
|
protoVersion*: string
|
|
|
|
agentVersion*: string
|
|
|
|
|
2021-03-29 11:18:17 +00:00
|
|
|
RestPeerInfoTuple* = tuple
|
2021-03-23 22:50:18 +00:00
|
|
|
peerId: string
|
|
|
|
addrs: seq[string]
|
|
|
|
protocols: seq[string]
|
|
|
|
protoVersion: string
|
|
|
|
agentVersion: string
|
|
|
|
|
2021-05-20 17:56:12 +00:00
|
|
|
RestSimplePeer* = object
|
|
|
|
info*: RestPeerInfo
|
|
|
|
connectionState*: string
|
|
|
|
score*: int
|
|
|
|
|
|
|
|
RestFutureInfo* = object
|
2021-10-27 12:01:11 +00:00
|
|
|
id*: string
|
|
|
|
child_id*: string
|
2021-05-20 17:56:12 +00:00
|
|
|
procname*: string
|
|
|
|
filename*: string
|
|
|
|
line*: int
|
|
|
|
state*: string
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPubSubPeer* = object
|
|
|
|
peerId*: PeerID
|
|
|
|
score*: float64
|
|
|
|
iWantBudget*: int
|
|
|
|
iHaveBudget*: int
|
|
|
|
outbound*: bool
|
|
|
|
appScore*: float64
|
|
|
|
behaviourPenalty*: float64
|
|
|
|
sendConnAvail*: bool
|
|
|
|
closed*: bool
|
|
|
|
atEof*: bool
|
|
|
|
address*: string
|
|
|
|
backoff*: string
|
|
|
|
agent*: string
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPeerStats* = object
|
|
|
|
peerId*: PeerID
|
|
|
|
null*: bool
|
|
|
|
connected*: bool
|
|
|
|
expire*: string
|
|
|
|
score*: float64
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPeerStatus* = object
|
|
|
|
peerId*: PeerID
|
|
|
|
connected*: bool
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-10-21 11:01:29 +00:00
|
|
|
proc toInfo(node: BeaconNode, peerId: PeerId): RestPeerInfo =
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPeerInfo(
|
2021-10-21 11:01:29 +00:00
|
|
|
peerId: $peerId,
|
|
|
|
addrs: node.network.switch.peerStore.addressBook.get(peerId).toSeq().mapIt($it),
|
|
|
|
protocols: node.network.switch.peerStore.protoBook.get(peerId).toSeq(),
|
|
|
|
protoVersion: node.network.switch.peerStore.protoVersionBook.get(peerId),
|
|
|
|
agentVersion: node.network.switch.peerStore.agentBook.get(peerId)
|
2021-05-20 17:56:12 +00:00
|
|
|
)
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2021-05-20 17:56:12 +00:00
|
|
|
proc toNode(v: PubSubPeer, backoff: Moment): RestPubSubPeer =
|
|
|
|
RestPubSubPeer(
|
2021-03-23 22:50:18 +00:00
|
|
|
peerId: v.peerId,
|
|
|
|
score: v.score,
|
|
|
|
iWantBudget: v.iWantBudget,
|
|
|
|
iHaveBudget: v.iHaveBudget,
|
|
|
|
outbound: v.outbound,
|
|
|
|
appScore: v.appScore,
|
|
|
|
behaviourPenalty: v.behaviourPenalty,
|
|
|
|
sendConnAvail: v.sendConn != nil,
|
|
|
|
closed: v.sendConn != nil and v.sendConn.closed,
|
|
|
|
atEof: v.sendConn != nil and v.sendConn.atEof,
|
|
|
|
address:
|
|
|
|
if v.address.isSome():
|
|
|
|
$v.address.get()
|
|
|
|
else:
|
|
|
|
"<no address>",
|
|
|
|
backoff: $(backoff - Moment.now()),
|
|
|
|
agent:
|
|
|
|
when defined(libp2p_agents_metrics):
|
|
|
|
v.shortAgent
|
|
|
|
else:
|
|
|
|
"unknown"
|
|
|
|
)
|
|
|
|
|
|
|
|
proc installNimbusApiHandlers*(router: var RestRouter, node: BeaconNode) =
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/beacon/head") do () -> RestApiResponse:
|
2021-06-01 11:13:40 +00:00
|
|
|
return RestApiResponse.jsonResponse(node.dag.head.slot)
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/chain/head") do() -> RestApiResponse:
|
2021-03-23 22:50:18 +00:00
|
|
|
let
|
2021-06-01 11:13:40 +00:00
|
|
|
head = node.dag.head
|
2022-03-16 07:20:40 +00:00
|
|
|
finalized = getStateField(node.dag.headState, finalized_checkpoint)
|
2021-04-16 08:49:37 +00:00
|
|
|
justified =
|
2022-03-16 07:20:40 +00:00
|
|
|
getStateField(node.dag.headState, current_justified_checkpoint)
|
2021-03-23 22:50:18 +00:00
|
|
|
return RestApiResponse.jsonResponse(
|
|
|
|
(
|
|
|
|
head_slot: head.slot,
|
|
|
|
head_block_root: head.root.data.toHex(),
|
|
|
|
finalized_slot: finalized.epoch * SLOTS_PER_EPOCH,
|
|
|
|
finalized_block_root: finalized.root.data.toHex(),
|
|
|
|
justified_slot: justified.epoch * SLOTS_PER_EPOCH,
|
|
|
|
justified_block_root: justified.root.data.toHex()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/syncmanager/status") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
return RestApiResponse.jsonResponse(node.syncManager.inProgress)
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/node/peerid") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
return RestApiResponse.jsonResponse((peerid: $node.network.peerId()))
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/node/version") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
return RestApiResponse.jsonResponse((version: "Nimbus/" & fullVersionStr))
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/network/ids") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
var res: seq[PeerID]
|
|
|
|
for peerId, peer in node.network.peerPool:
|
|
|
|
res.add(peerId)
|
|
|
|
return RestApiResponse.jsonResponse((peerids: res))
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/network/peers") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
2021-05-20 17:56:12 +00:00
|
|
|
var res: seq[RestSimplePeer]
|
2021-03-23 22:50:18 +00:00
|
|
|
for id, peer in node.network.peerPool:
|
2021-05-20 17:56:12 +00:00
|
|
|
res.add(
|
|
|
|
RestSimplePeer(
|
2021-10-21 11:01:29 +00:00
|
|
|
info: toInfo(node, id),
|
2021-05-20 17:56:12 +00:00
|
|
|
connectionState: $peer.connectionState,
|
|
|
|
score: peer.score
|
|
|
|
)
|
|
|
|
)
|
2021-03-23 22:50:18 +00:00
|
|
|
return RestApiResponse.jsonResponse((peers: res))
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodPost, "/nimbus/v1/graffiti") do (
|
2022-01-05 15:42:29 +00:00
|
|
|
contentBody: Option[ContentBody]) -> RestApiResponse:
|
|
|
|
if contentBody.isNone:
|
|
|
|
return RestApiResponse.jsonError(Http400, EmptyRequestBodyError)
|
|
|
|
|
|
|
|
template setGraffitiAux(node: BeaconNode, graffitiStr: string): RestApiResponse =
|
|
|
|
node.graffitiBytes = try:
|
|
|
|
GraffitiBytes.init(graffitiStr)
|
|
|
|
except CatchableError as err:
|
|
|
|
return RestApiResponse.jsonError(Http400, InvalidGraffitiBytesValue,
|
|
|
|
err.msg)
|
|
|
|
RestApiResponse.jsonResponse((result: true))
|
|
|
|
|
|
|
|
case contentBody.get.contentType
|
|
|
|
of "application/json":
|
|
|
|
let graffitiBytes = decodeBody(GraffitiBytes, contentBody.get)
|
|
|
|
if graffitiBytes.isErr:
|
|
|
|
return RestApiResponse.jsonError(Http400, InvalidGraffitiBytesValue,
|
|
|
|
$graffitiBytes.error)
|
|
|
|
node.graffitiBytes = graffitiBytes.get
|
2021-03-26 19:04:04 +00:00
|
|
|
return RestApiResponse.jsonResponse((result: true))
|
2022-01-05 15:42:29 +00:00
|
|
|
of "text/plain":
|
|
|
|
return node.setGraffitiAux contentBody.get.strData
|
|
|
|
of "application/x-www-form-urlencoded":
|
|
|
|
return node.setGraffitiAux decodeUrl(contentBody.get.strData)
|
2021-03-26 17:57:02 +00:00
|
|
|
else:
|
2022-01-05 15:42:29 +00:00
|
|
|
return RestApiResponse.jsonError(Http400, "Unsupported content type: " &
|
|
|
|
$contentBody.get.contentType)
|
2021-03-26 17:57:02 +00:00
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/graffiti") do (
|
2021-03-26 19:04:04 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
return RestApiResponse.jsonResponse(node.graffitiBytes)
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodPost, "/nimbus/v1/chronicles/settings") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
log_level: Option[string]) -> RestApiResponse:
|
|
|
|
if log_level.isSome():
|
|
|
|
let level =
|
|
|
|
block:
|
|
|
|
let res = log_level.get()
|
|
|
|
if res.isErr():
|
2021-04-08 14:34:05 +00:00
|
|
|
return RestApiResponse.jsonError(Http400, InvalidLogLevelValueError,
|
2021-03-23 22:50:18 +00:00
|
|
|
$res.error())
|
|
|
|
res.get()
|
|
|
|
{.gcsafe.}:
|
|
|
|
updateLogLevel(level)
|
|
|
|
return RestApiResponse.jsonResponse((result: true))
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/eth1/chain") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
let res =
|
|
|
|
if not(isNil(node.eth1Monitor)):
|
2022-01-03 12:22:56 +00:00
|
|
|
mapIt(node.eth1Monitor.depositChainBlocks, it)
|
2021-03-23 22:50:18 +00:00
|
|
|
else:
|
|
|
|
@[]
|
|
|
|
return RestApiResponse.jsonResponse(res)
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/eth1/proposal_data") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
let wallSlot = node.beaconClock.now.slotOrZero
|
|
|
|
let head =
|
|
|
|
block:
|
|
|
|
let res = node.getCurrentHead(wallSlot)
|
|
|
|
if res.isErr():
|
2021-04-08 14:34:05 +00:00
|
|
|
return RestApiResponse.jsonError(Http503, BeaconNodeInSyncError)
|
2021-03-23 22:50:18 +00:00
|
|
|
res.get()
|
2021-06-01 11:13:40 +00:00
|
|
|
let proposalState = assignClone(node.dag.headState)
|
Prune `BlockRef` on finalization (#3513)
Up til now, the block dag has been using `BlockRef`, a structure adapted
for a full DAG, to represent all of chain history. This is a correct and
simple design, but does not exploit the linearity of the chain once
parts of it finalize.
By pruning the in-memory `BlockRef` structure at finalization, we save,
at the time of writing, a cool ~250mb (or 25%:ish) chunk of memory
landing us at a steady state of ~750mb normal memory usage for a
validating node.
Above all though, we prevent memory usage from growing proportionally
with the length of the chain, something that would not be sustainable
over time - instead, the steady state memory usage is roughly
determined by the validator set size which grows much more slowly. With
these changes, the core should remain sustainable memory-wise post-merge
all the way to withdrawals (when the validator set is expected to grow).
In-memory indices are still used for the "hot" unfinalized portion of
the chain - this ensure that consensus performance remains unchanged.
What changes is that for historical access, we use a db-based linear
slot index which is cache-and-disk-friendly, keeping the cost for
accessing historical data at a similar level as before, achieving the
savings at no percievable cost to functionality or performance.
A nice collateral benefit is the almost-instant startup since we no
longer load any large indicies at dag init.
The cost of this functionality instead can be found in the complexity of
having to deal with two ways of traversing the chain - by `BlockRef` and
by slot.
* use `BlockId` instead of `BlockRef` where finalized / historical data
may be required
* simplify clearance pre-advancement
* remove dag.finalizedBlocks (~50:ish mb)
* remove `getBlockAtSlot` - use `getBlockIdAtSlot` instead
* `parent` and `atSlot` for `BlockId` now require a `ChainDAGRef`
instance, unlike `BlockRef` traversal
* prune `BlockRef` parents on finality (~200:ish mb)
* speed up ChainDAG init by not loading finalized history index
* mess up light client server error handling - this need revisiting :)
2022-03-17 17:42:56 +00:00
|
|
|
node.dag.withUpdatedState(proposalState[], head.atSlot(wallSlot).toBlockSlotId().expect("not nil")) do:
|
2021-04-14 09:34:35 +00:00
|
|
|
return RestApiResponse.jsonResponse(
|
2022-03-16 07:20:40 +00:00
|
|
|
node.getBlockProposalEth1Data(state))
|
2022-01-05 18:38:04 +00:00
|
|
|
do:
|
|
|
|
return RestApiResponse.jsonError(Http400, PrunedStateError)
|
2021-03-23 22:50:18 +00:00
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/debug/chronos/futures") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
when defined(chronosFutureTracking):
|
2021-05-20 17:56:12 +00:00
|
|
|
var res: seq[RestFutureInfo]
|
2021-03-23 22:50:18 +00:00
|
|
|
for item in pendingFutures():
|
|
|
|
let loc = item.location[LocCreateIndex][]
|
2021-10-27 12:01:11 +00:00
|
|
|
let futureId = Base10.toString(item.id)
|
|
|
|
let childId =
|
|
|
|
if isNil(item.child): ""
|
|
|
|
else: Base10.toString(item.child.id)
|
2021-03-23 22:50:18 +00:00
|
|
|
res.add(
|
2021-05-20 17:56:12 +00:00
|
|
|
RestFutureInfo(
|
2021-10-27 12:01:11 +00:00
|
|
|
id: futureId,
|
|
|
|
child_id: childId,
|
2021-03-23 22:50:18 +00:00
|
|
|
procname: $loc.procedure,
|
|
|
|
filename: $loc.file,
|
|
|
|
line: loc.line,
|
|
|
|
state: $item.state
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return RestApiResponse.jsonResponse(res)
|
|
|
|
else:
|
|
|
|
return RestApiResponse.jsonError(Http503,
|
|
|
|
"Compile with '-d:chronosFutureTracking' to get this request working")
|
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
router.api(MethodGet, "/nimbus/v1/debug/gossip/peers") do (
|
2021-03-23 22:50:18 +00:00
|
|
|
) -> RestApiResponse:
|
|
|
|
|
|
|
|
let gossipPeers =
|
|
|
|
block:
|
2021-05-20 17:56:12 +00:00
|
|
|
var res: seq[tuple[topic: string, peers: seq[RestPubSubPeer]]]
|
2021-03-23 22:50:18 +00:00
|
|
|
for topic, v in node.network.pubsub.gossipsub:
|
2021-05-20 17:56:12 +00:00
|
|
|
var peers: seq[RestPubSubPeer]
|
2021-03-23 22:50:18 +00:00
|
|
|
let backoff = node.network.pubsub.backingOff.getOrDefault(topic)
|
|
|
|
for peer in v:
|
|
|
|
peers.add(peer.toNode(backOff.getOrDefault(peer.peerId)))
|
|
|
|
res.add((topic: topic, peers: peers))
|
|
|
|
res
|
|
|
|
let meshPeers =
|
|
|
|
block:
|
2021-05-20 17:56:12 +00:00
|
|
|
var res: seq[tuple[topic: string, peers: seq[RestPubSubPeer]]]
|
2021-03-23 22:50:18 +00:00
|
|
|
for topic, v in node.network.pubsub.mesh:
|
2021-05-20 17:56:12 +00:00
|
|
|
var peers: seq[RestPubSubPeer]
|
2021-03-23 22:50:18 +00:00
|
|
|
let backoff = node.network.pubsub.backingOff.getOrDefault(topic)
|
|
|
|
for peer in v:
|
|
|
|
peers.add(peer.toNode(backOff.getOrDefault(peer.peerId)))
|
|
|
|
res.add((topic: topic, peers: peers))
|
|
|
|
res
|
|
|
|
let colocationPeers =
|
|
|
|
block:
|
|
|
|
var res: seq[tuple[address: string, peerids: seq[PeerID]]]
|
|
|
|
for k, v in node.network.pubsub.peersInIP:
|
|
|
|
var peerids: seq[PeerID]
|
|
|
|
for id in v:
|
|
|
|
peerids.add(id)
|
|
|
|
res.add(($k, peerids))
|
|
|
|
res
|
|
|
|
let peerStats =
|
|
|
|
block:
|
2021-05-20 17:56:12 +00:00
|
|
|
var stats: seq[RestPeerStats]
|
2021-03-23 22:50:18 +00:00
|
|
|
for peerId, pstats in node.network.pubsub.peerStats:
|
|
|
|
let peer = node.network.pubsub.peers.getOrDefault(peerId)
|
|
|
|
stats.add(
|
2021-05-20 17:56:12 +00:00
|
|
|
RestPeerStats(
|
2021-03-23 22:50:18 +00:00
|
|
|
peerId: peerId,
|
|
|
|
null: isNil(peer),
|
|
|
|
connected: if isNil(peer): false else: peer.connected(),
|
|
|
|
expire: $(pstats.expire - Moment.now()),
|
|
|
|
score: pstats.score
|
|
|
|
)
|
|
|
|
)
|
|
|
|
stats
|
|
|
|
let allPeers =
|
|
|
|
block:
|
2021-05-20 17:56:12 +00:00
|
|
|
var peers: seq[RestPeerStatus]
|
2021-03-23 22:50:18 +00:00
|
|
|
for peerId, peer in node.network.pubsub.peers:
|
2021-05-20 17:56:12 +00:00
|
|
|
peers.add(RestPeerStatus(peerId: peerId, connected: peer.connected))
|
2021-03-23 22:50:18 +00:00
|
|
|
peers
|
|
|
|
return RestApiResponse.jsonResponse(
|
|
|
|
(
|
|
|
|
gossip_peers: gossipPeers,
|
|
|
|
mesh_peers: meshPeers,
|
|
|
|
colocation_peers: colocationPeers,
|
|
|
|
peer_stats: peerStats,
|
|
|
|
all_peers: allPeers
|
|
|
|
)
|
|
|
|
)
|
2022-01-06 07:38:40 +00:00
|
|
|
|
|
|
|
# Legacy URLS - Nimbus <= 1.5.5 used to expose the REST API with an additional
|
|
|
|
# `/api` path component
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/beacon/head",
|
|
|
|
"/nimbus/v1/beacon/head")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/chain/head",
|
|
|
|
"/nimbus/v1/chain/head")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/syncmanager/status",
|
|
|
|
"/nimbus/v1/syncmanager/status")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/node/peerid",
|
|
|
|
"/nimbus/v1/node/peerid")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/node/version",
|
|
|
|
"/nimbus/v1/node/version")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/network/ids",
|
|
|
|
"/nimbus/v1/network/ids")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/network/peers",
|
|
|
|
"/nimbus/v1/network/peers")
|
|
|
|
router.redirect(
|
|
|
|
MethodPost,
|
|
|
|
"/api/nimbus/v1/graffiti",
|
|
|
|
"/nimbus/v1/graffiti")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/graffiti",
|
|
|
|
"/nimbus/v1/graffiti")
|
|
|
|
router.redirect(
|
|
|
|
MethodPost,
|
|
|
|
"/api/nimbus/v1/chronicles/settings",
|
|
|
|
"/nimbus/v1/chronicles/settings")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/eth1/chain",
|
|
|
|
"/nimbus/v1/eth1/chain")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/eth1/proposal_data",
|
|
|
|
"/nimbus/v1/eth1/proposal_data")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/debug/chronos/futures",
|
|
|
|
"/nimbus/v1/debug/chronos/futures")
|
|
|
|
router.redirect(
|
|
|
|
MethodGet,
|
|
|
|
"/api/nimbus/v1/debug/gossip/peers",
|
|
|
|
"/nimbus/v1/debug/gossip/peers")
|