Bitcoin Forum
April 25, 2024, 07:47:53 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 ... 200 »
  Print  
Author Topic: [SKY] Skycoin Launch Announcement  (Read 381508 times)
td services
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


black swan hunter


View Profile
January 27, 2016, 06:18:46 PM
 #2241

This looks a lot like Skycoin's approach to mesh networking, Delay and Disruption Tolerant Networking, http://ipnsig.org/introducing-delay-disruption-tolerant-networking-dtn/ . The JPL animation shows the ideas behind store and forward packet routing and custodial data transfer between nodes. There is also a good introductory tutorial on the pdf link near the bottom of the page.
1714031273
Hero Member
*
Offline Offline

Posts: 1714031273

View Profile Personal Message (Offline)

Ignore
1714031273
Reply with quote  #2

1714031273
Report to moderator
1714031273
Hero Member
*
Offline Offline

Posts: 1714031273

View Profile Personal Message (Offline)

Ignore
1714031273
Reply with quote  #2

1714031273
Report to moderator
1714031273
Hero Member
*
Offline Offline

Posts: 1714031273

View Profile Personal Message (Offline)

Ignore
1714031273
Reply with quote  #2

1714031273
Report to moderator
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
January 29, 2016, 02:42:24 AM
 #2242

seems skycoin almost ready..
skycoin (OP)
Hero Member
*****
Offline Offline

Activity: 498
Merit: 500


View Profile WWW
January 30, 2016, 09:04:44 PM
 #2243

Update:

The interface is just being done in angular for now. The new angular is much cleaner.

However, npm is dumping the compiled javascript files in the same directory as the type script files, which is ugly and frustrating. I have not found the setting for setting the output directory yet.

Math Update:

I found a simple message passing algorithm that finds all nodes in the network that are not in consensus with the current node, with ~log N messages in the size of the network).

This is VERY important and a major breakthrough for verifying consensus.

