Skip to content

npwd-community/npwd_crypto

Repository files navigation

Material-UI logo

NPWD Crypto

External NPWD app for buying, selling and trading crypto currency.

license GitHub all releases

Screenshots

Portfolio Page History Page Transaction Page

Setup and Configuration

Framework is automatically detected for ESX and QBCore

Installation

  • Download the npwd_crypto.zip from releases. DO NOT CHANGE THE RESOURCE NAME.
  • Unzip and add the resource to your server resources folder
  • Ensure npwd_crytpo BEFORE npwd
  • Add the app to NPWD config.json in the apps section "apps": ["npwd_crypto"]

ESX ONLY

Config.Accounts = {
	bank = {
		label = _U('account_bank'),
		round = true
	},
	black_money = {
		label = _U('account_black_money'),
		round = true
	},
	money = {
		label = _U('account_money'),
		round = true
	},
	crypto = {
	    label = "Crypto Currency",
	    round = false
	}
}

Config

{
  "maxHistory": 10,  // Maximum number of data points to store in history
  "logging": {
    "enabled": false, // Enables discord webhook logging of crypto price updates
    "webhook": "" // Discord webhook link
  },
  "tick": {
    "min": 15, // Minimum value the crypto can take
    "max": 250, // Maximum value
    "upDownRatio": 0.6, // [1.0-0.0] chance for crypto to go up
    "maxDeviation": 10, // Maximum amount the price can go up or down
    "interval": 15, // Time in minutes for each price change
    "crashChance": 0.05 // Chance% for price to reset to minimum
  }
}

Development

If you wish to make changes or build yourself you can clone the repository with git clone https://github.com/npwd-community/npwd_crypto.git then install the dependencies with yarn build or npm i.

You can either build the project with yarn build or alternatively, you can use yarn watch to put webpack in watch mode so that it will automatically rebuild after any changes you make.