You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The response returned by invoking the net_nodeInfo RPC method should be extended with the following properties:
port (e.g. 8483)
filePort (e.g. 8484)
addressSignature (can be empty, see below)
The address property already exists but is always empty. This property should be used to return the PublicAddress specified in the node_config.json configuration file.
The addressSignature property should be the signature generated by ed25519.Sign(privateKey, address). The signature can then be verified with ed25519.Verify(node.ID.Bytes(), address, signature) assuming that node.ID.Bytes() is the publicKey of the privateKey used to generate the signature. (Note: will be empty if address is empty) Similar to:
The response returned by invoking the
net_nodeInfo
RPC method should be extended with the following properties:port
(e.g. 8483)filePort
(e.g. 8484)addressSignature
(can be empty, see below)The
address
property already exists but is always empty. This property should be used to return thePublicAddress
specified in thenode_config.json
configuration file.The
addressSignature
property should be the signature generated byed25519.Sign(privateKey, address)
. The signature can then be verified withed25519.Verify(node.ID.Bytes(), address, signature)
assuming thatnode.ID.Bytes()
is the publicKey of the privateKey used to generate the signature. (Note: will be empty if address is empty) Similar to:go-vite/net/finder.go
Line 312 in 46bd60e
Additionally, the response returned by invoking the
dashboard_processInfo
RPPC method should be extended with the following properties:httpPort
(e.g. 48132, omitted if HTTP is not enabled)wsPort
(e.g. 41420, omitted if WS is not enabled)The text was updated successfully, but these errors were encountered: