diff --git a/docs/content/bounty/0.md b/docs/content/bounty/0.md index 1dfb34c7f5..caca777190 100644 --- a/docs/content/bounty/0.md +++ b/docs/content/bounty/0.md @@ -1,7 +1,15 @@ +++ 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) @@ -9,9 +17,17 @@ Send an ordinal whose number ends with a zero: 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)! diff --git a/docs/content/bounty/1.md b/docs/content/bounty/1.md index d5f98bde7e..a02655fcc2 100644 --- a/docs/content/bounty/1.md +++ b/docs/content/bounty/1.md @@ -1,6 +1,14 @@ +++ 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. @@ -8,9 +16,17 @@ 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)! diff --git a/docs/content/bounty/2.md b/docs/content/bounty/2.md new file mode 100644 index 0000000000..eba17394d9 --- /dev/null +++ b/docs/content/bounty/2.md @@ -0,0 +1,33 @@ ++++ +title = "Ordinal Bounty 2" +date = 2022-10-03 +[extra] +claimed = false +reward = "300,000 sats" ++++ + +Criteria +-------- + +Send an uncommon 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! diff --git a/docs/content/bounty/index.md b/docs/content/bounty/_index.md similarity index 65% rename from docs/content/bounty/index.md rename to docs/content/bounty/_index.md index 62949e6221..0f45a64e58 100644 --- a/docs/content/bounty/index.md +++ b/docs/content/bounty/_index.md @@ -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 ----- @@ -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, diff --git a/docs/templates/bounties.html b/docs/templates/bounties.html new file mode 100644 index 0000000000..e819277afc --- /dev/null +++ b/docs/templates/bounties.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} +{% block content %} +

{{ section.title }}

+ +{{ section.content | safe }} +{% endblock content %} diff --git a/docs/templates/bounty.html b/docs/templates/bounty.html new file mode 100644 index 0000000000..1ce0c6b34f --- /dev/null +++ b/docs/templates/bounty.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

{{ page.title }}

+{{ page.content | safe }} + +{% set section = get_section(path=page.ancestors | last) %} +{{ section.content | safe }} +{% endblock content %} diff --git a/docs/templates/index.html b/docs/templates/index.html index 5da77f35b5..cdc3f584a8 100644 --- a/docs/templates/index.html +++ b/docs/templates/index.html @@ -1,11 +1,10 @@ {% extends "base.html" %} {% block content %} - +

Ordinal Docs

+ + {% endblock content %} diff --git a/docs/templates/page.html b/docs/templates/page.html index 80424c428e..0ea71d760c 100644 --- a/docs/templates/page.html +++ b/docs/templates/page.html @@ -2,6 +2,5 @@ {% block content %}

{{ page.title }}

-

{{ page.date }}

{{ page.content | safe }} {% endblock content %} diff --git a/static/index.css b/static/index.css index f3ca0fd661..e44e31ce9f 100644 --- a/static/index.css +++ b/static/index.css @@ -40,6 +40,10 @@ ol { white-space: nowrap; } +.strikethrough { + text-decoration: line-through; +} + .monospace { font-family: monospace, monospace; } diff --git a/templates/home.html b/templates/home.html index d77e355759..a6fcbadb57 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,8 +1,8 @@

Ordinals