Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kant777 authored Oct 14, 2023
1 parent 1ffb76b commit 6e76793
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,18 +81,18 @@ service Searcher {
}
message Bid {
string txn_hash = 1;
int64 bid_amt = 2;
string tx_hash = 1;
int64 bid_amount = 2;
int64 block_number = 3;
};
```

By default, the docker setup exposes port `13524`, which is the standard port on which the searcher api is running. By hitting SendBid with the bid structure in the following format:
```json
By default, the docker setup exposes port `13524`, which is the standard port on which the searcher api is running. By hitting `SendBid` with the bid structure in the following format:
```
{
"txn_hash": "<txn-hash>",
"bid_amt": <number>,
"tx_hash": "<tx-hash>",
"bid_amount": <number>,
"block_number": <block-number>
}
```
Expand Down

0 comments on commit 6e76793

Please sign in to comment.