Skip to content

Commit a5f5412

Browse files
committed
Add Namecoin market
1 parent 2f2b409 commit a5f5412

23 files changed

+236
-63
lines changed

Gruntfile.coffee

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ module.exports = (grunt) ->
88
grunt.initConfig
99
watch:
1010
tasks: ["coffee"]
11-
files: ["lib/**/*.coffee", "models/**/*.coffee", "routes/**/*.coffee", "tests/helpers/*.coffee"]
11+
files: ["configs/**/*.coffee", "lib/**/*.coffee", "models/**/*.coffee", "routes/**/*.coffee", "tests/helpers/*.coffee"]
1212
options:
1313
spawn: false
1414

1515
coffee:
1616
compile:
1717
files: [
18+
{expand: true, cwd: 'configs', src: ['**/*.coffee'], dest: 'configs', rename: coffeeRename}
1819
{expand: true, cwd: 'models', src: ['**/*.coffee'], dest: 'models', rename: coffeeRename}
1920
{expand: true, cwd: 'lib', src: ['**/*.coffee'], dest: 'lib', rename: coffeeRename}
2021
{expand: true, cwd: 'routes', src: ['**/*.coffee'], dest: 'routes', rename: coffeeRename}

config.json.sample

+45-24
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
"passphrase": ""
6262
},
6363
"confirmations": 1,
64-
"transaction_fee": 0.0001,
65-
"balance_confirmations": 0,
6664
"currency": "BTC"
6765
},
6866
"ltc": {
@@ -78,8 +76,6 @@
7876
"passphrase": ""
7977
},
8078
"confirmations": 1,
81-
"transaction_fee": 0.0001,
82-
"balance_confirmations": 0,
8379
"currency": "LTC"
8480
},
8581
"ppc": {
@@ -95,8 +91,6 @@
9591
"passphrase": ""
9692
},
9793
"confirmations": 1,
98-
"transaction_fee": 0.0001,
99-
"balance_confirmations": 0,
10094
"currency": "PPC"
10195
},
10296
"doge": {
@@ -112,9 +106,22 @@
112106
"passphrase": ""
113107
},
114108
"confirmations": 1,
115-
"transaction_fee": 0.0001,
116-
"balance_confirmations": 0,
117109
"currency": "DOGE"
110+
},
111+
"nmc": {
112+
"client": {
113+
"host": "127.0.0.1",
114+
"port": 15332,
115+
"user": "",
116+
"pass": ""
117+
},
118+
"wallet": {
119+
"address": "",
120+
"account": "coinnext_bank",
121+
"passphrase": ""
122+
},
123+
"confirmations": 1,
124+
"currency": "NMC"
118125
}
119126
},
120127
"app_host": "localhost:5000",
@@ -191,8 +198,6 @@
191198
"passphrase": ""
192199
},
193200
"confirmations": 1,
194-
"transaction_fee": 0.0001,
195-
"balance_confirmations": 0,
196201
"currency": "BTC"
197202
},
198203
"ltc": {
@@ -208,8 +213,6 @@
208213
"passphrase": ""
209214
},
210215
"confirmations": 1,
211-
"transaction_fee": 0.0001,
212-
"balance_confirmations": 0,
213216
"currency": "LTC"
214217
},
215218
"ppc": {
@@ -225,8 +228,6 @@
225228
"passphrase": ""
226229
},
227230
"confirmations": 1,
228-
"transaction_fee": 0.0001,
229-
"balance_confirmations": 0,
230231
"currency": "PPC"
231232
},
232233
"doge": {
@@ -242,9 +243,22 @@
242243
"passphrase": ""
243244
},
244245
"confirmations": 1,
245-
"transaction_fee": 0.0001,
246-
"balance_confirmations": 0,
247246
"currency": "DOGE"
247+
},
248+
"nmc": {
249+
"client": {
250+
"host": "127.0.0.1",
251+
"port": 15332,
252+
"user": "",
253+
"pass": ""
254+
},
255+
"wallet": {
256+
"address": "",
257+
"account": "coinnext_bank",
258+
"passphrase": ""
259+
},
260+
"confirmations": 1,
261+
"currency": "NMC"
248262
}
249263
},
250264
"app_host": "localhost:5000",
@@ -320,8 +334,6 @@
320334
"passphrase": ""
321335
},
322336
"confirmations": 1,
323-
"transaction_fee": 0.0001,
324-
"balance_confirmations": 0,
325337
"currency": "BTC"
326338
},
327339
"ltc": {
@@ -337,8 +349,6 @@
337349
"passphrase": ""
338350
},
339351
"confirmations": 1,
340-
"transaction_fee": 0.0001,
341-
"balance_confirmations": 0,
342352
"currency": "LTC"
343353
},
344354
"ppc": {
@@ -354,8 +364,6 @@
354364
"passphrase": ""
355365
},
356366
"confirmations": 1,
357-
"transaction_fee": 0.0001,
358-
"balance_confirmations": 0,
359367
"currency": "PPC"
360368
},
361369
"doge": {
@@ -371,9 +379,22 @@
371379
"passphrase": ""
372380
},
373381
"confirmations": 1,
374-
"transaction_fee": 0.0001,
375-
"balance_confirmations": 0,
376382
"currency": "DOGE"
383+
},
384+
"nmc": {
385+
"client": {
386+
"host": "127.0.0.1",
387+
"port": 5332,
388+
"user": "",
389+
"pass": ""
390+
},
391+
"wallet": {
392+
"address": "",
393+
"account": "coinnext_bank",
394+
"passphrase": ""
395+
},
396+
"confirmations": 1,
397+
"currency": "NMC"
377398
}
378399
},
379400
"app_host": "localhost:5000",

