forked from ordinals/ord
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add uncommon ordinal bounty (ordinals#588)
- Loading branch information
Showing
10 changed files
with
122 additions
and
29 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
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)! |
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 |
---|---|---|
@@ -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)! |
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,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! |
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,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 %} |
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 @@ | ||
{% 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 %} |
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 |
---|---|---|
@@ -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 %} |
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
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