Skip to content

Commit

Permalink
fix: file suffix (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 authored Mar 21, 2024
1 parent 0c21ae1 commit 2791bfc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Boltz Exchange canary

Warrant Canary Page for boltz.exchange
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@
<h1>Warrent Canary</h1>
<code id="message"></code>
<script>
fetch('message.txt.asc')
fetch('message.txt')
.then(response => response.text())
.then(text => document.getElementById('message').innerText = text);
</script>

<h2>Import these keys</h2>
<p>These keys belong to the Boltz Exchange administrators. You can import them into your gpg keychain to verify the messages.</p>
<code>curl https://canary.boltz.exchange/pgp.txt | gpg --import</code>
<code>curl https://canary.boltz.exchange/pgp.asc | gpg --import</code>

<h2>Verify this message</h2>
<p>The message above has been signed by one of the keys associated with a Boltz Exchange administrator. Import the keys from <a href="pgp.txt">here</a> and then verify this message.</p>
<code>curl https://canary.boltz.exchange/message.txt.asc | gpg --verify</code>
<code>curl https://canary.boltz.exchange/message.txt | gpg --verify</code>
<hr>
<img src="boltz.svg" alt="Boltz Exchange Logo" width="210px" />
<h3>Boltz Exchange is a Privacy First, Non-Custodial Bitcoin Exchange and Lightning Service Provider</h3>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 2791bfc

Please sign in to comment.