Author

Topic: [ANN] SuperNET NXT asset 12071612744977229797, SUPERNET KMD assetchain in summer - page 109. (Read 736772 times)

legendary
Activity: 1204
Merit: 1000
to your stations, man the pineapples!!!

such dumping UNITY / BTC on bter....
full member
Activity: 127
Merit: 100
30+ hour 'work' days....haha  Grin

All days are the same length but width is different
legendary
Activity: 1176
Merit: 1134
https://github.com/jl777/btcd

I pushed a SuperNET_mac.zip that has a standalone Mac build. It wont automatically connect to the network but should at least function and allow you to manually ping and try out API commands.

Need to unzip into your home directory and also make a SuperNET.conf file, so definitely not user friendly, but a start

James
legendary
Activity: 1176
Merit: 1134
// there is also https access via web browser and curl and wget, so many ways to issue SuperNET API commands

That web layer opens up a great amount of scope.  So people can start making supernet web applications?
yes

curl -k --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "SuperNET", "params": ["{\"requestType\":\"getpeers\"}"]  }' -H 'content-type: text/plain;' https://127.0.0.1:7777/

or just https://127.0.0.1:7777/{"requestType":"getpeers"}

or via RPC through BTCD

they all end up in the same place, just different paths

The SuperNET GUI is HTML5 app

sr. member
Activity: 294
Merit: 250
Bitmark Developer
// there is also https access via web browser and curl and wget, so many ways to issue SuperNET API commands

That web layer opens up a great amount of scope.  So people can start making supernet web applications?
legendary
Activity: 1176
Merit: 1134
30+ hour 'work' days....haha  Grin
you dont believe me?
check github:

https://github.com/jl777/btcd/graphs/commit-activity
https://github.com/jl777/libjl777/graphs/commit-activity

200 commits over two days, debugging is work

That's because James has Teleport working. He can go back in time and double his work effort. Surprised he's not doing 48+ hour work days. Wink
i just ignore the clock and stay up for 30+ hrs and then sleep until I wake up. After first 30 hrs I slept for 14 hrs, but after the second 30+ hrs, only 4 hrs. debugging is work, but second half was mostly fiddling, not very strenuous thinking

So I had 2 "days", but in the real world 3 days went by

sr. member
Activity: 308
Merit: 250
truth=(true?true:false);
30+ hour 'work' days....haha  Grin
you dont believe me?
check github:

https://github.com/jl777/btcd/graphs/commit-activity
https://github.com/jl777/libjl777/graphs/commit-activity

200 commits over two days, debugging is work

That's because James has Teleport working. He can go back in time and double his work effort. Surprised he's not doing 48+ hour work days. Wink
legendary
Activity: 1176
Merit: 1134
sr. member
Activity: 280
Merit: 250
30+ hour 'work' days....haha  Grin
legendary
Activity: 3486
Merit: 1126
Well, after back to back 30+ hour work "days", I got the new architecture pretty stable. Still some kinks, but for the most part working.

New commands:
{ "BTCDjson", "json" } // this supports sending SuperNET API commands
// there is also https access via web browser and curl and wget, so many ways to issue SuperNET API commands

{ "gotpacket", "msg", "dur", "ip_port" } // this is called when the BTCD gets a packet from one of its peers
{ "gotnewpeer", "ip_port" } // this is called when a new peer is discovered
{ "BTCDpoll" } // this mechanism is used to find out when the SuperNET wants to broadcast or narrowcast packets

{ "maketelepods", "amount", "coin" } // this creates telepods, must be multiples of 0.01
{ "telepodacct", "amount", "contact", "coin", "comment", "cmd", "withdraw" } // this command displays the current set of unspent telepods, either globally, by coin, by contact. also will support withdrawing telepods to a normal address and also create credit/debit journal entries. However, only the display of all the unspent telepods has been tested

