From 83476851263d1ad4a779c1e61de1591486f78607 Mon Sep 17 00:00:00 2001 From: Ishimwe Prince Date: Wed, 18 Dec 2024 07:57:23 +0200 Subject: [PATCH] chore: setup monero tooling (#961) * chore: setup interaction with monero-wallet-cli * fix: add new line * chore: add powershell script * fix: clean up * chore: add monero-wallet-cli to the tools --- helpers.sh | 1 + monero-wallet-cli.ps1 | 1 + monero-wallet-cli.sh | 3 +++ 3 files changed, 5 insertions(+) create mode 100644 monero-wallet-cli.ps1 create mode 100755 monero-wallet-cli.sh diff --git a/helpers.sh b/helpers.sh index 8bd16bc..b53d79b 100755 --- a/helpers.sh +++ b/helpers.sh @@ -18,6 +18,7 @@ install_tooling() { "btcpayserver_trezarcoind" "trezarcoin-cli.sh" "Command line for your Trezar instance" \ "btcpayserver_viacoind" "viacoin-cli.sh" "Command line for your Viacoin instance" \ "btcpayserver_elementsd" "elements-cli.sh" "Command line for your Elements/Liquid instance" \ + "btcpayserver_monerod" "monero-wallet-cli.sh" "Command line for your Monero instance" \ "joinmarket" "jm.sh" "Command line for your joinmarket instance" \ "ndlci_cli" "ndlc-cli.sh" "Command line for NDLC-CLI" \ "pihole" "pihole.sh" "Command line for running pihole commands" \ diff --git a/monero-wallet-cli.ps1 b/monero-wallet-cli.ps1 new file mode 100644 index 0000000..1423a83 --- /dev/null +++ b/monero-wallet-cli.ps1 @@ -0,0 +1 @@ +docker exec -it btcpayserver_monerod monero-wallet-cli $args diff --git a/monero-wallet-cli.sh b/monero-wallet-cli.sh new file mode 100755 index 0000000..58c7762 --- /dev/null +++ b/monero-wallet-cli.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it btcpayserver_monerod monero-wallet-cli "$@"