- Nodes currently broadcast their state, to nodes that they are connected to (information about a single node's state)
- It is possible to publish meta-information that summarizes state state of the nodes that a particular node is connected to ("surveys")
- It is possible to do gradient decent on the surveys, for some types of messages to find the nodes that have forked blocks or to verify that no such nodes exists

A simple gossip protocol works as follows
- when a nodes gets a new message, it hashes it and announces the hash of the message to every peer it is connected to
- if a piece receives a hash announcement, it checks if it has the data for that hash and if not, it downloads that data from a peer that has announced the hash

This simple protocol guarantees replication of every message across every node on the network

"Gossip with counting" is as follows
- a node announces a data item, which has a counter
- the data item is re-announced periodically
- each node sets a "count" value that it attaches to the data item, the count value is the minimum of the count values of the nodes it is connected to, plus one
- the node that announced the message has count 0

If you get a count value of 7, it means the minimum path between you and the announcer is 7 hops.

In this "gossip with counting", if the nodes are honest, you can do gradient decent
- you look at all the nodes you are connected to
- you "Decent" by asking the node announcing the lowest count value and then ask him, who his peer with the lowest counter value is
- you keep doing this recursively until you reach the sender
- if you fail at a certain step, you backtrack with depth first on the next lowest count for the current node, etc
- if you see a node whose does not have a node whose announced, count value which is lower than the account value that node has announced, then the node is lying/cheating

It is even better, if the data in the gossip with counting, session is in a public broadcast file like IPFS, so that it has replication and peer-to-peer verification and does not depend on direct communication with the node for verification and replication.

There are several places for these algorithms
- there is an algorithm, that can find any node that is not in consensus in the network by starting a "gossip with counting" session
- another use is it may be an alternative to mining for consensus.

We previously showed that mining can be eliminated if there was a trusted time stamp authority (a single trusted node, that time stamps blocks). We also showed that consensus is more generally, the problem of assigning a total ordering to the blocks (if there is a split, or two options, the problem of resolving the two choices deterministicly).

You can simulate a shared clock between the nodes as follows
- when each node receives a block, it timestamps it (64 bit time) and signs HASH(timestamp+block)
- each node stores for each of its connections
-- the timestamp (and signature) that the node claims to have first received the block
-- the timestamp the current node, first heard the announcement of the time that the node claimed to have first received the time stamp

IF the clocks are synchronized, then the time another node claims to have first receive the block, will always be less than the time the notification of receipt was time-stamped by its peers.

What happens if someone injects a block 5 minutes later, that did not exist 5 minutes ago and attempts to fork the chain? What operations can your node to show that the block did not exist and should be rejected?

There are more complicated versions
- two stage time stamp commit protocols, where you announce a candidate time stamp (or range which narrows each round)
- then you must choose a time stamp, that is not less than 30% of the lowests time stamps of the people you are following

Mathematical Representations of Distributed Systems

I finally have a good mathematical model, that is very simple, which has simple algebraic properties that can be reasoned about and which is executable for simulation.

- C like (functions, structs)
- two data types (int32, char[])
- all operations are deterministic
- the operation of running the program or one line is f (so f*f*f would be stepping forward three lines)
- if program state S is idempotent under f (if f*S = S, then the program is stalled or there is nothing for it to do)
- there is an operator, that applies f on the context (the state of the program S), until it is idempotent
- all communication between the programs is length prefixed messages (program receives and emits length prefixed byte arrays, CSP)
- there is an operator s that injects a "Signal" (a length prefixed message)
- structs have a canonical serialization and reflection (so that they can be used for data apis)
- there is a "universe" which is just a struct/data object containing other computers. So you can spawn five computers, then top level computer can read out the length prefixed messages and pass them between the computers. A program run looks like f*f*f*f*s(...)*f*f*f*... and you can derive partial orderings on the program state, across different delivery orders for the signals..
- a computer, its state is called a "Context" and can be serialized/deserialized
- there are functions OF a struct and functions ON a struct (or operators).  A function of a struct is functional but does not change its state and is a property, or descriptive, while a function on a struct, entails a state change. (this is not very important, except for keeping track of algebraic properties of function application)
- there is a meta-operator for creating new operators
- the program is itself a software object (this is most important thing from mathematical perspective and simplicity, but means the program is no longer a text file, but a program object that operations are applied to)

This sounds very boring and would not seem to have any avantages over C or golang, however it simplies
- the skycoin blockchain
- the consensus algorithm
- the meshnet
- the exchange
- simulating interacting components
- unit testing algebraic properties and behaviors of systems of interacting components

Especially for simulation.

For unit testings, I have to
- spawn N computers under one universe (a context running a universe)
- setup initial state (give them program)
- each at the top level, shuffle the order of the packets and choose one packet (length prefixed message to deliver)
- run until each computer in the universe is in an idempotent state (until it halts)
- serialize state of top level computer to a []char and hash it, also write down how many packets/cycles it took

Now
- run this for 1024 runs
- show that the end state is the same for all orderings of the packets (that the hashes match)

- graph the number of packets, bandwidth, linear time required, under different network topologies and a function of number of nodes

I need to be able to spawn a whole network, run it and then crunch it down to a few numbers or a graph.

Both Bitcoin and Skycoin and the meshnet are cooperative multi-agent systems.
- P2P like bitorrent and Bitcoin is the boring case where every agent is the same, passing same messages
- the Skycoin meshnet has to deal with computers, controlling computers and networks of computers engaging in cooperative, competitive and coordinated action to solve optimization tasks across the network and accomplish goal.

The meshnet nodes are not just calling data APIs on each each, but need to communicate in both data and programs.



If you have a metric that you can measure or a goal, and you have multiple programs or methods for accomplishing that goal, the program will be able to evaluate the scripts and choose the best or most effective one. It will also be able to do this at the system level and the system of system of level because the description of the programming language is closed under reification.

td services
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


black swan hunter


View Profile
January 31, 2016, 05:46:19 AM
 #2244

Thanks for the reply.

My work has been focused on promoting an alternative economy with decentralized money, mesh networking, p2p autonomous transport, and technologies for personal and local community production for the reasons you mention above.

Many needs can be met by just using energy to extract water and CO2 from air, combining with trace elements to synthesize hydrocarbons, fabricating into food and recyclable goods, and recycling all waste to recover the energy and basic feedstocks to go back into the synthesizer to repeat the cycle. Every time I take garbage to the curb or flush the toilet, I'm throwing away money.

In the mean time, while this is being developed, there are more conventional technologies for self and community self sufficiency. Walden Labs, http://waldenlabs.com/ , has a lot of info on these kinds of technologies, which can be simplified and reduced in form factor for widespread adoption.

Eliminating much of the need for money with technology along with decentralizing the money severs the ability to control by those who control the money. There is a very interesting convergence of libertarianism and Marxism happening as a result of technologies of abundance, the difference from Marxism being that the means of production are owned by everybody instead of by any particular socioeconomic class.
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 02, 2016, 03:12:42 AM
 #2245

great work.
skycoin (OP)
Hero Member
*****
Offline Offline

Activity: 498
Merit: 500


View Profile WWW
February 02, 2016, 07:51:47 AM
 #2246

Update:

Meshnet adaption is growing. The hardware problems are solved.

https://i.imgur.com/FI0EnT6.png

https://motherboard.vice.com/read/how-a-diy-network-plans-to-subvert-time-warner-cables-nyc-internet-monopoly
http://www.shareable.net/blog/sarantaporo-residents-create-commons-in-rural-greece-through-a-diy-wireless-mesh-network

For Skycoin
- finish exchange architecture (mostly boiler plate)
- get meshnet routing algorithm working (there is some R&D here)
- wrap a VPN frontend and then get it working on OSX and Windows

The angular 2.0 compilation/gulp setup is done and will use this as a pseudo terminal for now. I think this will be satisfactory for the interface.

houlala1
Full Member
***
Offline Offline

Activity: 179
Merit: 100


View Profile
February 06, 2016, 02:55:27 AM
 #2247

Cannot wait more  Cry
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 09, 2016, 07:58:58 AM
 #2248

Update:

Meshnet adaption is growing. The hardware problems are solved.

https://i.imgur.com/FI0EnT6.png

https://motherboard.vice.com/read/how-a-diy-network-plans-to-subvert-time-warner-cables-nyc-internet-monopoly
http://www.shareable.net/blog/sarantaporo-residents-create-commons-in-rural-greece-through-a-diy-wireless-mesh-network

For Skycoin
- finish exchange architecture (mostly boiler plate)
- get meshnet routing algorithm working (there is some R&D here)
- wrap a VPN frontend and then get it working on OSX and Windows

The angular 2.0 compilation/gulp setup is done and will use this as a pseudo terminal for now. I think this will be satisfactory for the interface.

thanks for the updates..

altcoinUK
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


View Profile
February 09, 2016, 10:20:33 AM
 #2249

Having a solution in relation to the mesh network concept could be a viable business proposition. I have been saying for a while, as the government around the world are getting more and more desperate to control the society, mesh networks will address many problems and could be very important initiative.

dadingsda
Legendary
*
Offline Offline

Activity: 1310
Merit: 1000


View Profile
February 09, 2016, 01:50:16 PM
 #2250

Is it still possible to buy coins via bitmessage on page 1?

INVALID BBCODE: close of unopened tag in table (1)
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 09, 2016, 05:08:41 PM
 #2251

Is it still possible to buy coins via bitmessage on page 1?

i think so
Momimaus
Hero Member
*****
Offline Offline

Activity: 767
Merit: 500

Never back down !!!


View Profile
February 09, 2016, 10:53:50 PM
 #2252

Is it still possible to buy coins via bitmessage on page 1?

I don´t think so, but you can pm me your offer. I would sell some.

CoinTracking.info - Your personal Profit / Loss Portfolio Monitor and Tax Tool for all Digital Coins
CoinTracking is analyzing all your trades and generates in real time tons of useful information such as the profit / loss of your trades, your balances, realized and unrealized gains, reports for tax declaration and many more. For Bitcoin and over 3000 altcoins, assets and commodities.
Get 10% discount for all packages or create your own affiliate link to get 20% for every sale.
dadingsda
Legendary
*
Offline Offline

Activity: 1310
Merit: 1000


View Profile
February 10, 2016, 05:53:17 PM
 #2253

1 Yes , 1 No

@skycoin explain, please.

INVALID BBCODE: close of unopened tag in table (1)
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 15, 2016, 06:42:29 AM
 #2254

1 Yes , 1 No

@skycoin explain, please.

you can send him a PM
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
February 15, 2016, 08:46:02 PM
 #2255



Can I have some of these Skycoins for free?



provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 15, 2016, 10:42:20 PM
 #2256



Can I have some of these Skycoins for free?




no
chompyZ
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250


View Profile
February 16, 2016, 05:14:08 AM
 #2257



Can I have some of these Skycoins for free?




yes.
when the exchange is live, I plan to establish a faucet.
i'd send you now, but it's deep cold.
SyRenity
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
February 16, 2016, 05:26:34 AM
 #2258

when the exchange is live, I plan to establish a faucet.

I'll gladly help on this, this tech needs more exposure.
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
February 16, 2016, 06:24:47 AM
 #2259



What people seem to be doing now is creating XCP assets for future coins that don't exist yet. That way you can trade Skycoins today as XCP assets. The asset then gets changed into Skycoins once it launches.



chompyZ
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250


View Profile
February 16, 2016, 07:03:36 AM
 #2260



What people seem to be doing now is creating XCP assets for future coins that don't exist yet. That way you can trade Skycoins today as XCP assets. The asset then gets changed into Skycoins once it launches.




AFAIK-
a. skycoins already exist. they simply aren't traded on any centralized exchange.
b. creating XCP tokens that represent skycoins is easy. but you have to take the creator's word that they will be exchanged to skycoins when the time comes. If you trust, you risk.
c. if bitcoin means your assets are not subject to any 3rd party control/ politics [arguable...], skycoin means transactions are not subject to any infrastructure/ hardware control/ politics.
Pages: « 1 ... 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 ... 200 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!