Skip to content

Commit

Permalink
Add uncommon ordinal bounty (ordinals#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Oct 3, 2022
1 parent 83b5014 commit 58e8b9e
Show file tree
Hide file tree
Showing 10 changed files with 122 additions and 29 deletions.
24 changes: 20 additions & 4 deletions docs/content/bounty/0.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,33 @@
+++
title = "Ordinal Bounty 0"
date = 2022-08-19
[extra]
claimed = true
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)!
22 changes: 19 additions & 3 deletions docs/content/bounty/1.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
+++
title = "Ordinal Bounty 1"
date = 2022-08-24
[extra]
claimed = true
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)!
33 changes: 33 additions & 0 deletions docs/content/bounty/2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
+++
title = "Ordinal Bounty 2"
date = 2022-10-03
[extra]
claimed = false
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 be rewarded.

Reward
------

300,000 sats

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

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

Status
------

Unclaimed!
20 changes: 8 additions & 12 deletions docs/content/bounty/index.md → docs/content/bounty/_index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
+++
title = "Bounties"
title = "Ordinal Bounties"
page_template = "bounty.html"
template = "bounties.html"
sort_by = "date"
aliases = ["bounties"]
+++

Next bounty coming soon! 🤠

Claimed Bounties
----------------

- [Bounty 0](0/)
- [Bounty 1](1/)

Hints
-----

Expand All @@ -18,9 +14,9 @@ Hints
code to manipulate ordinals in no time.

- For more information about ordinals, check out the [FAQ](/faq) for an
overview, or the
[BIP](https://github.com/casey/ord/blob/master/bip.mediawiki) for the
technical details.
overview, the [BIP](https://github.com/casey/ord/blob/master/bip.mediawiki)
for the technical details, and the [ord repo](https://github.com/casey/ord]
for the `ord` wallet and block explorer.

- Satoshi was the original developer of ordinal theory. However, he knew that
others would consider it heretical and dangerous, so he hid his knowledge,
Expand Down
21 changes: 21 additions & 0 deletions docs/templates/bounties.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
<ul class=monospace>
{% for page in section.pages %}
<li>
<time>{{ page.date | date(format="%d %b %Y") }}</time>
»
{% if page.extra.claimed %}
<a href="{{ page.permalink | safe }}" class=strikethrough>{{ page.title }}:
{{ page.extra.reward }}</a>
Claimed!
{% else %}
<a href="{{ page.permalink | safe }}">{{ page.title }}:
{{ page.extra.reward }}</a>
{% endif%}
</li>
{% endfor %}
</ul>
{{ section.content | safe }}
{% endblock content %}
9 changes: 9 additions & 0 deletions docs/templates/bounty.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% extends "base.html" %}

{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}

{% set section = get_section(path=page.ancestors | last) %}
{{ section.content | safe }}
{% endblock content %}
13 changes: 6 additions & 7 deletions docs/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{% extends "base.html" %}

{% block content %}
<ul>
{% for page in section.pages %}
<li>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
<h1>Ordinal Docs</h1>

<nav>
<a href=/faq/>FAQ</a>
<a href=/bounty/>Bounties</a>
</nav>
{% endblock content %}
1 change: 0 additions & 1 deletion docs/templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@

{% block content %}
<h1>{{ page.title }}</h1>
<p><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}
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;
}

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

.monospace {
font-family: monospace, monospace;
}
Expand Down
4 changes: 2 additions & 2 deletions templates/home.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<h1>Ordinals</h1>
<nav>
<a href=https://rodarmor.com/blog/ordinal-theory/>Theory</a>
<a href=https://docs.ordinals.com/faq>FAQ</a>
<a href=https://docs.ordinals.com/bounties>Bounties</a>
<a href=https://docs.ordinals.com/faq/>FAQ</a>
<a href=https://docs.ordinals.com/bounty/>Bounties</a>
<a href=https://github.com/casey/ord/blob/master/bip.mediawiki>BIP</a>
<a href=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/casey/ord>GitHub</a>
<a href=https://discord.gg/87cjuz4FYg>Discord</a>
Expand Down

0 comments on commit 58e8b9e

Please sign in to comment.