Pages:
Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 90. (Read 2761645 times)

sr. member
Activity: 308
Merit: 250
Instead of having run.bat in the official release, why not include an exe?

There's this tool, http://www.battoexeconverter.com which can do the conversion. Just place the exe in the folder with the .bat file and use the exe instead to launch. much easier...

If jean-luc adds an environment variable when NRS Is ready, I can also make it so that the browser opens automatically to the correct page.
legendary
Activity: 1176
Merit: 1134
Strange. I had some problems issuing multisig commands to peercoin. I guess I should try again

Peercoin seems to support it, https://github.com/ppcoin/ppcoin/blob/master/src/script.cpp#L1411 :

Code:
bool IsStandard(const CScript& scriptPubKey)
{
    vector vSolutions;
    txnouttype whichType;
    if (!Solver(scriptPubKey, whichType, vSolutions))
        return false;

    if (whichType == TX_MULTISIG)
    {
        unsigned char m = vSolutions.front()[0];
        unsigned char n = vSolutions.back()[0];
        // Support up to x-of-3 multisig txns as standard
        if (n < 1 || n > 3)
            return false;
        if (m < 1 || m > n)
            return false;
    }

    return whichType != TX_NONSTANDARD;
}

But I'm not really too familiar with bitcoin code.  I may have overlooked something.

I get a "Method not found" error for "getrawtransaction"
Since I am using rawtransactions throughout, if PPC supports multisig in a different way, I will need to do some custom code for it to support it and forks of it, unless it is a simple typo?

edit: http://www.reddit.com/r/peercoin/comments/1uh7mu/multisig/ confirms no multisig with peercoin yet
legendary
Activity: 1540
Merit: 1000
legendary
Activity: 1512
Merit: 1004
legendary
Activity: 1162
Merit: 1005
Are we still under attack? Look at the base targets.
hero member
Activity: 924
Merit: 1001
Unlimited Free Crypto
Sold out!

Ahhh Lophie! You finally got rid of these "stinky" nxts?? Hope you forget some and what to give them for free...  Roll Eyes

NXt is like any other investment venture, try not to not get over zealous with an investment. I have my stack for the long holding and from time to time as I need the money I liquidate from the short term holdings Smiley
legendary
Activity: 952
Merit: 1000
Yeah! I hate ShroomsKit!
Sold out!

Ahhh Lophie! You finally got rid of these "stinky" nxts?? Hope you forget some and what to give them for free...  Roll Eyes
hero member
Activity: 924
Merit: 1001
Unlimited Free Crypto
Sold out!
full member
Activity: 193
Merit: 100
sr. member
Activity: 397
Merit: 500
NxtWallet For Windows is available: (test version)

http://nxtra.org/nxt-wallet/

It connects to the main (real) net by default, I suggest you switch to testnet first and try it out there (tools > switch net)

I have removed my donation address from the bottom of the app so as to give it a more professional look, but donations are still very welcome of course Wink

You can send to 8189784314684138350 or simply the alias @wesleynxt (this works in any dialog).

A new mac version is also available (minor differences).

...

wesley, can you check this? It comes from decompressing the windows version.


--

and

--

AVG says this http://www.avgthreatlabs.com/virus-and-malware-information/content/win32-heur/

Send it to:

 https://www.virustotal.com/

to double-check it.

Edit: I suspect a false-positive.

Hmm, I'll check this out. I suspects it's from packing the required dll's inside the exe instead of just putting them in the same folder.  (win32/heur often has false positives it looks like)

Edit: I can confirm that this is the cause. Pitty, I liked having just 1 exe. It looks like I will now to to simply add those files to the download.

Edit 2: New version has been uploaded that should not be falsely detected. The files are no longer packed. Let me know if that fixes it.

Thanks wesley, looks ok now :-)
hero member
Activity: 910
Merit: 1000
wtf I found satoshi (right)

hero member
Activity: 910
Merit: 1000
legendary
Activity: 2142
Merit: 1010
Newbie
Photo of BCNext:

legendary
Activity: 952
Merit: 1000
Yeah! I hate ShroomsKit!
One flash offer 2.4 btc for 40000 nxt, That is 0.00006 exactly, comeon snatch it and sell it on exchanges!

 Grin
hero member
Activity: 924
Merit: 1001
Unlimited Free Crypto
One flash offer 2.4 btc for 40000 nxt, That is 0.00006 exactly, comeon snatch it and sell it on exchanges!
sr. member
Activity: 308
Merit: 250
NxtWallet For Windows is available: (test version)

