Skip to content

Conversation

@willcl-ark
Copy link
Owner

Creates dirs

.
├── docs
│   ├── data.md
│   ├── developer-notes.md
│   ├── graph.md
│   ├── install.md
│   ├── lightning.md
│   ├── machines.webp
│   ├── monitoring.md
│   ├── quickrun.md
│   ├── random_internet_as_graph_n100.png
│   ├── release-process.md
│   ├── running.md
│   ├── scenarios.md
│   ├── services.md
│   └── warcli.md
├── justfile
├── LICENSE
├── MANIFEST.in
├── pyproject.toml
├── README.md
├── requirements.in
├── requirements.txt
├── resources
│   ├── graphs
│   │   ├── default.graphml
│   │   └── __init__.py
│   ├── images
│   │   ├── bitcoin
│   │   │   ├── addrman.patch
│   │   │   ├── Dockerfile
│   │   │   ├── entrypoint.sh
│   │   │   └── isroutable.patch
│   │   ├── __init__.py
│   │   ├── rpc
│   │   │   ├── Dockerfile_dev
│   │   │   ├── Dockerfile_prod
│   │   │   ├── Dockerfile_rpc.dockerignore
│   │   │   └── entrypoint.sh
│   │   ├── sidecar
│   │   │   └── Dockerfile
│   │   └── tor
│   │       ├── Dockerfile_tor_da
│   │       ├── Dockerfile_tor_relay
│   │       ├── tor-entrypoint.sh
│   │       ├── tor-keys
│   │       │   ├── authority_certificate
│   │       │   ├── authority_identity_key
│   │       │   ├── authority_signing_key
│   │       │   ├── ed25519_master_id_public_key
│   │       │   ├── ed25519_master_id_secret_key
│   │       │   ├── ed25519_signing_cert
│   │       │   ├── ed25519_signing_secret_key
│   │       │   ├── secret_id_key
│   │       │   ├── secret_onion_key
│   │       │   └── secret_onion_key_ntor
│   │       ├── torrc
│   │       ├── torrc.da
│   │       └── torrc.relay
│   ├── __init__.py
│   ├── manifests
│   │   ├── grafana_values.yaml
│   │   ├── __init__.py
│   │   ├── loki_values.yaml
│   │   ├── namespace.yaml
│   │   ├── rbac-config.yaml
│   │   ├── warnet-rpc-service.yaml
│   │   ├── warnet-rpc-statefulset-dev.yaml
│   │   └── warnet-rpc-statefulset.yaml
│   └── scripts
│       ├── apidocs.py
│       ├── build-k8s-rpc.sh
│       ├── connect_logging.sh
│       ├── graphdocs.py
│       ├── __init__.py
│       ├── install_logging.sh
│       └── quick_start.sh
├── src
│   ├── __init__.py
│   ├── test_framework
│   │   ├── address.py
│   │   ├── authproxy.py
│   │   ├── bdb.py
│   │   ├── bip340_test_vectors.csv
│   │   ├── blockfilter.py
│   │   ├── blocktools.py
│   │   ├── coverage.py
│   │   ├── descriptors.py
│   │   ├── ellswift_decode_test_vectors.csv
│   │   ├── ellswift.py
│   │   ├── __init__.py
│   │   ├── key.py
│   │   ├── messages.py
│   │   ├── muhash.py
│   │   ├── netutil.py
│   │   ├── p2p.py
│   │   ├── psbt.py
│   │   ├── ripemd160.py
│   │   ├── script.py
│   │   ├── script_util.py
│   │   ├── secp256k1.py
│   │   ├── segwit_addr.py
│   │   ├── siphash.py
│   │   ├── socks5.py
│   │   ├── test_framework.py
│   │   ├── test_node.py
│   │   ├── test_shell.py
│   │   ├── util.py
│   │   ├── wallet.py
│   │   ├── wallet_util.py
│   │   └── xswiftec_inv_test_vectors.csv
│   └── warnet
│       ├── backend
│       │   ├── __init__.py
│       │   └── kubernetes_backend.py
│       ├── cli
│       │   ├── bitcoin.py
│       │   ├── cluster.py
│       │   ├── graph.py
│       │   ├── image_build.py
│       │   ├── image.py
│       │   ├── __init__.py
│       │   ├── ln.py
│       │   ├── main.py
│       │   ├── network.py
│       │   ├── rpc.py
│       │   └── scenarios.py
│       ├── cln.py
│       ├── graph_schema.json
│       ├── __init__.py
│       ├── lnchannel.py
│       ├── lnd.py
│       ├── lnnode.py
│       ├── logging_config.json
│       ├── scenarios
│       │   ├── __init__.py
│       │   ├── ln_init.py
│       │   ├── miner_std.py
│       │   ├── sens_relay.py
│       │   ├── tx_flood.py
│       │   └── utils.py
│       ├── server.py
│       ├── services.py
│       ├── status.py
│       ├── tank.py
│       ├── test_framework_bridge.py
│       ├── utils.py
│       └── warnet.py
└── test
    ├── build_branch_test.py
    ├── dag_connection_test.py
    ├── data
    │   ├── 12_node_ring.graphml
    │   ├── build_v24_test.graphml
    │   ├── LN_100.json
    │   ├── LN_10.json
    │   ├── ln.graphml
    │   ├── permutations.graphml
    │   ├── services.graphml
    │   └── ten_semi_unconnected.graphml
    ├── framework_tests
    │   ├── connect_dag.py
    │   └── __init__.py
    ├── graph_test.py
    ├── __init__.py
    ├── ln_test.py
    ├── onion_test.py
    ├── rpc_test.py
    ├── scenarios_test.py
    └── test_base.py

21 directories, 149 files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants