mirror of
https://github.com/bisq-network/bisq-api-reference.git
synced 2026-01-26 17:33:33 +00:00
15 lines
564 B
Bash
Executable File
15 lines
564 B
Bash
Executable File
#!/bin/bash
|
|
source "env.sh"
|
|
|
|
# Take a BSQ swap offer.
|
|
# The amount param is optional.
|
|
$BISQ_HOME/bisq-cli --password=xyz --port=9998 takeoffer --offer-id=8368b2e2-anb6-4ty9-ab09-3ebdk34f2aea --amount=0.1
|
|
|
|
# Take an offer that is not a BSQ swap offer.
|
|
# The payment-account-id param is required, the amount and fee-currency params are optional.
|
|
$BISQ_HOME/bisq-cli --password=xyz --port=9998 takeoffer \
|
|
--offer-id=83e8b2e2-51b6-4f39-a748-3ebd29c22aea \
|
|
--payment-account-id=fe20cdbd-22be-4b8a-a4b6-d2608ff09d6e \
|
|
--amount=0.08 \
|
|
--fee-currency=BTC
|