I hereby claim:
- I am ilap on github.
- I am ilap (https://keybase.io/ilap) on keybase.
- I have a public key ASDiVDzi9NTlM-daMMe8wYkGarcITtk01vpk1KQ6wKWw2go
To claim this, I am signing this object:
#!/bin/bash | |
#--------------------------------------------------------------------- | |
# File: setup_shelley_monitoring.sh | |
# Created: 2019/10/17 | |
# Creator: ilap | |
#===================================================================== | |
# DESCRIPTION: | |
# | |
# This script downloads and configures the required files | |
# for monitoring a Shelley node by using grafana/prometheus. |
# | |
# Install: Add to the profile | |
# | |
# Usage: jc stake-get | |
# | |
alias jc='_() { | |
if [ -z "$*" ] | |
then | |
echo '\''usage: jc [Rest commands] | |
- stake get: Shows the current delegation info |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Get the spending key of your Yoroi address for signing the spending. | |
# At repl.it/repls/IndolentWarmheartedDehardwarization | |
# FORK IT FIRST!!!!!!!!!!! | |
# And replace the | |
# MNEMONICS="your mnemonics" with yours and then | |
# from `console.log(address.to_base58());`` | |
# to `console.log(key_prv.to_hex());` | |
KEY="" |
Author:
Pool operators' (with constructive feedbacks, ideas) Tickers, so if you're saturated pls promote them:
This chapters covers the information about the underlying P2P network of Shelley's ITN implemented in Jormungandr
.
The very simple explanation of the poldercast network relating to jormungandr.
Poldercast
is a Topic Based Pub/Sub System.This chapters covers the information how the nodes are communicating to each other in the underlying P2P network.
In jormungandr each node maintains a list of all available (reachable/unreachable) nodes (neighbours) of the overlay, from which it selects:
gossip
andoverlay
for gossip
.# P2P Section explanation
p2p:
# This is the node's `identifier` in the Poldercast topology. This should be unique and
# deterministic (which is not the case in jormungandr) in the poldercast network, and
# it's highly recommended to be set, because a random `id` is generated on every node restart otherwise.
# So, we introduced a free sybil attack against to the Poldercast's nodes in default (if it's not set).
# It simply means that the number of nodes (node ids /w address) in the poldercast increasing by every node's restart
# and just forgotten very slowly. Therefore, currently there are ~80K node entries in the topology,
# which can be one of the reasons the nodes block/slow sometimes.