remove timestamp from request

This commit is contained in:
LordGhostX 2024-03-12 11:42:54 +01:00 committed by GitHub
parent 7fabb936a3
commit af2cba09da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,8 +90,7 @@ curl --location 'http://127.0.0.1:8645/relay/v1/auto/messages' \
--header 'Content-Type: application/json' \
--data '{
"payload": "'$(echo -n "Hello Waku Network - from Anonymous User" | base64)'",
"contentTopic": "/my-app/2/chatroom-1/proto",
"timestamp":'$(date +%s)'
"contentTopic": "/my-app/2/chatroom-1/proto"
}'
```
@ -104,4 +103,4 @@ curl --location 'http://127.0.0.1:8645/store/v1/messages?contentTopics=%2Fmy-app
:::tip Congratulations!
You have successfully started a `nwaku` node with `RLN` enabled using Docker Compose. Have a look at the [Node Configuration Examples](/guides/nwaku/configure-nwaku) and [Advanced Configuration](https://github.com/waku-org/nwaku-compose/blob/master/ADVANCED.md) guides to learn how to configure `nwaku` for different use cases.
:::
:::