http://nxtra.org/nxt-wallet/

It connects to the main (real) net by default, I suggest you switch to testnet first and try it out there (tools > switch net)

I have removed my donation address from the bottom of the app so as to give it a more professional look, but donations are still very welcome of course Wink

You can send to 8189784314684138350 or simply the alias @wesleynxt (this works in any dialog).

A new mac version is also available (minor differences).

...

wesley, can you check this? It comes from decompressing the windows version.


--

and

--

AVG says this http://www.avgthreatlabs.com/virus-and-malware-information/content/win32-heur/

Send it to:

 https://www.virustotal.com/

to double-check it.

Edit: I suspect a false-positive.

Hmm, I'll check this out. I suspects it's from packing the required dll's inside the exe instead of just putting them in the same folder.  (win32/heur often has false positives it looks like)

Edit: I can confirm that this is the cause. Pitty, I liked having just 1 exe. It looks like I will now to to simply add those files to the download.

Edit 2: New version has been uploaded that should not be falsely detected. The files are no longer packed. Let me know if that fixes it.
hero member
Activity: 924
Merit: 1001
Unlimited Free Crypto
Guys I have the exact amount of 97'344 nxt to sale, As soon as possible for the guys who will give me good reasonable prices. pm me please.
newbie
Activity: 16
Merit: 0
Test nxt to 3144364843263905929 please, Thanks!
sr. member
Activity: 490
Merit: 250
I don't really come from outer space.
Strange. I had some problems issuing multisig commands to peercoin. I guess I should try again

Peercoin seems to support it, https://github.com/ppcoin/ppcoin/blob/master/src/script.cpp#L1411 :

Code:
bool IsStandard(const CScript& scriptPubKey)
{
    vector vSolutions;
    txnouttype whichType;
    if (!Solver(scriptPubKey, whichType, vSolutions))
        return false;

    if (whichType == TX_MULTISIG)
    {
        unsigned char m = vSolutions.front()[0];
        unsigned char n = vSolutions.back()[0];
        // Support up to x-of-3 multisig txns as standard
        if (n < 1 || n > 3)
            return false;
        if (m < 1 || m > n)
            return false;
    }

    return whichType != TX_NONSTANDARD;
}

But I'm not really too familiar with bitcoin code.  I may have overlooked something.
legendary
Activity: 1176
Merit: 1134
Amazing to see how Nxt is progressing! Good job every one that is responsible for the success!

I do have a question about the decentralized exchange. As the day draws closer that its getting released, its time to learn the exact details how it works.
As a big fan of Nxt and of CryptogenicBullion ( CGB),  I am highly interested to get CGB to be one of the first assets trading on the Nxt system Smiley
Is there any documentation available on how to create and maintain an asset, or  how the whole process works?
Any help would be greatly appreciated!
If CGB is a bitcoind fork and supports multisig, I could add it to multigateway

Then there would be a seamless way of depositing and withdrawing CGB into NXT AE and back out to CGB wallets

The deposited CGB would be kept in multisig accts that no single server can unlock, all three need to reach consensus on all withdraws and all balances are publicly viewable so there is no guessing as to the solvency.

James

Did a quick look-see and it appears to be a fork of Peercoin.  Also, from https://github.com/cryptogenicbonds/CGB/blob/master/src/script.h
Quote
enum txnouttype
{
    TX_NONSTANDARD,
    // 'standard' transaction types:
    TX_PUBKEY,
    TX_PUBKEYHASH,
    TX_SCRIPTHASH,
    TX_MULTISIG,
};

That would be awesome James! And as  xyzzyx already pointed out, CGB is a fork of Peercoin (though with some exceptional features aimed at investors Cheesy ) and to my knowledge supports multisig.
If you could add it to your multigateway, that would be marvelous! In case you need any tech info/support, you can PM "Artiface" the lead coder or just drop in on the official CGB thread here . Smiley
Is there already any ETA when your gateway will be ready to use?
Once CGB is exchangeable on the gateway, I would be more then happy to make a donation to show my appreciation Wink
I am hoping to get a decent beta release out by the weekend, but not sure how long it will take to find and fix all the bugs

https://nxtforum.org/multigateway-(third-party)/multigateway-beta-test-signup/ is the signup for beta testers
https://nxtforum.org/multigateway-(third-party)/multigateway-status-reports/ is where I post regular status updates

James
Pages:
Jump to: