EcoAPI-1.0-SNAPSHOT.jar
16 Jan 2026
CurseForge · Hytale mod
EcoAPI is the first Hytale Economy API that will let plugins use economy in servers
Quick answer
EcoAPI-1.0-SNAPSHOT.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.
Where it goes
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.
EcoAPI-1.0-SNAPSHOT.jar. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.
Before you install it
Built for EcoAPI-1.0-SNAPSHOT.jar. Pick another file and the loader, install side or required mods may change.
Use EcoAPI-1.0-SNAPSHOT.jar. It targets Hytale; another release may target a different game build or dependency set.
This file does not list any required mods. Do not add a library just because a different file uses it.
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Use the “Get this file” button beside EcoAPI-1.0-SNAPSHOT.jar. It opens that exact file at the source.
About this project
EcoAPI is a standardized interface layer for Hytale economy systems.
It does not handle money storage or transactions itself. Instead, it provides a set of abstract methods and interfaces that allow:
getBalance, addBalance, removeBalance, setBalance) regardless of the underlying system.Note: EcoAPI does nothing on its own. You need three things for a working system:
Steps:
.jar file into your server's plugins folder.Since EcoAPI is not yet hosted on Maven Central, you must install it into your local Maven repository to use it as a dependency.
mvn install:install-file -Dfile=Path/To/EcoAPI.jar -DgroupId=com.dunystudios.hytale.plugins -DartifactId=EcoAPI -Dversion=1.0-SNAPSHOT -Dpackaging=jar
Add EcoAPI to your project.
<dependencies>
<dependency>
<groupId>com.dunystudios.hytale.plugins</groupId>
<artifactId>EcoAPI</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
// Get the economy plugin
IEcoAPI economy = IEcoAPI.Service.getInstance();
// Get the balance of a player
float balance = economy.getBalance(uuid);
// Add 10 of balance to a player
economy.addBalance(uuid, 10);
// Remove 10 of balance from a player
economy.removeBalance(uuid, 10);
// Set 10 of balance to a player
economy.setBalance(uuid, 10);
Main class:
public class MyEconomyPlugin extends JavaPlugin {
private final Economy economy;
public MyEconomyPlugin() {
this.economy = new Economy();
}
@Override
protected void setup() {
IEcoAPI.Service.setInstance(economy);
}
}
Economy class:
public class Economy implements IEcoAPI {
@Override
public float getBalance(UUID uuid) {
// Your logic
return 0;
}
@Override
public void addBalance(UUID uuid, float v) {
// Your logic
}
@Override
public void removeBalance(UUID uuid, float v) {
// Your logic
}
@Override
public void setBalance(UUID uuid, float v) {
// Your logic
}
}
Project description from CurseForge.
Recent files
16 Jan 2026
Looking for an older file? The official CurseForge project page is in Resources.