mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Merge pull request #6272 from ghubstan/proto-n-beta-guide-doc-updates
Update API test-guide and gRPC method docs
This commit is contained in:
commit
0f66ffa778
2 changed files with 15 additions and 3 deletions
|
@ -43,6 +43,14 @@ $ ./gradlew clean build :apitest:installDaoSetup # if you want to run
|
|||
|
||||
## Running Api Test Harness
|
||||
|
||||
#### Warning: Never run an API daemon and the [Bisq GUI](https://bisq.network) on the same host at the same time.
|
||||
|
||||
The API daemon and the GUI share the same default wallet and connection ports. Beyond inevitable failures due to
|
||||
fighting over the wallet and ports, doing so will probably corrupt your wallet. Before starting the API daemon, make
|
||||
sure your GUI is shut down, and vice-versa. Please back up your mainnet wallet early and often with the GUI.
|
||||
|
||||
### Configuration And Start Command
|
||||
|
||||
If your bitcoin-core binaries are in your system `PATH`, start bitcoind in regtest-mode, Bisq seednode and arbitration
|
||||
node daemons, plus Bob & Alice daemons in a bash terminal with the following bash command:
|
||||
```
|
||||
|
|
|
@ -66,7 +66,8 @@ service Offers {
|
|||
// Get the available BSQ swap offer with offer-id.
|
||||
rpc GetBsqSwapOffer (GetOfferRequest) returns (GetBsqSwapOfferReply) {
|
||||
}
|
||||
// Get the v1 protocol offer with offer-id.
|
||||
// Get the v1 protocol offer with an offer-id. Your node must have a payment account with the same
|
||||
// payment method as the offer's associated payment method, e,g., ACH_TRANSFER, CASH_DEPOSIT, etc.
|
||||
rpc GetOffer (GetOfferRequest) returns (GetOfferReply) {
|
||||
}
|
||||
// Get user's BSQ swap offer with offer-id.
|
||||
|
@ -78,7 +79,9 @@ service Offers {
|
|||
// Get all available BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
|
||||
rpc GetBsqSwapOffers (GetBsqSwapOffersRequest) returns (GetBsqSwapOffersReply) {
|
||||
}
|
||||
// Get all available v1 protocol offers with a BUY (BTC) or SELL (BTC) direction.
|
||||
// Get all available v1 protocol offers with a BUY (BTC) or SELL (BTC) direction. The returned offers
|
||||
// are restricted to those associated with payment methods matching the payment methods you have set up
|
||||
// on your node, e,g., NATIONAL_BANK, US_POSTAL_MONEY_ORDER, etc.
|
||||
rpc GetOffers (GetOffersRequest) returns (GetOffersReply) {
|
||||
}
|
||||
// Get all user's BSQ swap offers with a BUY (BTC) or SELL (BTC) direction.
|
||||
|
@ -485,7 +488,8 @@ service Trades {
|
|||
// Get currently open, or historical trades (closed or failed).
|
||||
rpc GetTrades (GetTradesRequest) returns (GetTradesReply) {
|
||||
}
|
||||
// Take an open offer.
|
||||
// Take an available offer. Your node must have a payment account with the same payment method as
|
||||
// the offer's payment method, e.g., NATIONAL_BANK, SEPA, SWIFT, etc.
|
||||
rpc TakeOffer (TakeOfferRequest) returns (TakeOfferReply) {
|
||||
}
|
||||
// Send a 'payment started' message to a trading peer (the BTC seller).
|
||||
|
|
Loading…
Add table
Reference in a new issue