Skip to content

Commit

Permalink
fix: testnet key naming and add timestamp to sample message send (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyaprem authored Dec 9, 2023
1 parent fad14e3 commit 7b1b354
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/guides/nwaku/run-docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Modify the `run_node.sh` file to customise your [node's configuration](/guides/n

```shell
export ETH_CLIENT_ADDRESS=wss://sepolia.infura.io/ws/v3/[INFURA API KEY]
export ETH_TESTNET_KEY=[INFURA API KEY]
export ETH_TESTNET_KEY=[TESTNET PRIVATE KEY]
export KEYSTORE_PASSWORD=[RLN MEMBERSHIP PASSWORD]
```

Expand Down Expand Up @@ -85,7 +85,8 @@ 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"
"contentTopic": "/my-app/2/chatroom-1/proto",
"timestamp":'$(date +%s)'
}'
```

Expand Down

0 comments on commit 7b1b354

Please sign in to comment.