From decd41c4132bdd34c5708e7983ca101783811741 Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 08:49:42 +0200
Subject: [PATCH 1/8] Remove redundant wording from title
---
src/content/docs/kromer/design.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/docs/kromer/design.mdx b/src/content/docs/kromer/design.mdx
index 62f4dbd..2442af5 100644
--- a/src/content/docs/kromer/design.mdx
+++ b/src/content/docs/kromer/design.mdx
@@ -1,5 +1,5 @@
---
-title: Kromer Design
+title: Design
---
import { Aside } from '@astrojs/starlight/components';
From f9db874649eb0758607309ab213d252205b6b98a Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 08:49:56 +0200
Subject: [PATCH 2/8] add shops documentation
---
src/content/docs/kromer/shops.mdx | 42 +++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
create mode 100644 src/content/docs/kromer/shops.mdx
diff --git a/src/content/docs/kromer/shops.mdx b/src/content/docs/kromer/shops.mdx
new file mode 100644
index 0000000..a8ced20
--- /dev/null
+++ b/src/content/docs/kromer/shops.mdx
@@ -0,0 +1,42 @@
+---
+title: Shops
+---
+import { Aside } from '@astrojs/starlight/components';
+
+Kromer supports practically every Krist shop that follows the documentation on https://krist.dev/docs.
+Some shops like Radon URL Encode the body and are not compatible with Kromer by default. This is an undocumented feature of the official Krist server.
+Radon requires manual patching for this reason.
+
+## Radon ([link](https://github.com/Allymonies/Radon))
+
+
+The configuration for Radon should look like this:
+
+```lua
+currencies = {
+ {
+ pkey = "***YOURPKEY***",
+ id = "kromer",
+ value = 1,
+ pkeyFormat = "raw",
+ node = "https://kromer.reconnected.cc/api/krist/",
+ },
+ },
+```
+
+### Community fork ([link](https://github.com/scmcgowen/Radon))
+This community fork is made by Herr Katze, and should work out of the box with Kromer: https://github.com/scmcgowen/Radon, use the install script provided in the repository
+
+
+### Official fork
+An official fork is in progress, it serves as a continuation of Radon entirely, not just a patch.
+
+## yfshop ([link](https://github.com/fucksophie/yfshop))
+
+This is a shop made by Sophie, it is still maintained
+
+## Kristify ([link](https://github.com/Kristify/Kristify))
+
+
+Kristify is an archived shop, but it will work out of the box with Kromer.
+
From 4d98bb7aa9f73b0926cbfcc37c163069927b148b Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 08:50:01 +0200
Subject: [PATCH 3/8] add wallet documentation
---
src/content/docs/kromer/wallets.mdx | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 src/content/docs/kromer/wallets.mdx
diff --git a/src/content/docs/kromer/wallets.mdx b/src/content/docs/kromer/wallets.mdx
new file mode 100644
index 0000000..5ddba99
--- /dev/null
+++ b/src/content/docs/kromer/wallets.mdx
@@ -0,0 +1,14 @@
+---
+title: Wallets
+---
+import { Aside } from '@astrojs/starlight/components';
+
+There are several Kromer wallet websites available, anything in this list is considered safe to use.
+
+
+
+## Krawlet [kromer.club](https://www.kromer.club/)
+Krawlet is made by Twijn
+
+## Wromer [wromer.sad.ovh](https://wromer.sad.ovh/)
+Wromer is made by Sophie
\ No newline at end of file
From b02d99a55a04dade95ace2338905cd48017ba396 Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 09:02:25 +0200
Subject: [PATCH 4/8] include Twijn's description for krawlet
---
src/content/docs/kromer/wallets.mdx | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/src/content/docs/kromer/wallets.mdx b/src/content/docs/kromer/wallets.mdx
index 5ddba99..78a1d75 100644
--- a/src/content/docs/kromer/wallets.mdx
+++ b/src/content/docs/kromer/wallets.mdx
@@ -8,7 +8,23 @@ There are several Kromer wallet websites available, anything in this list is con
## Krawlet [kromer.club](https://www.kromer.club/)
-Krawlet is made by Twijn
+Krawlet is a wallet made by Twijn built to support basic features of Kromer. These features include:
+
+- Viewing Kromer transactions and their metadata
+- Viewing addresses, including their transactions and names purchased
+- Listing addresses (including by the richest)
+- Sending Kromer to addresses or online Minecraft players when provided a private key
+- "Fill-ins" for known Minecraft addresses or verified addresses, making it easier to identify who is involved in transactions and other actions
+
+In addition to the web interface, Krawlet also includes several chat-based commands that can be used. These include:
+
+- \balance [player] - View another players (or your own) Kromer balance
+- \richest [page] - View the richest addresses on Kromer
+- \names [page] - View names registered on Kromer
+
+To view an updated list of commands offered by Krawlet, use `\krawlet` in chat!
+
+Krawlet is still in active development, so more features will be added soon!
## Wromer [wromer.sad.ovh](https://wromer.sad.ovh/)
Wromer is made by Sophie
\ No newline at end of file
From 4561b7edca4821f1de2373c03e433291335ba54a Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 09:49:09 +0200
Subject: [PATCH 5/8] remove yfshop and kristify as per request from erb3 and
sophie
---
src/content/docs/kromer/shops.mdx | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/src/content/docs/kromer/shops.mdx b/src/content/docs/kromer/shops.mdx
index a8ced20..5f10c35 100644
--- a/src/content/docs/kromer/shops.mdx
+++ b/src/content/docs/kromer/shops.mdx
@@ -31,12 +31,3 @@ This community fork is made by Herr Katze, and should work out of the box with K
### Official fork
An official fork is in progress, it serves as a continuation of Radon entirely, not just a patch.
-## yfshop ([link](https://github.com/fucksophie/yfshop))
-
-This is a shop made by Sophie, it is still maintained
-
-## Kristify ([link](https://github.com/Kristify/Kristify))
-
-
-Kristify is an archived shop, but it will work out of the box with Kromer.
-
From 51b8a06f61605c6fbfffa5aa36b6c6f41339e171 Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Fri, 1 Aug 2025 09:49:16 +0200
Subject: [PATCH 6/8] add wromer information
---
src/content/docs/kromer/wallets.mdx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/content/docs/kromer/wallets.mdx b/src/content/docs/kromer/wallets.mdx
index 78a1d75..4d2594c 100644
--- a/src/content/docs/kromer/wallets.mdx
+++ b/src/content/docs/kromer/wallets.mdx
@@ -27,4 +27,8 @@ To view an updated list of commands offered by Krawlet, use `\krawlet` in chat!
Krawlet is still in active development, so more features will be added soon!
## Wromer [wromer.sad.ovh](https://wromer.sad.ovh/)
-Wromer is made by Sophie
\ No newline at end of file
+Wromer is made by Sophie built to support basic features Kromer features, while storing your private keys in local storage, it also supports:
+- Viewing Kromer transactions and their metadata
+- Viewing addresses, including their transactions and names purchased
+- Listing addresses (including by the richest)
+- Sending Kromer to addresses
\ No newline at end of file
From b69212624c04c8999e2ce0856a8f55789899742c Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Thu, 25 Sep 2025 10:19:44 +0200
Subject: [PATCH 7/8] update docs for kromer
10/10 commit name
---
src/content/docs/kromer/shops.mdx | 12 ++++--------
src/content/docs/kromer/wallets.mdx | 11 ++---------
2 files changed, 6 insertions(+), 17 deletions(-)
diff --git a/src/content/docs/kromer/shops.mdx b/src/content/docs/kromer/shops.mdx
index 5f10c35..f1d80ac 100644
--- a/src/content/docs/kromer/shops.mdx
+++ b/src/content/docs/kromer/shops.mdx
@@ -7,8 +7,11 @@ Kromer supports practically every Krist shop that follows the documentation on h
Some shops like Radon URL Encode the body and are not compatible with Kromer by default. This is an undocumented feature of the official Krist server.
Radon requires manual patching for this reason.
+### Community fork ([link](https://github.com/scmcgowen/Radon))
+This community fork is made by Herr Katze, and should work out of the box with Kromer: https://github.com/scmcgowen/Radon, use the install script provided in the repository
+
## Radon ([link](https://github.com/Allymonies/Radon))
-
+
The configuration for Radon should look like this:
@@ -24,10 +27,3 @@ currencies = {
},
```
-### Community fork ([link](https://github.com/scmcgowen/Radon))
-This community fork is made by Herr Katze, and should work out of the box with Kromer: https://github.com/scmcgowen/Radon, use the install script provided in the repository
-
-
-### Official fork
-An official fork is in progress, it serves as a continuation of Radon entirely, not just a patch.
-
diff --git a/src/content/docs/kromer/wallets.mdx b/src/content/docs/kromer/wallets.mdx
index 4d2594c..a1c7623 100644
--- a/src/content/docs/kromer/wallets.mdx
+++ b/src/content/docs/kromer/wallets.mdx
@@ -3,7 +3,7 @@ title: Wallets
---
import { Aside } from '@astrojs/starlight/components';
-There are several Kromer wallet websites available, anything in this list is considered safe to use.
+There is a Kromer wallet website available, anything in this list is considered safe to use.
@@ -24,11 +24,4 @@ In addition to the web interface, Krawlet also includes several chat-based comma
To view an updated list of commands offered by Krawlet, use `\krawlet` in chat!
-Krawlet is still in active development, so more features will be added soon!
-
-## Wromer [wromer.sad.ovh](https://wromer.sad.ovh/)
-Wromer is made by Sophie built to support basic features Kromer features, while storing your private keys in local storage, it also supports:
-- Viewing Kromer transactions and their metadata
-- Viewing addresses, including their transactions and names purchased
-- Listing addresses (including by the richest)
-- Sending Kromer to addresses
\ No newline at end of file
+Krawlet is still in active development, so more features will be added soon!
\ No newline at end of file
From 964c81676b5f96da19eacd6e39f680002eba72a8 Mon Sep 17 00:00:00 2001
From: EmmaKnijn <64010592+EmmaKnijn@users.noreply.github.com>
Date: Thu, 25 Sep 2025 10:21:18 +0200
Subject: [PATCH 8/8] clarify the danger of keys
---
src/content/docs/kromer/wallets.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/docs/kromer/wallets.mdx b/src/content/docs/kromer/wallets.mdx
index a1c7623..8aa2913 100644
--- a/src/content/docs/kromer/wallets.mdx
+++ b/src/content/docs/kromer/wallets.mdx
@@ -5,7 +5,7 @@ import { Aside } from '@astrojs/starlight/components';
There is a Kromer wallet website available, anything in this list is considered safe to use.
-
+
## Krawlet [kromer.club](https://www.kromer.club/)
Krawlet is a wallet made by Twijn built to support basic features of Kromer. These features include: