Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
nahkd's Stonks

nahkd's Stonks

Server-side global market for your server.

2,160
19
Economy
Utility

Compatibility

Minecraft: Java Edition

1.21.x
1.20.1–1.20.6

Platforms

Fabric

Supported environments

Server-side

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Visit wiki

Creators

nahkd123
nahkd123 Owner

Details

Licensed MIT
Published last year
Updated 2 weeks ago
DescriptionGalleryChangelogVersions

Show all versions

nahkd's Stonks 2.1.4+1.21.6

by nahkd123 on Jun 17, 2025
Download

Update 2025/07/01: Minecraft 1.21.7 has just released, but it looks like Modrinth hasn't updated their game versions list yet. Give them time. Stonks 2.1.4 will works on 1.21.7, and if you encountered an issue, consider reporting it on GitHub.

Thanks for sticking around! Stonks for Minecraft 1.21.6 is now available with little code changes.

Are you interested in new dialog system introduced in Minecraft 1.21.6? Join the discussion to determine the future of server-side Stonks UI.

What's Changed

  • Java Edition 1.21.6 by @nahkd123 in https://github.com/nahkd123/stonks/pull/70

Full Changelog: https://github.com/nahkd123/stonks/compare/v2.1.3+1.21.5...v2.1.4+1.21.6

nahkd's Stonks 2.1.3+1.21.5

by nahkd123 on Mar 26, 2025
Download

Welcome back and thank you for your patience. This is a small release to update the mod to support Minecraft 1.21.5, which just got released few hours ago. No major API changed so I expect most mods that uses Stonks API works (other than command changes).

Changelog on GitHub can be found at https://github.com/nahkd123/stonks/releases/tag/v2.1.3%2B1.21.5

nahkd's Stonks 2.1.2+1.21.4

by nahkd123 on Dec 7, 2024
Download

Thank you for your patience as I am really busy for the past few days. Anyways, Stonks for Fabric 1.20.4 is here, and this update also fixed a bug related to legacy service handling: decimals are not being converted to raw integer properly.

nahkd's Stonks 2.1.1+1.21.2

by nahkd123 on Oct 22, 2024
Download

What's Changed

  • Add note for ItemsAdapter by @nahkd123 in https://github.com/nahkd123/stonks/pull/58
  • Java Edition 1.21.2 by @nahkd123 in https://github.com/nahkd123/stonks/pull/61

Note for item adapter in default config

For new users, default config now includes a warning that removing the item adapter makes Stonks for Fabric no longer be able to access player's inventory.

// Adapters
// "stonks.fabric.adapter.provided.ItemsAdapter" is included so that Stonks can add/remove items in player's inventory
// If you remove this adapter, Stonks will be unable to access player's inventory. If you don't need to have access to
// player's inventory, you can remove this adapter.
// Additionally, you can make your own adapter to hook with other mods, like trading RF power for example.
useAdapter stonks.fabric.adapter.provided.ItemsAdapter

Update to Java Edition 1.21.2

Stonks for Fabric is now updated to Minecraft Java Edition 1.21.2.

Full Changelog: https://github.com/nahkd123/stonks/compare/v2.1.0+1.21...v2.1.1+1.21.2

nahkd's Stonks 2.1.0+1.21

by nahkd123 on Jun 14, 2024
Download

Update: Stonks 2.1.0 also works with 1.21.1.

Thanks for waiting for Stonks to update to Minecraft 1.21! This update includes some breaking changes to the API, which means the minor version number must be increased by 1 (which is 2.1.0). Get it? Because 21.

  • In theory, your existing configurations will works in this version. If your configurations broke in this version, please make a new bug report.
  • Mods that have Stonks integration might need to be updated to use the new API. Legacy API will be around until 2.2.0.

Stonks got a new banner!

I hope to finish the new icon design soon, as the previous design doesn't have a good contrast between the white arrow and bright background.

Changes related to code and API

Removal of references to Nahara Modkit

Stonks now no longer have references to Nahara Modkit. However, Stonks still references to Nahara Toolkit for legacy APIs and the current configuration file format.

Moving from Nahara Toolkit Tasks to Java Future API

Most methods that returns Task<T> will now be marked for removal. Its Future API counterparts are also provided. For example, to use StonksService#queryAllCategories() but with CompletableFuture, use StonksService#queryAllCategoriesAsync(). Nahara Toolkit Tasks will be removed from Stonks in version 2.2.0.

Moving from adapter to Economy interface

The new Economy interface should be used over StonksFabricAdapter economy methods, as it supports fixed-point numbers (through the use of long). I hope to move most of the code to use Economy in 2.1.1.

Replacing construction data string with metadata

The new getProductMetadata() will returns a complex data structure (like JSON or NBT) in the future. Right now, it will always returns DynamicPrimitive with isString() == true, which is basically wrapping around the construction data from user's configuration. In the future, this metadata can be used to gather additional info about the product, like its market floor/ceiling price, as well as buy/sell limit.

nahkd's Stonks 2.0.5+1.20.5

by nahkd123 on Apr 25, 2024
Download

Thanks for waiting for Stonks to update to Minecraft 1.20.5! This update fix a critical bug related to loading data, as well as updating Stonks to Minecraft 1.20.5

Critical bug fix: Data loading

Previously, Stonks will load 1 single entry from stonks.bin and discard the rest. This update fixed that bug by keep reading the file until null version is found.

  • This does not affect data saving.
  • This only affect data loading and can cause data loss.

To avoid further data loss, backup the current stonks.bin file first, then stop server, install this update and start server again. After that, you can merge the data from backed up stonks.bin with the current data. The schema for stonks.bin can be found at the tools/ folder of this reppository (as ImHex pattern file). stonks.bin can be found at saves/<World name>/stonks.bin if you are on integrated server (a.k.a singleplayer), or world/stonks.bin if you are using dedicated server.

Update to Minecraft 1.20.5

The change mostly involves around item components. The item construction data in config/stonks/config file follows the same format that is used in /give command.

Further bug fixing

If you encountered any bugs (including critical bugs like the one above), please head over to Issues page of Stonks GitHub repository and report bug there.


The above changelog is copied directly from this GitHub release page. All the files attached to this update are generated from GitHub actions.

nahkd's Stonks 2.0.4+1.20.4

by nahkd123 on Dec 7, 2023
Download

Warning: This version contains a bug related to data loading part of Stonks. This bug has been fixed in 2.0.5 for Minecraft 1.20.5.

This update include 1 single change: The targeted Minecraft versions is now >=1.20.3. If you don't want to redownload Stonks, consider using dependency overrides (it will work, I promise).

However, most people don't want to dip their hand into this magical world of JSON editing, so I have to release a new version just to include 1.20.4. I'm truly sorry for your inconvenience.

Did you know? Updates are also rolled out on GitHub as well. Check it out: https://github.com/nahkd123/stonks/releases/tag/v2.0.4%2B1.20.4

nahkd's Stonks 2.0.4+1.20.3

by nahkd123 on Dec 6, 2023
Download

Welcome back. This update bump the target Minecraft version to 1.20.3, Fabric Loader version to 0.15.0 and Fabric API to 0.91.1.

I expect the mod to work as usual, but if you found a bug, consider report it in https://github.com/nahkd123/stonks/issues.

nahkd's Stonks 2.0.3+1.20.2

by nahkd123 on Sep 21, 2023
Download

Welcome back. This new update targets Minecraft Java Edition 1.20.2, so I do expect some bugs. If you found any, please consider report it in Issues tracker.

What's Changed

  • Update to Java Edition 1.20.2 (PR #37)
  • Changed the sign type in input screen to acacia as a temporary fix for "gray-ish" text color in input GUIs

See changelog on GitHub: https://github.com/nahkd123/stonks/releases/tag/v2.0.3%2B1.20.2

nahkd's Stonks 2.0.2+1.20.1

by nahkd123 on Aug 22, 2023
Download

Thanks for using Stonks! Please update your Stonks for Fabric to this version as it contains a fix that resolves unwanted behavior of in-memory service (IntegratedStonksService to be precise).

What's Changed (copied from GitHub Release page)

  • IMPORTANT: Add missing break to instantOffer() method in StonksMemoryService
  • Add additional check to StonksFabricHelper.instantOffer()
  • Fix null display stack on products with unknown construction data

See changelog on GitHub: https://github.com/nahkd123/stonks/releases/tag/v2.0.2%2B1.20.1

nahkd's Stonks 2.0.1+1.20.1

by nahkd123 on Aug 12, 2023
Download

First release on Modrinth, first hotfix on GitHub.

GitHub release v2.0.0 can be found here.

Modrinth is open source.

main@16c5a5a

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.