Skip to content

Commit cd1d64c

Browse files
committed
readme cleanup
1 parent 383131b commit cd1d64c

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,11 @@ The status api server is used to record and query events. Events can be added th
3939
$ go run cmd/status-api/*
4040

4141
# Add events
42-
$ echo 111 > pipe.fifo
43-
$ curl localhost:8082/api/v1/new_event?message=222
42+
$ echo "hello world" > pipe.fifo
43+
$ curl localhost:8082/api/v1/new_event?message=this+is+a+test
4444

4545
# Query events (timestamp in UTC)
4646
$ curl -s localhost:8082/api/v1/events | jq -r '(.[] | [.received_at, .message]) | @tsv'
47-
2024-09-21T14:35:37.674863Z 111
48-
2024-09-21T14:35:42.486016Z 222
47+
2024-09-24T10:45:50.774339Z hello world
48+
2024-09-24T10:46:02.01221Z this is a test
4949
```
50-
51-
---
52-
53-
## Next Steps
54-
55-
These partly overlap with https://github.com/flashbots/cvm-reverse-proxy:
56-
- Server that verifies client-side aTLS certificate
57-
- Client that sends client-side aTLS certificate

0 commit comments

Comments
 (0)