Recommended post.
10,000 Karma sent to you for your work. Thank you!
Thank you mouseman!!!
Thanks to socoban and ptman! 145k KARMA to each Smiley
Also a big thanks, to everyone else, that contribute to Karma! Smiley
Go KARMA! Cheesy
Thank you Kennet_h!!!
This is first time, someone tipped me:) NICE
Since the main problem of KARM is lack of services, our first goal should be to create something like DOGE has:
http://dogechain.info/ (There is web wallet, API, end exlorer. 3 basic tools to make DOGE integration easy.)
I already created explorer with some API. I am working now on porting bitcoinjs-lib into Karmacoinjs-lib. With that, we will have javascript library to easily send KARMA from Javacsript. This will allow me to finish port of coinpunk web wallet. Than we will have easy Web wallet, which can be embeded using (cordova/phonegap) into phone app stores. It is very easy to create IOS/Android/Windows phone app from web page using Cordova.
I just need help from Kosmost or any other KARMA wallet developer. I never developed and worked with alt coin source before, so getting important constants from KARMA source cost me lot of time. (Since I have to study every single required variable to find out what it means, and than read the code and find the constant in the code).
So please, KARMA devs, let me know what are the constants I need. I have already spend lot of time reading KARMA sources to finish Insight explorer.
I need this. Bitcoin set up is:
bitcoin: {
magicPrefix: '\x18Bitcoin Signed Message:\n',
bip32: {
public: 0x0488b21e,
private: 0x0488ade4
},
pubKeyHash: 0x00,
scriptHash: 0x05,
wif: 0x80,
dustThreshold: 546, // https://github.com/bitcoin/bitcoin/blob/v0.9.2/src/core.h#L151-L162
feePerKb: 10000, // https://github.com/bitcoin/bitcoin/blob/v0.9.2/src/main.cpp#L53
estimateFee: estimateFee('bitcoin')
},
A was able to find out some variables in code:
karmacoin: {
magicPrefix: 'Karma Signed Message:\n', // strMessageMagic = "Karma Signed Message:\n";
bip32: {
public: 0x0488b21e, /// I need help here
private: 0x0488ade4 /// I need help here
},
pubKeyHash: 0x00, /// I need help here
scriptHash: 0x05, /// I need help here
wif: 0x80, /// I need help here
dustThreshold: 0, //Karma disabled IsDust() in 0.8.3.x.
dustSoftThreshold: 100000000, //DUST_SOFT_LIMIT = 100000; - 0.001 KARM
feePerKb: 100000, // CTransaction::nMinTxFee = 100000;
estimateFee: estimateFee('karmacoin')
},
So what I need is:
bip32: {
public: 0x0488b21e, /// I need help here
private: 0x0488ade4 /// I need help here
},
pubKeyHash: 0x00, /// I need help here
scriptHash: 0x05, /// I need help here
wif: 0x80, /// I need help here
Thanks. it will save me lot of time.