Starving_Marvin
Sr. Member
Offline
Activity: 511
Merit: 250
Open and Transparent Science Powered By Blockchain
|
|
June 22, 2015, 07:37:44 PM |
|
I've installed Supernet 2. How do I deposit coins there? Can't really find any info even from google how to do it.
|
|
|
|
jl777 (OP)
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
June 23, 2015, 05:32:06 AM |
|
Been coding pretty intensely to create a general framework that allows all the specific usecases that I have thought about to be handled. For people who are complaining of the delays, then I apologize that I am slow to get things completed. It is not from lack of hours though as I have put in about 5000 hours of work in the last 10 months. Maybe I am just a slow coder, or maybe this is not such an easy thing to do. I searched for things I can cut and paste to solve it, but there didnt seem to be any such thing.
However, things are inching toward the Tuesday. The framework described below is in testing with an InstantDEX/MGW/ramchains/Lchains agents and a set of decentralized load balanced servers. I am not doing the GUI or the Windows port or the installer, so I cannot speak to when all that will be done. I do feel that I am bugfixes away from a completed framework and then it will be onto specific agents for the pending usecases, eg. teleport, telepathy, etc.
The following is the basic, simplified explanation. You also need to know about the SuperNET agents described elsewhere as they are what plugs into all of this. ultimately agents will be able to be written in any of a dozen different languages and it wont have to know anything about networking, crypto, blockchains, etc. but it can take advantage of them.
you send in JSON, it returns JSON
this should be the key to understanding now the cgi path has messy HTML handling that is needed to allow browsers/curl/GUI to be able to construct the JSON and push it into the blackbox. From HTML there are all sorts of restrictions so making a single localhost HTML to access two different ports, is actually an issue. the SuperNET cgi allows a single HTML to interface to any number of RPC interfaces in addition to the SuperNET API.
the API is pretty directly invoked via ./BitcoinDarkd SuperNET '{...}'
where the '{...}' is the JSON so you dont have to understand HOW it is doing, but just what. like driving a car so if something is broken, then what does that mean?
either the blackbox is broken (JSON -> return JSON is wrong) or the JSON being pushed into the blackbox is wrong
if that is the case, it could be the cgi glue layer or the GUI let me know if any questions. people often confuse the difficulty of getting it to work with the difficulty of using it
[GUI] <-> (cgi) <-> {API JSON blackbox}
curl bypasses the GUI and injects into the (cgi) ./BitcoinDarkd bypasses the (cgi) and injects into the {API JSON blackbox}
*** advanced stuff follows *** now this {API JSON blackbox} is where the SuperNET agents are the (cgi) actually spawns a new nanomsg connection with a special thread to accept the requests from the cgi, this is fully multithreaded the SuperNET commandline goes through a parser and the BitcoinDarkd path also goes through a bit of processing but they all end up in the same place called process_user_json this processes the user's JSON
now things do indeed get a bit complicated....
I am pushing more and more things through the "busdata" path as that allows for modular authentication, encryption, and other privacy things but it is still possible (not sure if I wont deprecate this) to directly invoke an agent by not having the "busdata" agent specified let us ignore this as I expect to use the busdata for as much as possible as it makes for the same processing whether going out to the network or staying within the local node
the busdata path behaves a bit differently if you are running a relay node or not. if you are not, then it converts the user json into a binary format with whatever authentication that is specified and issues a load balanced call to the relays. one thing to note is that the client can specify a "broadcast":"allrelays" or "allnodes" if it is a relay node, it broadcasts to all relays and then processes the request locally
back to the client path... it ends up at a specific relay node that processes it locally, but if the "broadcast" is specified, then it is broadcast to allrelays or allnodes notice that in the case of "broadcast":"allrelays", this is having the same state as when the originating node was a relay the relays are receiving the busdata packet and if it is an "allrelays" one they process it locally, if it is a "allnodes" global broadcast, they currently ignore it
the reason for this is that for something like InstantDEX where your node wants to broadcast its placebid globally, it just needs to get to all the other nodes and not the relays themselves (assuming the relay node is not used as a normal node), so it is like a "doughnut", with a hole in the middle. "allrelays" sends to the middle and "allnodes" to all nodes, but the middle is probably ignoring it. havent figure out whether it is worth to adding a flag to the global broadcast to tell the relays to process locally
now, this "process locally", you are asking what that means it means to decode the binary data, authenticate it and then route it to the correct place this can be one of several places, plus there are also some control things like registering a service provider
if the {user json} was a request for a specific service provider, then the relay will send the request to a random node that has previously registered and then it waits for the response and then routes the data back to the original node. In the event that the random relay that received the request does not have any registered nodes for that service, it does an allrelays broadcast, in hopes that some other relay has such a service. havent automated the sending back of the response from the failover path back to the original caller yet
keep in mind this is all happening within a second or so if the request is for a specific agent on that node, then it is much simpler and it sends a message to that specific agent, gets the response and sends it back so the above is the simplified explanation of the {API JSON blackbox}
James
|
|
|
|
jl777 (OP)
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
June 23, 2015, 07:00:17 AM |
|
Now the data flow is much more sane, I was able to add Ddos protection pretty quickly.
I use leverage factors of 9, 81 and 729 for local, relay and global requests
you might see a pause for sending placebid/placeask as these are global requests the leverage factor of 729 means it takes 729x CPU power to create a valid packet than to validate it
so with just 10 relay nodes, over 7000 servers will be needed to successfully attack and the attack would just slow things down probably an easier attack is at the relay level, it "only" takes 81x the number of relay servers to saturate the relays, but the peer to peer comms already established wont be affected.
i expect we will start with about 30 relays, so 2000+ attacker CPU's at this level. Since any node can elect to become a relay too, under attack scenarios, more and more nodes can become a relay to make the attack more and more expensive or we can boost the leverage at the cost of higher average latency.
James
|
|
|
|
jl777 (OP)
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
June 25, 2015, 06:56:56 AM |
|
Caught up with buglist, sped up orderbook loading by 10x, support remote servers vi cgi, activated central exchange quotes and trading, enabled automatch and autofill.
I am sure there have to be more bugs than have been reported, but now most all the v1 functionality is enabled. I will work on trading to btc38, MS coins support and stats info calls next
James
|
|
|
|
tyz
Legendary
Offline
Activity: 3360
Merit: 1533
|
|
June 26, 2015, 07:25:56 PM |
|
Looks really awesome and promising Can't wait to test it in live mode once it has started . You can see InstantDEX in realtime and get the feel for it by visiting: www.instantdex.netCheers!
|
|
|
|
jl777 (OP)
Legendary
Offline
Activity: 1176
Merit: 1134
|
|
June 27, 2015, 05:09:44 PM |
|
Apparently my post about SuperNET is offtopic in the SuperNET thread: A reply of yours, quoted below, was deleted by a Bitcoin Forum moderator. Posts are most frequently deleted because they are off-topic, though they can also be deleted for other reasons. In the future, please avoid posting things that need to be deleted. I'd like to know which supernet dev built the cryptocircuits wallet. That has got to be one of the sickest wallets I have ever seen. Whoever you are you did a great job.
Yeah I'd like to know too who thought it would be a good idea to put a web browser inside a wallet. PS. Bob is just trying to pump the coin where he bought into his own ICO. why do people keep linking this cryptocircuits to SuperNET? I have no idea about anything cryptocircuits and SuperNET has nothing to do with it James Rumor has it that a supernet dev is part of the circuits dev team. Dont know how it started or who started it but that's word on the crypto block. Either way, the wallet is sick. It's also not just the webview in the wallet. Its the 1st webview I've seen with audio and video capabilities. It also has a combination of unlocking panels which also unolck a bonus stake, also a 1st in crypto. @illodin Instead of hating maybe you should check it out. Download the wallet, it costs nothing. since anybody can start a rumor without any basis, there have been many projects that claimed some sort of SuperNET involvement without any basis. Even some fairly prominent ones. With almost 800 in the SuperNET community and the stretching of the definition of "dev", it is possible for someone to signup in the SuperNET slack and then create an artificial association. However, I can categorically state that no SuperNET core dev is involved with cryptocircuits. I make no assessment of this cryptocircuits as I havent event looked at it, but if they are actively spreading this sort of rumor, then you can make your own conclusions about this. Why doesnt the cryptocircuits make an official statement about non-involvement of a SuperNET dev? or disclose which person they are claiming is a SuperNET dev. James
|
|
|
|
criptix
Legendary
Offline
Activity: 2464
Merit: 1145
|
|
June 27, 2015, 05:29:19 PM Last edit: June 27, 2015, 05:41:07 PM by criptix |
|
Apparently my post about SuperNET is offtopic in the SuperNET thread: A reply of yours, quoted below, was deleted by a Bitcoin Forum moderator. Posts are most frequently deleted because they are off-topic, though they can also be deleted for other reasons. In the future, please avoid posting things that need to be deleted.
-snip-
I think your post was deleted by accident. The mod was deleting the advertising of our dear bob and probaly deleted yours because you quoted him.
|
|
|
|
yassin54
Legendary
Offline
Activity: 1540
Merit: 1000
|
|
June 27, 2015, 07:24:25 PM |
|
Apparently my post about SuperNET is offtopic in the SuperNET thread: A reply of yours, quoted below, was deleted by a Bitcoin Forum moderator. Posts are most frequently deleted because they are off-topic, though they can also be deleted for other reasons. In the future, please avoid posting things that need to be deleted.
-snip-
I think your post was deleted by accident. The mod was deleting the advertising of our dear bob and probaly deleted yours because you quoted him. When for Forum Decentralized https://sprnt.slack.com/ is very Good
|
|
|
|
BTC-BTC-BTC
Legendary
Offline
Activity: 1582
Merit: 1001
www.neutroncoin.com
|
|
July 05, 2015, 02:02:06 PM |
|
Any update on the official release date on InstantDEX?
|
|
|
|
habraken
|
|
July 05, 2015, 05:14:53 PM |
|
Tuesday.
|
|
|
|
BadAss.Sx
Legendary
Offline
Activity: 1526
Merit: 1002
Bulletproof VPS/VPN/Email @ BadAss.Sx
|
|
July 05, 2015, 05:29:39 PM |
|
Or maybe the other Tuesday
|
|
|
|
visual111
|
|
July 06, 2015, 05:31:13 AM |
|
Any update on the official release date on InstantDEX?
Join the supernet slack and check out the iDex testing channel to get a feel for how far along iDex is. There are some testers in there reporting bugs with jl fixing them as they come in. You can interpret how things are coming along just by hanging out and reviewing the logs every day
|
|
|
|
BTC-BTC-BTC
Legendary
Offline
Activity: 1582
Merit: 1001
www.neutroncoin.com
|
|
July 06, 2015, 05:07:04 PM |
|
Any update on the official release date on InstantDEX?
Join the supernet slack and check out the iDex testing channel to get a feel for how far along iDex is. There are some testers in there reporting bugs with jl fixing them as they come in. You can interpret how things are coming along just by hanging out and reviewing the logs every day Thanks!
|
|
|
|
Jwellington
Newbie
Offline
Activity: 1
Merit: 0
|
|
July 28, 2015, 03:36:23 PM |
|
|
|
|
|
tyz
Legendary
Offline
Activity: 3360
Merit: 1533
|
|
July 28, 2015, 03:42:30 PM |
|
As a big Boolberry holder, I am wondering if Boolberry will still be a part of SuperNET since I did not read anything on the last SuperNET newsletters?
|
|
|
|
|
Bit_Joe
Newbie
Offline
Activity: 51
Merit: 0
|
|
July 31, 2015, 10:37:43 AM |
|
Hi, i'm used to periodic news updates with this project but the recent drought of news as been quite long,
Seems slack is the place to be now but I don't have time to go in there, I'm sure others are the same too.
can someone share some info from slack please?
|
|
|
|
visual111
|
|
August 01, 2015, 02:22:49 AM |
|
Hi, i'm used to periodic news updates with this project but the recent drought of news as been quite long,
Seems slack is the place to be now but I don't have time to go in there, I'm sure others are the same too.
can someone share some info from slack please?
Log into your slack account save password keep the slack address in your favorites you'll get instant updates and can ask questions whenever you want
|
|
|
|
|
flowerpots
|
|
August 12, 2015, 03:33:45 PM |
|
Hi, i'm used to periodic news updates with this project but the recent drought of news as been quite long,
Seems slack is the place to be now but I don't have time to go in there, I'm sure others are the same too.
can someone share some info from slack please?
Log into your slack account save password keep the slack address in your favorites you'll get instant updates and can ask questions whenever you want Or you could check it here, many updates daily: https://forum.thesupernet.org/index.php?board=46.0
|
|
|
|
|