Existing commands that at least worked in some cases.
   // Telepathy
    static char *getpeers[] = { (char *)getpeers_func, "getpeers", "V",  "scan", 0 };
    static char *addcontact[] = { (char *)addcontact_func, "addcontact", "V",  "handle", "acct", 0 };
    static char *removecontact[] = { (char *)removecontact_func, "removecontact", "V",  "contact", 0 };
    static char *dispcontact[] = { (char *)dispcontact_func, "dispcontact", "V",  "contact", 0 };
    static char *telepathy[] = { (char *)telepathy_func, "telepathy", "V",  "contact", "id", "type", "attach", 0 };
    static char *getdb[] = { (char *)getdb_func, "getdb", "V",  "contact", "id", "key", "dir", 0 };

    // Kademlia DHT
    static char *ping[] = { (char *)ping_func, "ping", "V", "pubkey", "ipaddr", "port", "destip", 0 };
    static char *pong[] = { (char *)pong_func, "pong", "V", "pubkey", "ipaddr", "port", 0 };
    static char *store[] = { (char *)store_func, "store", "V", "pubkey", "key", "name", "data", 0 };
    static char *findvalue[] = { (char *)findvalue_func, "findvalue", "V", "pubkey", "key", "name", "data", 0 };
    static char *findnode[] = { (char *)findnode_func, "findnode", "V", "pubkey", "key", "name", "data", 0 };
 
    // MofNfs
    static char *savefile[] = { (char *)savefile_func, "savefile", "V", "filename", "L", "M", "N", "backup", "password", "pin", 0 };
    static char *restorefile[] = { (char *)restorefile_func, "restorefile", "V", "filename", "L", "M", "N", "backup", "password", "destfile", "sharenrs", "txids", "pin", 0 };


As you can see quite a few API's are ready to test

James

nice work james!
legendary
Activity: 1176
Merit: 1134
Well, after back to back 30+ hour work "days", I got the new architecture pretty stable. Still some kinks, but for the most part working.

New commands:
{ "BTCDjson", "json" } // this supports sending SuperNET API commands
// there is also https access via web browser and curl and wget, so many ways to issue SuperNET API commands

{ "gotpacket", "msg", "dur", "ip_port" } // this is called when the BTCD gets a packet from one of its peers
{ "gotnewpeer", "ip_port" } // this is called when a new peer is discovered
{ "BTCDpoll" } // this mechanism is used to find out when the SuperNET wants to broadcast or narrowcast packets

{ "maketelepods", "amount", "coin" } // this creates telepods, must be multiples of 0.01
{ "telepodacct", "amount", "contact", "coin", "comment", "cmd", "withdraw" } // this command displays the current set of unspent telepods, either globally, by coin, by contact. also will support withdrawing telepods to a normal address and also create credit/debit journal entries. However, only the display of all the unspent telepods has been tested

Existing commands that at least worked in some cases.
   // Telepathy
    static char *getpeers[] = { (char *)getpeers_func, "getpeers", "V",  "scan", 0 };
    static char *addcontact[] = { (char *)addcontact_func, "addcontact", "V",  "handle", "acct", 0 };
    static char *removecontact[] = { (char *)removecontact_func, "removecontact", "V",  "contact", 0 };
    static char *dispcontact[] = { (char *)dispcontact_func, "dispcontact", "V",  "contact", 0 };
    static char *telepathy[] = { (char *)telepathy_func, "telepathy", "V",  "contact", "id", "type", "attach", 0 };
    static char *getdb[] = { (char *)getdb_func, "getdb", "V",  "contact", "id", "key", "dir", 0 };

    // Kademlia DHT
    static char *ping[] = { (char *)ping_func, "ping", "V", "pubkey", "ipaddr", "port", "destip", 0 };
    static char *pong[] = { (char *)pong_func, "pong", "V", "pubkey", "ipaddr", "port", 0 };
    static char *store[] = { (char *)store_func, "store", "V", "pubkey", "key", "name", "data", 0 };
    static char *findvalue[] = { (char *)findvalue_func, "findvalue", "V", "pubkey", "key", "name", "data", 0 };
    static char *findnode[] = { (char *)findnode_func, "findnode", "V", "pubkey", "key", "name", "data", 0 };
 
    // MofNfs
    static char *savefile[] = { (char *)savefile_func, "savefile", "V", "filename", "L", "M", "N", "backup", "password", "pin", 0 };
    static char *restorefile[] = { (char *)restorefile_func, "restorefile", "V", "filename", "L", "M", "N", "backup", "password", "destfile", "sharenrs", "txids", "pin", 0 };


As you can see quite a few API's are ready to test

James
hero member
Activity: 490
Merit: 504
a little publicity about Neodice and how it was distributed to Supernet holders Cheesy http://www.coinssource.com/a-growing-trend-games-and-digital-currencies/ Smiley
legendary
Activity: 3486
Merit: 1126
SuperNET mentioned in this article discussing crypto assets/dividend.

https://bitscan.com/articles/whats-in-a-dividend

Cheers!
sr. member
Activity: 438
Merit: 250
Development progress over the network
sr. member
Activity: 742
Merit: 251
  SuperNET Radio Network (SNRN)
SNRN “Flagship” Station supernetradio.com  Ninja launched afew hours ago. At an appropriate time complete details on SuperNET Radio Network (SNRN) will be available at supernetradio.net .
   “Getting the Word Out” to the entire crypto-universe about the latest happenings, coins, and innovation is what “promotion” is all about. But in the FUD filled climate currently present it’s just as important to stay connected with the community to counter the negative influences of scammers, cons, and thieves all too apparent in crypto marketplaces.
   Building a “Promo, Fud-fighting, educational” infrastructure is no small undertaking. With Dev’s needing to continue with “Developing” and enhancing their product, precious coding time is wasted countering the above mentioned activities. SNRN enables and streamlines the ability to contend with these issues.


SNRN will provide each S/N coin and entity (Affiliates) with a Website, uniquely “Branded” to them individually. All sites will have radio broadcasting enabled, access to “On Demand” archived SNRN programming, an “Anon Unity Chat” IRC window, and Crowd Funding capability. By reducing the budgetary pressures of building and maintaining an array of promotional tools members can concentrate on creating content and actively promoting. SNRN basically provides all the tools needed to “Get the Word Out” by jump starting the promotion process.  Any other services such as Forums can be implemented upon request.

Affilate productions will be scheduled into the 24/7 stream of  “Flagship” Station supernetradio.com producing, for SuperNet/UNITY, the consistency of around the clock exposue while alleviating affilates from having to produce the volume of content to be effective in promotional ventures.

Lootzs’ philosophy for building websites is “Functionality First! Then we’ll make it pretty.” In lieu of the simplistic, omnipresent “Word Press” Lootz creates in “Joomla” a startlingly, powerful piece of software. The planned for from inception of an algorithm utilising “Multiplicative Dynamic, Cross Platform, Stacking Efficiencies  accentuated by cutting edge SEO techniques” turbocharge conventional sources of revenue and has been realised.


Particulars, Fee Schedules, Revenue Streams and Dividend Sharing details will be provided on supernetradio.net . Direct inquires can be sent to [email protected]

For the present I’ll be doing a LIVE! Broadcast @ 10 AM EST M-F and  past shows, interviews, and music will be streaming 24/7.
legendary
Activity: 1008
Merit: 1000
Making money since I was in the womb! @emc2whale
Looks that james is going to baghold most of his own assets soon  Smiley

LOL, seems to be the case! And I assume most of the scamnet money will flow into BlockNet and hopefully some into BitSwift as well.



stealthcoin 1 trillion satoshi am i right  Cheesy Kiss

I dont know about all that, but it is a sick coin that's still undervalued. Check out the video they just dropped... https://www.youtube.com/watch?v=xJMszR6ttYc&feature=youtu.be

It's pretty sick if you ask me, and with Swift being added to the BlockNet I can only imagine that the price will rise substantially.
legendary
Activity: 2464
Merit: 1145
Looks that james is going to baghold most of his own assets soon  Smiley

LOL, seems to be the case! And I assume most of the scamnet money will flow into BlockNet and hopefully some into BitSwift as well.



stealthcoin 1 trillion satoshi am i right  Cheesy Kiss
legendary
Activity: 1008
Merit: 1000
Making money since I was in the womb! @emc2whale
Looks that james is going to baghold most of his own assets soon  Smiley

LOL, seems to be the case! And I assume most of the scamnet money will flow into BlockNet and hopefully some into BitSwift as well.

sr. member
Activity: 252
Merit: 250
Looks that james is going to baghold most of his own assets soon  Smiley
legendary
Activity: 826
Merit: 1000
amarha
Price it´s still going down, this is dead. Thanks, another shit scam ico coin where i lose money.

The only thing which is dead are your thoughts. You didn't invested, you just wanted a quick buck for nothing. UNITY isn't a quick p&d scam coin like 98% is...it is a long term stock. You only need to invest in this if you have faith in it for the upcoming future of crypto.

You just wanted to earn some money and don't give a damn about the whole SuperNET. In that case you invested wrong.

long term 'stock'. thats funny. no revenues etc and a market cap of "3 million."

what goes up must come down.


Go up and come down? You realize that the asset is backed by all the money and other assets put in to it right? This isn't some random altcoin making a bunch of promises. It's an decentralised organization with transparent finances.

There are already multiple revenue generating projects started anyway, both in media and the gaming sector. That's in addition to the fees and such that will be gained from users of superNET.

sure man. there are no revenues to support a multi-million dollar market cap. the price is doing what it should be now....it's shrinking.... altcoin users hate expensive 'fees' so its doubtful there will be any significant revenue coming any time soon.

If paying a small fee means being able to use the most advanced combination of anonymity tech in crypto, then I doubt a small fee is going to stop someone who values their privacy.
Jump to: