You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: express_relay/sdk/python/README.md
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,10 +16,28 @@ $ poetry add express-relay
16
16
17
17
## Quickstart
18
18
19
-
To run the simple searcher script, navigate to `python/` and run
19
+
To run the simple searcher script, navigate to `python/` and run the following command:
20
+
21
+
### Evm
20
22
21
23
```
22
-
$ poetry run python3 -m express_relay.searcher.examples.simple_searcher --private-key <PRIVATE_KEY_HEX_STRING> --chain-id development --verbose --server-url https://per-staging.dourolabs.app/
24
+
$ poetry run python3 -m express_relay.searcher.examples.simple_searcher_evm \
25
+
--private-key <PRIVATE_KEY_HEX_STRING> \
26
+
--chain-id development \
27
+
--verbose \
28
+
--server-url https://per-staging.dourolabs.app/
23
29
```
24
30
25
-
This simple example runs a searcher that queries the Express Relay liquidation server for available liquidation opportunities and naively submits a bid on each available opportunity.
31
+
This simple example runs a searcher that queries the Express Relay liquidation server for available liquidation
32
+
opportunities and naively submits a bid on each available opportunity.
33
+
34
+
### Svm
35
+
36
+
```
37
+
$ poetry run python3 -m express_relay.searcher.examples.simple_searcher_svm \
0 commit comments