Skip to content

Commit

Permalink
Merge pull request #310 from johngame/master
Browse files Browse the repository at this point in the history
Added Gamerscoin Support
  • Loading branch information
dcousens committed Nov 10, 2014
2 parents 787215e + 4283fc2 commit 5b6249e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ var networks = {
feePerKb: 10000, // https://github.com/bitcoin/bitcoin/blob/v0.9.2/src/main.cpp#L53
estimateFee: estimateFee('bitcoin')
},
gamerscoin: {
magicPrefix: '\x19Gamerscoin Signed Message:\n',
bip32: {
public: 0x019da462,
private: 0x019d9cfe
},
pubKeyHash: 0x26,
scriptHash: 0x05,
wif: 0xA6,
dustThreshold: 0, // https://github.com/gamers-coin/gamers-coinv3/blob/master/src/main.cpp#L358-L363
dustSoftThreshold: 100000, // https://github.com/gamers-coin/gamers-coinv3/blob/master/src/main.cpp#L51
feePerKb: 100000, // https://github.com/gamers-coin/gamers-coinv3/blob/master/src/main.cpp#L54
estimateFee: estimateFee('gamerscoin')
},
dogecoin: {
magicPrefix: '\x19Dogecoin Signed Message:\n',
bip32: {
Expand Down

0 comments on commit 5b6249e

Please sign in to comment.