Skip to content

A universal currency designed for Minecraft servers, in a Krist-compatible format.

License

Notifications You must be signed in to change notification settings

Lumina-CC/metro-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metro-server

Metro is a universal currency designed for Minecraft servers, in a mostly Krist-compatible API format.

⚠️ metro-server is not complete, and is in a development state. APIs may not function, and all content in the repo has not been tested. Further testing will be performed after record creation logic is completed.

⚠️ ALL commits past 8/2/2024 now follow the ametro-30-dbq-1 license

Creating a development environment

Running metro-server isn't hard to do in a development environment. In fact, you can do so in 6 steps.

  • Create a .env file:
    • DBKEY: The password/key for the root MySQL user
    • BACKENDDBKEY: The password/key for the metroweb MySQL user
  • Create /backend/badwords.txt: It's a normal text file, with one blocked phrase per line. An example is:
word1
word2
word3

This is not included in the repo for obvious reasons.

  • Spin up Metro in Docker
  • Execute init.sql in metro-server-db
  • Create the user metroweb in MySQL
CREATE USER metroweb IDENTIFIED BY 'yourbackenddbkey1234';
GRANT ALL PRIVILEGES ON *.* TO metroweb;
  • Restart metro-server-backend

Todo

  • Finish API
  • Address creation algorithm
  • Reverse proxies (nginx)
  • Documentation
  • Automated testing

Breaking update changes

  • 3rd commit: Added more fields to the names table in MySQL. Migrate using:
ALTER TABLE names ADD COLUMN original_owner CHAR(10) NOT NULL;
ALTER TABLE names ADD COLUMN transferred DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP();
  • 8th commit: Added table namehistory. Migrate using:
CREATE TABLE
    namehistory (
        id CHAR(36) NOT NULL,
        address VARCHAR(24) NOT NULL,
        wallet_to CHAR(10) NOT NULL,
        wallet_from char(10) DEFAULT NULL,
        timestamp DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(),
        type ENUM('transfer', 'purchase'),
        PRIMARY KEY (id)
    );
  • 13th commit: Changed columns under table wallets. Migrate using:
ALTER TABLE transactions MODIFY COLUMN type ENUM('transfer', 'name_purchase', 'name_transfer', 'tax') NOT NULL;
ALTER TABLE transactions ADD COLUMN state ENUM('completed', 'pending', 'reverted', 'held') NOT NULL DEFAULT 'pending';
  • 19th commit: Added badwords.txt. Read development environment creation step for more details.

  • 20th commit: Renamed namehistory column id to uuid. Migrate using:

ALTER TABLE namehistory RENAME COLUMN id TO uuid;
  • 20th commit: Changed column pkeyhash on wallets to NOT NULL. Migrate using:
ALTER TABLE wallets MODIFY pkeyhash CHAR(128) NOT NULL;
  • 21st commit: Changed column type on transactions. Migrate using:
ALTER TABLE transactions MODIFY COLUMN type ENUM('transfer', 'tax') NOT NULL;

About

A universal currency designed for Minecraft servers, in a Krist-compatible format.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published