configs/wallets.coffee

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MarketHelper = require "../lib/market_helper"
2+
3+
wallets = {}
4+
5+
for currency of MarketHelper.getCurrencies()
6+
Wallet = if process.env.NODE_ENV is "test" then require("../tests/helpers/#{currency}_wallet_mock") else require("../lib/crypto_wallets/#{currency}_wallet")
7+
wallets[currency] = new Wallet()
8+
9+
exports = module.exports = wallets

configs/wallets.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
(function() {
2+
var MarketHelper, Wallet, currency, exports, wallets;
3+
4+
MarketHelper = require("../lib/market_helper");
5+
6+
wallets = {};
7+
8+
for (currency in MarketHelper.getCurrencies()) {
9+
Wallet = process.env.NODE_ENV === "test" ? require("../tests/helpers/" + currency + "_wallet_mock") : require("../lib/crypto_wallets/" + currency + "_wallet");
10+
wallets[currency] = new Wallet();
11+
}
12+
13+
exports = module.exports = wallets;
14+
15+
}).call(this);

lib/btc_wallet.coffee lib/crypto_wallets/btc_wallet.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CryptoWallet = require "./crypto_wallet"
1+
CryptoWallet = require "../crypto_wallet"
22
bitcoin = require("bitcoin")
33

44
class BtcWallet extends CryptoWallet

lib/btc_wallet.js lib/crypto_wallets/btc_wallet.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/doge_wallet.coffee lib/crypto_wallets/doge_wallet.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CryptoWallet = require "./crypto_wallet"
1+
CryptoWallet = require "../crypto_wallet"
22
dogecoin = require("node-dogecoin")
33

44
class DogeWallet extends CryptoWallet

lib/doge_wallet.js lib/crypto_wallets/doge_wallet.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ltc_wallet.coffee lib/crypto_wallets/ltc_wallet.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CryptoWallet = require "./crypto_wallet"
1+
CryptoWallet = require "../crypto_wallet"
22
litecoin = require("litecoin")
33

44
class LtcWallet extends CryptoWallet

lib/ltc_wallet.js lib/crypto_wallets/ltc_wallet.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/crypto_wallets/nmc_wallet.coffee

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
CryptoWallet = require "../crypto_wallet"
2+
namecoin = require("namecoin")
3+
4+
class NmcWallet extends CryptoWallet
5+
6+
currency: "NMC"
7+
8+
initialCurrency: "NMC"
9+
10+
currencyName: "Namecoin"
11+
12+
createClient: (options)->
13+
@client = new namecoin.Client options.client
14+
15+
exports = module.exports = NmcWallet

lib/crypto_wallets/nmc_wallet.js

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ppc_wallet.coffee lib/crypto_wallets/ppc_wallet.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CryptoWallet = require "./crypto_wallet"
1+
CryptoWallet = require "../crypto_wallet"
22
peercoin = require("node-peercoin")
33

44
class PpcWallet extends CryptoWallet

lib/ppc_wallet.js lib/crypto_wallets/ppc_wallet.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/market_helper.coffee

+4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ CURRENCIES =
1515
LTC: 2
1616
PPC: 3
1717
DOGE: 4
18+
NMC: 5
1819

1920
CURRENCY_NAMES =
2021
BTC: "Bitcoin"
2122
LTC: "Litecoin"
2223
PPC: "Peercoin"
2324
DOGE: "Dogecoin"
25+
NMC: "Namecoin"
2426

2527
AVAILABLE_MARKETS =
2628
LTC_BTC: 1
2729
PPC_BTC: 2
2830
DOGE_BTC: 3
31+
NMC_BTC: 4
2932

3033
ORDER_TYPES =
3134
market: 1
@@ -56,6 +59,7 @@ WITHDRAWAL_FEES =
5659
LTC: 200000
5760
PPC: 2000000
5861
DOGE: 200000000
62+
NMC: 200000
5963

6064
TOKENS =
6165
email_confirmation: 1

lib/market_helper.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,23 @@
1414
BTC: 1,
1515
LTC: 2,
1616
PPC: 3,
17-
DOGE: 4
17+
DOGE: 4,
18+
NMC: 5
1819
};
1920

2021
CURRENCY_NAMES = {
2122
BTC: "Bitcoin",
2223
LTC: "Litecoin",
2324
PPC: "Peercoin",
24-
DOGE: "Dogecoin"
25+
DOGE: "Dogecoin",
26+
NMC: "Namecoin"
2527
};
2628

2729
AVAILABLE_MARKETS = {
2830
LTC_BTC: 1,
2931
PPC_BTC: 2,
30-
DOGE_BTC: 3
32+
DOGE_BTC: 3,
33+
NMC_BTC: 4
3134
};
3235

3336
ORDER_TYPES = {
@@ -63,7 +66,8 @@
6366
BTC: 20000,
6467
LTC: 200000,
6568
PPC: 2000000,
66-
DOGE: 200000000
69+
DOGE: 200000000,
70+
NMC: 200000
6771
};
6872

6973
TOKENS = {

models/seeds/market_stats.coffee

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module.exports = [
2-
{type: "LTC_BTC", status: "enabled"}
3-
{type: "PPC_BTC", status: "enabled"}
4-
{type: "DOGE_BTC", status: "enabled"}
5-
]
1+
MarketHelper = require "../../lib/market_helper"
2+
markets = []
3+
for literal, int of MarketHelper.getMarkets()
4+
markets.push {type: literal, status: "enabled"}
5+
module.exports = markets

0 commit comments

Comments
 (0)