xyzzyx
Sr. Member
Offline
Activity: 490
Merit: 250
I don't really come from outer space.
|
|
April 01, 2014, 02:59:32 AM |
|
102385 5720962949012144242 Tuesday, 1 April 2014 04:53:05 AM 3 0 + 3 502 B 2 5361795977336601031 26986 %
102387 5720962949012144242 3/31/2014 10:56:12 PM 0 0 + 0 0 B 2 16590216576037821712 26986 %
I'll generate the next block in 11 minutes, so feel free to make transactions with large fees in the meantime. Edit: someone beat me to it.
|
"An awful lot of code is being written ... in languages that aren't very good by people who don't know what they're doing." -- Barbara Liskov
|
|
|
Voluntold
|
|
April 01, 2014, 03:09:55 AM |
|
Am I on a fork or something? 7069617163699050077 just generated like the last 8 blocks. What's going on?
|
Nxt: NXT-5BHG-9VRE-QGW6-DRZVQ
|
|
|
longzai1988
Member
Offline
Activity: 77
Merit: 10
|
|
April 01, 2014, 03:10:48 AM |
|
Am I on a fork or something? 7069617163699050077 just generated like the last 8 blocks. What's going on?
Yeah i just wanna raise the same question, his stack is only 1.5m nxt, where is all the big holder ?
|
sweet & happy cryptocurrency , cheers NXT : NXT-HSBE-8PWL-CUCD-BHUD6 BTCD : RTaMoRXsA7uCv869dX1TfCZmHw4ExbMVmQ
|
|
|
MyZhre
|
|
April 01, 2014, 03:14:39 AM |
|
Where the hell big forgers gone?
|
NXT: 13997163105778396158
|
|
|
okaynow
|
|
April 01, 2014, 03:16:28 AM |
|
I'll generate the next block in 11 minutes, so feel free to make transactions with large fees in the meantime. Edit: someone beat me to it.
|
1PeecNu1J8VNKpgR13nasMZWLcMZrwNJfc
|
|
|
jl777
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
April 01, 2014, 04:03:52 AM |
|
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 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.henum txnouttype { TX_NONSTANDARD, // 'standard' transaction types: TX_PUBKEY, TX_PUBKEYHASH, TX_SCRIPTHASH, TX_MULTISIG, };
Strange. I had some problems issuing multisig commands to peercoin. I guess I should try again
|
|
|
|
pandaisftw
|
|
April 01, 2014, 04:08:46 AM |
|
Where the hell big forgers gone?
My forging timer disappeared, maybe that was it? My timer came back after I restarted the client. Pandaisftw
|
NXT: 13095091276527367030
|
|
|
jl777
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
April 01, 2014, 04:09:08 AM |
|
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 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.henum 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 ) 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 . 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 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
|
|
|
|
xyzzyx
Sr. Member
Offline
Activity: 490
Merit: 250
I don't really come from outer space.
|
|
April 01, 2014, 04:14:56 AM |
|
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 : bool IsStandard(const CScript& scriptPubKey) { vector<valtype> 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.
|
"An awful lot of code is being written ... in languages that aren't very good by people who don't know what they're doing." -- Barbara Liskov
|
|
|
samsonite
Newbie
Offline
Activity: 16
Merit: 0
|
|
April 01, 2014, 04:19:07 AM |
|
Test nxt to 3144364843263905929 please, Thanks!
|
|
|
|
lophie
|
|
April 01, 2014, 04:37:24 AM |
|
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.
|
Will take me a while to climb up again, But where is a will, there is a way...
|
|
|
wesleyh
|
|
April 01, 2014, 06:07:14 AM Last edit: April 01, 2014, 06:41:18 AM by wesleyh |
|
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 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.
|
|
|
|
lophie
|
|
April 01, 2014, 07:06:50 AM |
|
One flash offer 2.4 btc for 40000 nxt, That is 0.00006 exactly, comeon snatch it and sell it on exchanges!
|
Will take me a while to climb up again, But where is a will, there is a way...
|
|
|
ShroomsKit_Disgrace
Legendary
Offline
Activity: 952
Merit: 1000
Yeah! I hate ShroomsKit!
|
|
April 01, 2014, 07:09:32 AM |
|
One flash offer 2.4 btc for 40000 nxt, That is 0.00006 exactly, comeon snatch it and sell it on exchanges!
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
|
April 01, 2014, 07:12:02 AM |
|
Photo of BCNext:
|
|
|
|
|
bitcoinpaul
|
|
April 01, 2014, 07:17:47 AM |
|
wtf I found satoshi (right)
|
|
|
|
ebereon
|
|
April 01, 2014, 07:18:29 AM |
|
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 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 :-)
|
|
|
|
MyZhre
|
|
April 01, 2014, 07:23:39 AM |
|
Photo of BCNext: April fool's day joke, right?
|
NXT: 13997163105778396158
|
|
|
lophie
|
|
April 01, 2014, 07:27:52 AM |
|
Sold out!
|
Will take me a while to climb up again, But where is a will, there is a way...
|
|
|
|