mirror of
https://github.com/bisq-network/bisq-api-reference.git
synced 2026-01-26 17:33:33 +00:00
This might give Python devs an easier time than if all the sample code lived deep inside a gradle project. This means there is no root project gradle build file; the reference-doc-builder and java-examples modules are separate java projects, with their own build files.
8 lines
324 B
Bash
Executable File
8 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
source "env.sh"
|
|
# Withdraw BTC trade proceeds to external bitcoin wallet.
|
|
$BISQ_HOME/bisq-cli --password=xyz --port=9998 withdrawfunds \
|
|
--trade-id=83e8b2e2-51b6-4f39-a748-3ebd29c22aea \
|
|
--address=bcrt1qqau7ad7lf8xx08mnxl709h6cdv4ma9u3ace5k2 \
|
|
--memo="Optional memo saved with transaction in Bisq wallet."
|