Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move bounties into subpages #576

Merged
merged 7 commits into from
Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 0 additions & 63 deletions docs/content/bounties.md

This file was deleted.

17 changes: 17 additions & 0 deletions docs/content/bounty/0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
+++
title = "Ordinal Bounty 0"
+++
Send an ordinal whose number ends with a zero:

✅: [1857578125803250](/ordinal/1857578125803250)

❌: [1857578125803251](/ordinal/1857578125803251)

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

Reward: 100,000 sats

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

Status: Claimed by [@count_null](https://twitter.com/rodarmor/status/1560793241473400833)!
16 changes: 16 additions & 0 deletions docs/content/bounty/1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
+++
title = "Ordinal Bounty 1"
+++
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

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

Status: Claimed by [@ordinalsindex](https://twitter.com/rodarmor/status/1569883266508853251)!
30 changes: 30 additions & 0 deletions docs/content/bounty/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
+++
title = "Bounties"
+++

Next bounty coming soon! 🤠

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

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

Hints
-----

- There are no ordinal wallets or transaction construction libraries. However,
ordinal theory is extremely simple. A clever hacker should be able to write
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.

- Satoshi was the original developer of ordinal theory. However, he knew that
others would consider it heretical and dangerous, so he hid his knowledge,
and it was lost to the sands of time. This potent theory is only now being
rediscovered. You can help by researching rare ordinals.

Good luck and godspeed!
4 changes: 2 additions & 2 deletions src/subcommand/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ impl Server {
}

async fn bounties() -> impl IntoResponse {
Redirect::to("https://docs.ordinals.com/bounties/")
Redirect::to("https://docs.ordinals.com/bounty/")
}
}

Expand Down Expand Up @@ -798,7 +798,7 @@ mod tests {

#[test]
fn bounties_redirects_to_docs_site() {
TestServer::new().assert_redirect("/bounties", "https://docs.ordinals.com/bounties/");
TestServer::new().assert_redirect("/bounties", "https://docs.ordinals.com/bounty/");
}

#[test]
Expand Down