deadliftbrah
|
|
August 29, 2014, 01:10:40 AM |
|
i have lost big opportunity in DRK then i bought SPA with that btc, and now i lost everything. I hope this is my second chance with 9000 XST keep spirit dev, do all the best I think you've made a safe bet with XST you'll recoup your losses.
|
|
|
|
sdersdf2
|
|
August 29, 2014, 06:47:03 AM |
|
any theories on why the price is so flat?
|
|
|
|
xtent
|
|
August 29, 2014, 06:56:42 AM |
|
Would rather have flat than downward trend anyday. I suggested and still do that Hondo reach out to jl777 from BitcoinDark to be one of the first coins to join the supernetwork.
|
|
|
|
StealthSend
Member
Offline
Activity: 85
Merit: 10
Because privacy is a basic human right.
|
|
August 29, 2014, 08:49:37 AM |
|
I just got the message processor complete and we have had our first fully automated StealthText transaction, which is a big step.
1c6f16b92097d3beb4a5b64ff14eb83470f69367e95808952bf280599a5e55ac
Now that I have that done, I'm going to work on instructions and simplifying the process, and I'll also work on finishing the whitepaper, which is still in "rough draft" form.
A number of people have been curious about why StealthText uses email to transmit the encrypted transaction to the wallet. This necessity boils down to the fact that two fundamentally different communication protocols are involved.
On one end (the phone), you have SMS, and on the other end (the wallet) you have TCP/IP. Somehow you need a service that intercepts the SMS and turns it into TCP/IP. One such service (of many) is google voice. If you have a google voice account, your SMS messages can be turned into TCP/IP messages, which take the form of email. I boldface and underline "One" because there are plenty of other ways to skin this particular cat. I chose google voice and email because it is free and convenient. In other words, email is chosen for its convenience and not out of necessity.
However, email is an excellent way to encapsulate information. It is a perfect metaphor for regular mail. In regular mail, you have a message on a piece of paper. You put the message in an envelope and put it in a mail box to be carried away by the postman. The nature of the message (and even the medium on which the message is printed) does not change in this process.
The same is true for email. The encrypted transaction gets packaged into a message with To: and From: headers and other information. However, the encrypted transaction does not change during this process. The email is then sent through TCP/IP, where it is routed to its recipient.
This email message, with the unchanged encrypted transaction, comes over a protocol called IMAP. IMAP is not understood by the wallet (it's a protocol for mail not cryptocurrencies!), so the transaction (unchanged) needs to be unpackaged from it's email envelop and repackaged into RPC (remote procedure call), which is understood by the wallet. And, just like when you unpackage and repackage physical objects, they don't change during the process. They are simply moved from one package to another.
That's the function of the simple message processor I wrote over the last couple of nights. As you can imagine, this conversion from mail format to wallet format is not common, so I had to write the message processor specifically for this task.
-- Hondo
|
|
|
|
Pala_00
|
|
August 29, 2014, 12:19:39 PM |
|
Thanks dev. Berkeley-db works perfectly now. But I get some errors about libboost again... why??? I've installed libboost with: apt-get install libboost-all-dev g++: error: /usr/lib/x86_64-linux-gnu/libboost_system.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_filesystem.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_program_options.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_thread.a: No such file or directory make: *** [StealthCoind] Error 1
|
|
|
|
EmilioMann
Legendary
Offline
Activity: 2184
Merit: 1028
#mitandopelomundo
|
|
August 29, 2014, 01:01:10 PM |
|
any theories on why the price is so flat?
A whale who maybe has invested in other crypto be buying and selling their own xst with a bot to manipulate the market making the price drops. Anyone know a hitman in deepweb who accept xst to kill this motherfucker?
|
|
|
|
Pliznou
Member
Offline
Activity: 101
Merit: 11
|
|
August 29, 2014, 01:10:48 PM |
|
Thanks dev. Berkeley-db works perfectly now. But I get some errors about libboost again... why??? I've installed libboost with: apt-get install libboost-all-dev g++: error: /usr/lib/x86_64-linux-gnu/libboost_system.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_filesystem.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_program_options.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_thread.a: No such file or directory make: *** [StealthCoind] Error 1 apt install libboost1.55-all-dev
|
|
|
|
Pala_00
|
|
August 29, 2014, 01:20:47 PM |
|
That will build a statically linked daemon that you can share with your friends. apt install libboost1.55-all-dev E: Unable to locate package libboost1.55-all-dev E: Couldn't find any package by regex 'libboost1.55-all-dev'
|
|
|
|
Pliznou
Member
Offline
Activity: 101
Merit: 11
|
|
August 29, 2014, 01:33:50 PM |
|
That will build a statically linked daemon that you can share with your friends. apt install libboost1.55-all-dev E: Unable to locate package libboost1.55-all-dev E: Couldn't find any package by regex 'libboost1.55-all-dev' Try libboost1.54-all-dev - probably you have old linux version. You can go to Synaptic, search "libboost" and install newest package. g++: error: /usr/lib/x86_64-linux-gnu/libboost_system.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_filesystem.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_program_options.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_thread.a: No such file or directory make: *** [StealthCoind] Error 1 That means you have to install libboost-system1.5x(4 or 5 or whatever)-dev package. Same with "thread", "filesystem", "program-options".
|
|
|
|
Pala_00
|
|
August 29, 2014, 01:46:24 PM |
|
Try libboost1.54-all-dev - probably you have old linux version. You can go to Synaptic, search "libboost" and install newest package.
I use ubuntu 12.04 64x
|
|
|
|
BTCwriter
Legendary
Offline
Activity: 1008
Merit: 1000
|
|
August 29, 2014, 02:57:06 PM Last edit: August 29, 2014, 04:13:48 PM by BTCwriter |
|
When I compile the linux deamon I get this error:
g++: error: /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_system.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_filesystem.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_program_options.a: No such file or directory g++: error: /usr/lib/x86_64-linux-gnu/libboost_thread.a: No such file or directory g++: error: /usr/local/ssl/lib/libssl.a: No such file or directory g++: error: /usr/local/ssl/lib/libcrypto.a: No such file or directory g++: error: /usr/local/lib/libz.a: No such file or directory make: *** [StealthCoind] Error 1
How can I solve it? Thanks!
Just like the error say, no such file or directory. You're missing the packages. try to ask this in ubuntu forum it might help. Always install the full OS and don't try to save some space if you want to use it your own, never install bare metal OS as it will always missing something. try this; sudo apt-get install yum sudo yum install libboost g g+ g++ or yum search lib and see what is the file name for libboost when you found the file... sudo yum install ---filename---
|
|
|
|
statdude
Legendary
Offline
Activity: 1498
Merit: 1000
|
|
August 29, 2014, 03:15:49 PM |
|
any theories on why the price is so flat?
Flat is fine, as long as the new floor of 0.000015 holds. When a public StealthText service is released (I believe the devs are working on one), so no setup is required, I bet we hold over 0.000025.
|
|
|
|
objectofawareness
|
|
August 29, 2014, 03:32:39 PM Last edit: August 29, 2014, 07:45:09 PM by objectofawareness |
|
any theories on why the price is so flat?
I was watching the trading yesterday on Bittrex. There were multiple consecutive dumps of 50 and 33 XST, all driving the price down hundreds of satoshis. Within a few hours, the top wallet had moved over 17,000 XST. Were those coins dumped to suppress the price? Only they know.
|
|
|
|
Forbet
Member
Offline
Activity: 84
Merit: 10
|
|
August 29, 2014, 03:51:21 PM |
|
any theories on why the price is so flat?
I was watching the trading yesterday on Bittrex. There were multiple consecutive dumps at 50 and 33 XST, all driving the price down hundreds of satoshis. Within a few hours, the top wallet had moved over 17,000 XST. Were those coins dumped to suppress the price? Only they know. There is someone driving the price down with his tiny little sells - maybe because the volume is too low to hold a 2k price. XST will get stronger with every announcement, every dev-post, every release and every tweet (btw there should be way more tweets about this coins unique features) - and when StealthText launches it will be too late to "buy in" at this cheap price.
|
|
|
|
objectofawareness
|
|
August 29, 2014, 04:35:53 PM |
|
any theories on why the price is so flat?
I was watching the trading yesterday on Bittrex. There were multiple consecutive dumps at 50 and 33 XST, all driving the price down hundreds of satoshis. Within a few hours, the top wallet had moved over 17,000 XST. Were those coins dumped to suppress the price? Only they know. There is someone driving the price down with his tiny little sells - maybe because the volume is too low to hold a 2k price. XST will get stronger with every announcement, every dev-post, every release and every tweet (btw there should be way more tweets about this coins unique features) - and when StealthText launches it will be too late to "buy in" at this cheap price. I think the general consensus for people that are invested in XST is that it's only a matter of time before the value moves up. Unlike a lot of other coins that get pumped sky high on promises, this coin is going to have to prove itself. After seeing how this team operates, I think it will. XST may be the best choice for anonymous transactions, and therefore it will have value. Those that are interested in that will eventually come here.
|
|
|
|
StealthDevs (OP)
|
|
August 29, 2014, 04:59:32 PM |
|
|
STEALTH | XST | stealth.org
|
|
|
MrLuddite_
Newbie
Offline
Activity: 59
Merit: 0
|
|
August 29, 2014, 08:30:04 PM |
|
My wallet finally began minting the other day and I received a few coins, awesome!
But then, for no apparent reason, it stopped minting. I didn't deposit (except those that were newly minted) or withdraw any coins. Any ideas why I haven't been minting in the past 24-36 hours?
Running windows version 1.1.1.1
|
|
|
|
ChrisLandin
|
|
August 29, 2014, 08:32:03 PM |
|
it will be coinage.
It takes 3 days for coins to come of age to mint. Once minted they have to wait 3 days
|
|
|
|
MrLuddite_
Newbie
Offline
Activity: 59
Merit: 0
|
|
August 29, 2014, 08:40:31 PM |
|
it will be coinage.
It takes 3 days for coins to come of age to mint. Once minted they have to wait 3 days
Ohhh, I see. I assumed the mature coins would continue to mint. Thanks!
|
|
|
|
defier
|
|
August 29, 2014, 11:16:24 PM |
|
it will be coinage.
It takes 3 days for coins to come of age to mint. Once minted they have to wait 3 days
Ohhh, I see. I assumed the mature coins would continue to mint. Thanks! I think they do, after they reach full maturity. 15 days "Coin PoS age: Min. 3 days / Max. 9 days / coins stop aging at 15 days"
|
|
|
|
|