Skip to content

Commit

Permalink
Finish
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Oct 3, 2022
1 parent d022e80 commit 8edafa0
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 24 deletions.
23 changes: 18 additions & 5 deletions docs/content/bounty/0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,32 @@
title = "Bounty 0"
date = 2022-08-19
[extra]
claimed = true
status = "claimed"
reward = "100,000 sats"
+++
Send an ordinal whose number ends with a zero:

Criteria
--------

Send an ordinal whose number ends with a zero to the submission address:

✅: [1857578125803250](/ordinal/1857578125803250)

❌: [1857578125803251](/ordinal/1857578125803251)

The ordinal must be the first ordinal of the output you send.

Reward: 100,000 sats
Reward
------

100,000 sats

Submission Address
------------------

Address:
[`1PE7u4wbDP2RqfKN6geD1bG57v9Gj9FXm3`](https://mempool.space/address/1PE7u4wbDP2RqfKN6geD1bG57v9Gj9FXm3)

Status: Claimed by [@count_null](https://twitter.com/rodarmor/status/1560793241473400833)!
Status
------

Claimed by [@count_null](https://twitter.com/rodarmor/status/1560793241473400833)!
21 changes: 17 additions & 4 deletions docs/content/bounty/1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,31 @@
title = "Bounty 1"
date = 2022-08-24
[extra]
claimed = true
status = "claimed"
reward = "200,000 sats"
+++

Criteria
--------

The transaction that submits a UTXO containing the oldest ordinal, i.e., that
with the lowest number, amongst all submitted UTXOs will be judged the winner.

The bounty is open for submissions until block 753984—the first block of
difficulty adjustment period 374. Submissions included in block 753984 or later
will not be considered.

Reward: 200,000 sats
Reward
------

200,000 sats

Submission Address
------------------

Address:
[`145Z7PFHyVrwiMWwEcUmDgFbmUbQSU9aap`](https://mempool.space/address/145Z7PFHyVrwiMWwEcUmDgFbmUbQSU9aap)

Status: Claimed by [@ordinalsindex](https://twitter.com/rodarmor/status/1569883266508853251)!
Status
------

Claimed by [@ordinalsindex](https://twitter.com/rodarmor/status/1569883266508853251)!
29 changes: 28 additions & 1 deletion docs/content/bounty/2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,32 @@
title = "Bounty 2"
date = 2022-10-03
[extra]
claimed = false
status = "unclaimed"
reward = "300,000 sats"
+++

Criteria
--------

Send an <span class=uncommon>uncommon</span> ordinal to the submission address:

✅: [347100000000000](/ordinal/347100000000000)

❌: [6685000001337](/ordinal/6685000001337)

Confirm that the submission address has not received transactions before submitting your entry. Only the first successful submission will receive the reward.

Reward
------

300,000 sats

Submission Address
------------------

[`1Hyr94uypwWq5CQffaXHvwUMEyBPp3TUZH`](https://mempool.space/address/1Hyr94uypwWq5CQffaXHvwUMEyBPp3TUZH)

Status
------

Unclaimed!
2 changes: 2 additions & 0 deletions docs/content/bounty/_index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
+++
title = "Bounties"
page_template = "bounty.html"
template = "bounties.html"
sort_by = "date"
+++

Hints
-----

Expand Down
8 changes: 6 additions & 2 deletions docs/templates/section.html → docs/templates/bounties.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
<ul>
<ul class=monospace>
{% for page in section.pages %}
<li>
<time>{{ page.date | date(format="%d %b %Y") }}</time>
»
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
<a href="{{ page.permalink | safe }}" class={{page.extra.status}}>{{ page.title }}:
{{ page.extra.reward }}</a>
{% if page.extra.status == "claimed" %}
Claimed!
{% endif%}
</li>
{% endfor %}
</ul>
Expand Down
14 changes: 2 additions & 12 deletions docs/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@ <h1>Ordinal Docs</h1>
{% for page in section.pages %}
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endfor %}
</nav>

{% for path in section.subsections %}
{% set section = get_section(path=path) %}
<h2><a href="{{ section.permalink | safe }}">{{ section.title }}</a></h2>
<ul>
{% for page in section.pages %}
<li>
<time>{{ page.date | date(format="%d %b %Y") }}</time>
»
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
<a href="{{ section.permalink | safe }}">{{ section.title }}</a>
{% endfor %}
{% endblock content %}
</nav>
4 changes: 4 additions & 0 deletions static/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ ol {
white-space: nowrap;
}

.claimed {
text-decoration: line-through;
}

.monospace {
font-family: monospace, monospace;
}
Expand Down

0 comments on commit 8edafa0

Please sign in to comment.