-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add dockerfile and script for keylist cronjob
- Loading branch information
1 parent
732d98b
commit 9bddce5
Showing
4 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM alpine:latest | ||
|
||
WORKDIR /app | ||
|
||
COPY ../keylistCron/send_commitment.sh . | ||
COPY ../keylistCron/crontab.txt . | ||
|
||
# CMD to run cron and keep container running | ||
CMD ["sh", "-c", "crontab ./crontab.txt && tail -f /dev/null"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0 0 * * * /app/send_commitment.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
# Fetch keylist JSON from the provided URL | ||
KEYLIST_URL="https://api.mercurywallet.io/info/keylist" | ||
KEYLIST_JSON=$(curl -sSL "$KEYLIST_URL") | ||
|
||
# Check if the GET request was successful | ||
if [[ $? -ne 0 ]]; then | ||
echo "Error: Failed to retrieve keylist JSON from $KEYLIST_URL" | ||
exit 1 | ||
fi | ||
|
||
# Calculate SHA256 hash of the keylist JSON | ||
KEYLIST_HASH=$(echo "$KEYLIST_JSON" | sha256sum | awk '{print $1}') | ||
|
||
# Define mainstay slot URL | ||
MAINSTAY_URL="https://testnet.mainstay.xyz/ctrl/sendcommitment" | ||
|
||
# Attestation data | ||
POSITION="3" | ||
TOKEN="0972e199-6cf8-4164-8445-235528b6afa5" | ||
|
||
# Construct the POST request body | ||
PAYLOAD="{ | ||
\"position\": \"$POSITION\", | ||
\"token\": \"$TOKEN\", | ||
\"commitment\": \"$KEYLIST_HASH\" | ||
}" | ||
|
||
# Send POST request to mainstay slot | ||
curl --header "Content-Type: application/json" --request POST --data "$PAYLOAD" "$MAINSTAY_URL" | ||
|
||
# Check if the POST request was successful | ||
if [[ $? -ne 0 ]]; then | ||
echo "Error: Failed to send attestation data to $MAINSTAY_URL" | ||
exit 1 | ||
fi | ||
|
||
echo "Keylist $KEYLIST_HASH attestation completed successfully!" |