mirror of
https://github.com/bisq-network/bisq-api-reference.git
synced 2026-01-27 17:43: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.
7 lines
310 B
Bash
Executable File
7 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
source "env.sh"
|
|
# Get my BSQ swap offers to buy BTC for BSQ.
|
|
$BISQ_HOME/bisq-cli --password=xyz --port=9998 getmyoffers --direction=BUY --currency-code=BSQ
|
|
# Get my BSQ swap offers to sell BTC for BSQ.
|
|
$BISQ_HOME/bisq-cli --password=xyz --port=9998 getmyoffers --direction=SELL --currency-code=BSQ
|