This is version 0.1
I want to run VMs with custom networking over a bridge.
| #!/bin/bash -e | |
| # JAVA_HOME can be passed as argument if not set | |
| if [ ! -d $JAVA_HOME ]; then | |
| JAVA_HOME=${1} | |
| fi | |
| KEYSTORE=$JAVA_HOME/jre/lib/security/cacerts | |
| if [ ! -f "$KEYSTORE" ]; then | |
| echo "Keystore not found in '$KEYSTORE'" | |
| exit 1 |
WIP
Lets say a user wants to spin up a node with 0.1 btc, open a few channels, and generate routing fees.
How do they calculate a risk/reward ratio (RR) that makes economic sense?
What else can they do to improve the calculation, such as compartmentalising risk into discrete chunks which can be evaluated independently?
| query GetMagmaOffers { | |
| getOffers { | |
| list { | |
| account | |
| amboss_fee_rate | |
| base_fee | |
| base_fee_cap | |
| fee_rate | |
| fee_rate_cap | |
| id |