Bitcoin Forum
July 30, 2024, 02:48:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 [92] 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 ... 315 »
1821  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 25, 2014, 01:41:38 AM
James any thoughts on side chains and its effect on supernet, Nxt, btcd? Do you see it in competition with or change anything your doing?

who is at the forefront of building "side chains"? or, where is a good source to learn more?
https://www.cryptocoinsnews.com/sidechains-bitcoin-2-0-revolution-highlights-reddit-ama/

http://blockstream.com/sidechains.pdfhttp:/blockstream.com/sidechains.pdf

I guess supernet would still connect all these chains together and allow cross chain trading and all the other magic supernet allows for.
Smiley
1822  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 25, 2014, 12:20:16 AM
James any thoughts on side chains and its effect on supernet, Nxt, btcd? Do you see it in competition with or change anything your doing?
it is still so new, not even sure what sort of marketshare it will get
of course if it becomes significant we will need to figure out what to do
in general any advancement in crypto is good for SuperNET
1823  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 03:54:46 PM
    static char *telepodacct[] = { (char *)telepodacct_func, "telepodacct", "V", "amount", "contact", "coin", "comment", "cmd", "withdraw", 0 };

I coded a telepodacct API, this will either return info about existing telepods or create account entry telpods.

if "cmd" is "debit" or "credit", it will just create a special telepod that is just an accounting entry and it will also get a comment so you can document your tx.

"contact" is any contact in the list of contacts, if blank, then all contacts
"coin" can be a specific coin or blank for all coins (they will be converted to BTC equivalent)
"withdraw" will filter thing so only withdraws of telepods to that address will be listed

All the telepods that pass the filter will be displayed and the total debit/credit is calculated. Error cases such as double spends or cancels and pending tx are also displayed.

I think this has almost all the required functionality for GUI to display status of telepods

James

P.S. I probably need to add a cancel teleport API, this would allow a partial cancel of a tx, only to be used when both sides are agreeing to it, or there would be an upset recipient of a "bounced" telepod
1824  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 02:17:41 PM
any accounting peoples here?
I know enough about accounting to be dangerous Smiley

I remember something about double entry accounting where you have matched debits and credits, so they always add up to the same balance. this happens to solve a bit of a tracking issue.

here is the scenario.

Alice teleports to Bob 666 BTCD. Ignoring which telepods are selected (we just assume for now Alice has enough), she will send something like 500 + 100 + 50 + 10 + 5 + 1 BTCD telepods.

Now, these six telepods change from "avail" to "outbound" status for Alice. Since she now shouldnt use these for anything else, her balance needs to be adjusted by 666. Now by summing all the avail telepods, we will get a total lower by 666 BTCD, but to be able to track where the funds went it makes sense to create an entry that says "sent Bob 666 BTCD". This allows to later sum all the sends to Bob and match it up with all the entries.

On the receiving side, it is trickier as Bob doesnt necessarily know that he will get the telepods. But at some point Alice and Bob would come to some sort of agreement for payment, so Bob would put in a "expecting 666 BTCD from Alice". This would change to "received 666 BTCD from Alice" as the telepods are received and then cloned. With an intermediate progress percentage as the telepods are cloned at random times.

So I think what I can do is create "sent" and "receive" telepod commands where the "sent" is automatically generated when you do a teleport (assuming no errors) and the "receive" needs to be done manually. I can make an API that will display unaccounted for incoming telepods and it would suggest that "receive 666 BTCD from Alice" would balance all the known telepods.

Something like this is what I am thinking of. Feedback appreciated.

James

P.S. With a system like this, it would be possible to do a time released payment, eg. instead of sending all 666 BTCD at once, it can be spread out over an hour/day/week/month. So if you are having a monthly payment to a vendor, you can spread it out over a month and this really helps the privacy
1825  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:17:16 PM
I ended up rewriting the old teleport code and now it is ~800 lines! Having Telepathy and a database really simplified the Teleport logic. I even have support for additional coins, but clearly BTCD will be easiest to debug and get working as making it work without any changes to a coin's core is possible, but exactly easy.

keep in mind, still need to figure out how to get a build with the DB in it and also Windows builds, but all that is left now are telepod accounting functions and since it is in a database, no magic will be required.

Along the way I think I also figured out how a group of players can jointly create a random number(s) that is fully decentralized and provably random. Most importantly, none of the players will be able to predict what the sequence will be, but all the players will generate the same sequence of numbers. So from 2 player games to 8 player card games, all these can have a totally fair dice/cards.

Even 1 player games against the house can use this mechanism as long as there is a special acct for the house. So no more worries about being cheated. Coming to PrivateBet games.

James

Holy hell. That is huge. Seriously, How is it possible that you can continue to come up with so much crazy shitlike this!?
I dont know enough to know what is supposed to be impossible, plus I ask people who know how to solve these difficult problems. I think the latter is more effective Smiley

Having a secure communication channel enables a lot of things that otherwise are not possible. I didnt know all this before, but now that we have a secure comm channel, it is natural I learn how to get the most out of it.

James
1826  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET asset 12071612744977229797, trading symbol UNITY on: October 24, 2014, 01:02:19 PM
There has been some recent developments.  It looks like there are now two clones/competitors to James' projects.  They unoriginally almost have the same name.  

1. The internet of coins - https://bitcointalk.org/index.php?topic=827804.0
2. The internet of blockchains - blocknet - https://bitcointalk.org/index.php?topic=829576.0

Any thoughts on these?

Edit: And maybe this one too http://www.blockstream.com/ is this like Supernet but for Bitcoin?
Actually internet of coins came out with a website in late August. I remember seeing some nice graphics, but didnt understand what their tech was, seemed more like a concept. I was familiar with their stormwind asset which is the same asset on multiple asset exchanges. From what I can tell it is a totally different approach to the same ideals as SuperNET.

James
1827  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 12:01:00 PM
Very wonderful progress being made! Thanks, as ever, James.
I'd love to know the motives of the dumper.

I think this is a fundamental difference between SuperNET and BlockNET: https://bitcointalk.org/index.php?topic=829576.msg9313526#msg9313526
Please feel free to chip in to whatever discussion results. I just can't see how BlockNET will compare from a revenue-generation point of view.
there are some people that just dont like new tech. The more new tech, the more they want to sell

James
1828  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: October 24, 2014, 11:58:05 AM
excited how supernet integration will do, james has been absent in this thread for a while..

He's been absent in the market, too.

Absent, or on the sell side?   Wink

He who pumpeth, shalt dumpeth away!   Cheesy

I know you're probably joking but I'm almost certain that none of the selling is associated with jl777.
If you are not 100% sure why comment then?

Sockpuppet
I've pretty busing coding:
https://bitcointalk.org/index.php?topic=762346.msg9313397#msg9313397

James

P.S. I have never used any sockpuppet
1829  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET asset 12071612744977229797, trading symbol UNITY on: October 24, 2014, 11:21:32 AM
bigger news would be that I rewrote the Teleport code to use Telepathy and the new database and reduce it from 3000 lines to less than 1000 lines, with just accounting API left to do. Especially if the BBR changes were integrated in so that multicurrency Teleporting was pretty much code complete.

Still need to integrate in InstantDEX autoconvert and hook back up the Tradebots to the new codebase, but definitely feels like some big progress.

James

P.S. Still need to debug and solve build issues, but with less than 1000 lines of code, it will be much easier to get it debugged than when it was 3000. I also need to add deaddrop address mining, and adaptive network factors, but these are small issues compared to the fundamental Teleport and Telepathy.
1830  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET asset 12071612744977229797, trading symbol UNITY on: October 24, 2014, 11:04:49 AM
Well, im glad SuperNET have its competitor, it would be great for us!

Yes, competition will make us more popular Wink

Anyway when chancecoin was mentioned yesterday in SuperNET Newsletter #4, Chancecoin has gone up by more than %40!!!

Chancecoin  $ 259,287  $ 0.501981   516,528 CHA  *  $ 250  43.73 %

I am glad I bought some as soon as I read it...please do not panic there are coins for everybody...there is only half a million...did I say half a million?Huh My prediction will get to $10 each chancecoin for such low supply


Where can I buy some mate?

https://poloniex.com/exchange/btc_cha

Its going up in price all the time, I reckon today will reach $1

You do understand that it will be the first two days and after that the price will go down again? P&d groups are playing this wisely and burn your btc into useless coins.

By the way, according to chart this is just a simple pump with a total of a few btc in volume...my advice is not to buy if you think you get rich from it because there is hardly no volume at all.

Good advice, classic P&D scheme... The thing is the newcomers always get burned the first time !

I burned 1,5 BTC for CHA back few months ago. I was so happy that I could sell them now in this pump... But I am still stuck in a few investments like BBR or NODE where the price went down 50-150% since I invested...

I don't know much about NODE but I wouldn't worry too much about BBR considering at this point it looks like using BTCD's teleport with BBR's ring sigs is going to be the best anon solution in crypto. So if there is demand for anonymity then both BTCD and BBR should benefit a lot.
https://github.com/cryptozoidberg/boolberry/tree/master/utils
1831  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 08:55:06 AM
I ended up rewriting the old teleport code and now it is ~800 lines! Having Telepathy and a database really simplified the Teleport logic. I even have support for additional coins, but clearly BTCD will be easiest to debug and get working as making it work without any changes to a coin's core is possible, but exactly easy.

keep in mind, still need to figure out how to get a build with the DB in it and also Windows builds, but all that is left now are telepod accounting functions and since it is in a database, no magic will be required.

Along the way I think I also figured out how a group of players can jointly create a random number(s) that is fully decentralized and provably random. Most importantly, none of the players will be able to predict what the sequence will be, but all the players will generate the same sequence of numbers. So from 2 player games to 8 player card games, all these can have a totally fair dice/cards.

Even 1 player games against the house can use this mechanism as long as there is a special acct for the house. So no more worries about being cheated. Coming to PrivateBet games.

James
1832  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 03:00:13 AM
lmao 30% spread

I tried to combat the whale dump by buying up ~9 btc worth.

Looks like the Bitcoindark Bearwhale just put up a 10,000 BTCD sell wall at .007!

I guess they still have more to dump.

How much BTCD could they possibly have?
that 10K wall at .007 is me

as soon as the whaledumper runs out, I dont want the price to just spike back up. Even though the drop was caused by just one guy, best to be more gradual. Also, the whale dumper refused to sell anymore, so maybe he is all out?

that was almost 3% of all BTCD (in an hour!) and more like 5% over the last few weeks. I can only think of a few people that have that much BTCD, well had that much.

so, this whole declining as I am making fantastic progress on the tech is explained!

James
1833  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:58:04 AM
more BTC being sent to bittrex for you, mr. whale
soon you can dump again, but it is a slow BTC block

James
there, another 10 BTC for the whale dumper

and another, so there is 20 more BTC for you
ok, so you have more to sell.
another 10 BTC there
1834  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:45:59 AM
Let's say I have 5 BTCD addresses in my wallet.

All I need to backup my wallet is the 5 corresponding private keys then?

Does each change address have a private key as well?
every address has its own privatekey
1835  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:45:38 AM
more BTC being sent to bittrex for you, mr. whale
soon you can dump again, but it is a slow BTC block

James
there, another 10 BTC for the whale dumper

and another, so there is 20 more BTC for you
1836  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:38:48 AM
more BTC being sent to bittrex for you, mr. whale
soon you can dump again, but it is a slow BTC block

James
1837  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET asset 12071612744977229797, trading symbol UNITY on: October 24, 2014, 01:31:18 AM
Well, im glad SuperNET have its competitor, it would be great for us!

Yes, competition will make us more popular Wink

Anyway when chancecoin was mentioned yesterday in SuperNET Newsletter #4, Chancecoin has gone up by more than %40!!!

Chancecoin  $ 259,287  $ 0.501981   516,528 CHA  *  $ 250  43.73 %

I am glad I bought some as soon as I read it...please do not panic there are coins for everybody...there is only half a million...did I say half a million?Huh My prediction will get to $10 each chancecoin for such low supply


Where can I buy some mate?

https://poloniex.com/exchange/btc_cha

Its going up in price all the time, I reckon today will reach $1

You do understand that it will be the first two days and after that the price will go down again? P&d groups are playing this wisely and burn your btc into useless coins.

By the way, according to chart this is just a simple pump with a total of a few btc in volume...my advice is not to buy if you think you get rich from it because there is hardly no volume at all.

Good advice, classic P&D scheme... The thing is the newcomers always get burned the first time !

I burned 1,5 BTC for CHA back few months ago. I was so happy that I could sell them now in this pump... But I am still stuck in a few investments like BBR or NODE where the price went down 50-150% since I invested...
WTB CHA
PM me
1838  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:14:05 AM
so, Mr. whale just how much more do you have to sell and how desperate are you for BTC?

James

P.S. for everybody else, no need to panic, this is just one whale that really needs BTC and nothing to do with BTCD
1839  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: October 24, 2014, 01:02:58 AM
300 BTCD on bittrex at .0067. need some funds for a conference
seems we have somebody desparate for the BTC
they are selling into all the below market walls!
this explains the recent drop, it is just one big whale that has decided to sell.
whoever you are PM me, maybe we can do an offmarket trade to avoid making big waves in the market

James
1840  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Sha-256/PoW-PoS hybrid/Bounty Opportunities on: October 22, 2014, 09:08:49 PM
So telepathy sounds very interesting and could be a complete breakthrough in anonymity. Tell me, do you think it will be possible to completely replace Tor with such a system? If so, in terms of speed will it be able to function faster then Tor?

I had a conversation along these lines with James. Problem is that Telepathy is extremely strong, but it's a closed system: you can communicate very securely with other users, but accessing websites is different matter.
If someone could come up with a way of creating a TOR gateway, or a way of accessing webpages via Telepathy, that would be fantastic. It would also be possible to store static content in the cloud and have a kind of limited mini darkweb within the Telepathy network. But all of this needs people to build apps on top of Teleport.

What if you could access webpages stored on the distributed storage system, and these websites can use a blockchain as their database?
definitely possible to store HTML in the cloud
getting all the active web stuff will be much more difficult, but static content wont be a problem
in fact, this could give some value to NXT aliases which could have the cloud lookup info in the alias description
Pages: « 1 ... 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 [92] 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 ... 315 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!