mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-19 01:22:14 +11:00
split connected services into Implemented and Ideas
This commit is contained in:
parent
81930874db
commit
ac0105ff68
1 changed files with 17 additions and 12 deletions
27
README.md
27
README.md
|
|
@ -6,11 +6,11 @@ A complete simplification and improvement to the CCash project. A webserver host
|
||||||
|
|
||||||
the currency model most Minecraft Servers adopt if any, is resource based, usually diamonds, this model is fraught with issues however:
|
the currency model most Minecraft Servers adopt if any, is resource based, usually diamonds, this model is fraught with issues however:
|
||||||
|
|
||||||
* the primary issue is minecraft worlds are infinite leading to hyper inflation as everyone accrues more diamonds
|
- the primary issue is minecraft worlds are infinite leading to hyper inflation as everyone accrues more diamonds
|
||||||
* there is no central authority minting the currency, any consumer can introduce more diamonds to the system
|
- there is no central authority minting the currency, any consumer can introduce more diamonds to the system
|
||||||
* some resources are passively reapable, making the generation of currency a larger focus then of products
|
- some resources are passively reapable, making the generation of currency a larger focus then of products
|
||||||
* locality is required for transaction
|
- locality is required for transaction
|
||||||
* theft is possible, ownership is possession based
|
- theft is possible, ownership is possession based
|
||||||
|
|
||||||
CCash solves these issues and adds a level of abstraction, the main philosophy of CCash is to have fast core operations that other services build on
|
CCash solves these issues and adds a level of abstraction, the main philosophy of CCash is to have fast core operations that other services build on
|
||||||
|
|
||||||
|
|
@ -54,11 +54,16 @@ sudo ./bank <admin password> <saving frequency in minutes> <threads>
|
||||||
### Connected Services
|
### Connected Services
|
||||||
|
|
||||||
Go to `{ip}/BankF/help` to see the bank's methods. Using the Bank's API allows (you/others) to (make/use) connected services that utilize the bank, a couple ideas are
|
Go to `{ip}/BankF/help` to see the bank's methods. Using the Bank's API allows (you/others) to (make/use) connected services that utilize the bank, a couple ideas are
|
||||||
* a Market
|
|
||||||
* Gambling
|
Implemented:
|
||||||
* Shipping
|
|
||||||
* a Leaderboard ranking player's balances
|
Ideas:
|
||||||
* High-level bank operations such as loans
|
|
||||||
* Some trust based system for transactions similiar to Paypal
|
- a Market
|
||||||
|
- Gambling
|
||||||
|
- Shipping
|
||||||
|
- a Leaderboard ranking player's balances
|
||||||
|
- High-level bank operations such as loans
|
||||||
|
- Some trust based system for transactions similiar to Paypal
|
||||||
|
|
||||||
`**WARNING** : abruptly killing the program will result in data loss, use Close() method to close safely`
|
`**WARNING** : abruptly killing the program will result in data loss, use Close() method to close safely`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue