Bitcoin Forum
May 26, 2024, 07:47:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 »
521  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 26, 2016, 10:18:40 AM
7.31 BTC buy support at 21 satoshi on C-Cex  Smiley
522  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [GEO] GeoCoin | GIS & GeoTechnologies on: September 26, 2016, 10:12:43 AM
Nice to see that price is stable  Smiley
523  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 10:08:30 PM
I'm looking to the future with brand new eyes!



I'm hypnotized  Cheesy
524  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 10:07:11 PM
I just know examples from real life. I learned from them.
525  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 10:05:00 PM


Right Soulgate?

Right Balvio.
526  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 09:19:53 PM
VTA is always in top by Trading Volume on Bleutrade. All other exchanges lose the money due don't listed VirtaCoin.  I don't understand why VTA still not o Bittrex and Poloniex. Okey, I understand that VirtaCoin have some problems with network speed, but it's just time question.  VirtaCoin have the most powerful community ever someone seen. We can solve every problem, we move VirtaCoin forward day by day.    Time is money .  Adopt, accept VTA or you will lose the money !
527  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [JBS] Jumbucks - No IPO/ICO - Proof of Stake - Slack - DCR Stake Pool - 1+ Years on: September 25, 2016, 05:02:04 PM
Exponentially Subjective Scoring & Entering the final phases for Launch

So here's something I alluded to in a previous post. I wanted to take a look at eliminating the possibility of a long range re-org attack on the chain as this has been observed in other Ethereum forks.  Ultimately the best security for proof of work is having "sufficient" hash rate such that such an attack reaches the point of "not being feasible." The first idea I had for this was setting a limit on re-org depth, say 1 day. This solution on the surface seemed simple.. a little too simple so I sent Vitalik an email to see if he had any thoughts.

Here is Vitalik's reply:

Quote
The problem with limiting reorg depth to 1 day is that there's an attack vector where someone does a 51% attack that some nodes will see as being 1 day - 1 second and some nodes will see as being 1 day + 1 second, leading to a permanent split. One approach that could work is what I call "exponentially subjective scoring", which is defined as follows:

* Suppose that you are on a chain with score S1 (score = total difficulty). Suppose that there appears a new longer chain.
* Compute the "common ancestor" of the two chains; say that this ancestor has a score of S_a.
* Switch to the new chain only if (S2 - S_a) / (S1 - S_a) > 1.0001 ** (number of seconds between when S1 was received and when S2 was received)

The intention here is that you have a scoring mechanism which prevents long reorgs, as a reorg from one day ago would be penalized by a factor of 5650, but at the same time is friendly to timing discrepancies between nodes as if two nodes saw some block even one minute away then the chains would need to be almost exactly the same length for nodes to disagree as to the correct head of the chain.

I'd actually be quite excited to see this kind of mechanism tried out in a chain.

Exponentially Subjective Scoring is also further mentioned in this article that Vitalik wrote November 2014 - https://blog.ethereum.org/2014/11/25/proof-stake-learned-love-weak-subjectivity/

I'm pleased to say that I have coded this up and it works great. Here are some log lines which demonstrate this. ESS is basically another check which decides whether or not a re-org should take place.

Code:
I0924 00:59:07.674562 core/blockchain.go:797] == BlockChain exponentialSubjectiveScoring ==
I0924 00:59:07.674702 core/blockchain.go:800] ESS currentTime: 1474714747
I0924 00:59:07.674829 core/blockchain.go:814] ESS ptd (S_a): 1723872944000
I0924 00:59:07.675027 core/blockchain.go:822] oldBlock (S1) number: 14255
I0924 00:59:07.675169 core/blockchain.go:823] oldBlock (S1) difficulty:16380851
I0924 00:59:07.675350 core/blockchain.go:824] oldBlock (S1) Td:1723889324851
I0924 00:59:07.675471 core/blockchain.go:825] oldBlock (S1) time:1474714358
I0924 00:59:07.675637 core/blockchain.go:827] newBlock (S2) number:14256
I0924 00:59:07.675797 core/blockchain.go:828] newBlock (S2) difficulty:16345471
I0924 00:59:07.675972 core/blockchain.go:829] newBlock (S2) Td:1723905670322
I0924 00:59:07.676108 core/blockchain.go:830] newBlock (S2) time:1474714417
c:  1.9978401610514618
d: 1.0396644897858596
ESS Reorg
I0924 00:59:07.676607 core/blockchain.go:902] WriteBlock calling reorg
I0924 00:59:07.676730 core/blockchain.go:1096] == BlockChain reorg ==

The above lines are additional debug lines which I which are from a live test I did on the Testnet.  It's slightly confusing so here is a re-written version in Go which outlines the function using the exact figures from above.

Code:
package main

import (
"fmt"
"math"
"math/big"
)

func main() {

now := big.NewInt(1474714747)
S_a := big.NewInt(1723872944000)
S1 := big.NewInt(1723889324851)
S2 := big.NewInt(1723905670322)
S1_time := big.NewInt(1474714358)

// (S2 - S_a) / (S1 - S_a)
a := new(big.Int)
b := new(big.Int)
a.Sub(S2, S_a)
b.Sub(S1, S_a)
c := float64(a.Uint64()) / float64(b.Uint64())
fmt.Println("c: ", c)

// 1.0001 ** (now - S1_time)
d := math.Pow(1.0001, float64(now.Uint64())-float64(S1_time.Uint64()))
fmt.Println("d:", d)

// Comparison
if c > d {
fmt.Println("Reorg")
} else {
fmt.Println("No reorg")
}
}

The output is as follows.

Code:
c:  1.9978401610514618
d: 1.0396644897858596
Reorg

This code change actually took a bit longer as it required a lot of testing and learning how Ethereum handles new blocks being processed and the different scenarios. i.e. had to run through a lot of the following cases:

1 new block comes in
2 new blocks come in
3+ new blocks come in
1 new mined block pushed out the network
2 new mined blocks pushed out to the network
3+ new mined blocks pushed out the network

So most of the work was actually figuring out how block processing works and testing the scenarios and thinking more about "when should this be checked?" and further thinking of other cases where it could go wrong.


So just to re-cap JBSEE will come out with 2 new consensus level changes.  These are:

Exponentially Subjective Scoring - A deterministic scoring system when comparing two chains. The longer the reorg, the higher penalization, and the less likely the new chain will become the main chain. It is more expensive to attack a well publicized good chain.

Rewritten difficulty algorithm based on Digibyte's Digishield V3 - Difficulty algorithm that is battle tested on numerous coins and is far better suited to longer block times and fluctuations in hash rate.

It is also worth noting that no other Ethereum fork has the level of new code and consensus changes that the JBSEE network will have.


Here are the priority items in the next few weeks. It is a tight deadline but we are aiming for a launch of the network before October 11th next month.

Launch of new coin

All the technical details set and we are co-ordinating with exchanges.

PRE-ANN thread

The details are being written up. This will be up shortly.

Swap system

This has been outlined in a previous post and will again be outlined in the PRE-ANN. The sites for a non-exchange swap are being completed.

Code modifications

These are complete for the launch. We are also thinking of paying a Geth dev to code review the new code changes I have made just to have another pair of eyes go through the code.

Logo and branding

The new logo and name has been chosen.


Thank you. Bought more of this good coin Smiley
528  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 04:48:18 PM
Dev what is happening with blockchain, there are a lot of time between blocks, are you going to make some action about it?

We are planing to move price up and get more miners.
529  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: September 25, 2016, 03:50:01 PM
Nice to see small price recovering  Smiley But I don't worry, just holding. It's good coin.  
530  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 03:31:00 PM
Don't play with a long-range currency

531  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 03:11:36 PM
https://coincurrencynews.com/
VTC – VirtaCoin has made some impressive gains over the past couple days, moving upwards of 20 Satoshi, from 12 Satoshi earlier in the week. Will it continue it’s bullish activities or dip back down again?
Coincurrency News is proud to start accepting VirtaCoin, our preferred coin of choice! We are working to develop this coin on small economies of scale in Africa, and hope to develop a small-business model around a use-case scenario in farming where migrant workers and underpaid labourers can earn a small income to play the long-term investment ratio potential developed by the Virta Coin Fund Developers initial fund startups.
 It is no wonder early adopters are getting rich using VTA because so many professional developers, architects, and engineers have created a system that works for the people, and besides getting rich, it actually works as a good system for local economies since everyone know that being “rich” is a relative term. Smiley Smiley

It's a shame about "VTC – VirtaCoin" .  VirtaCoin symbol is VTA
532  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 02:47:11 PM
https://coincurrencynews.com/
VTC – VirtaCoin has made some impressive gains over the past couple days, moving upwards of 20 Satoshi, from 12 Satoshi earlier in the week. Will it continue it’s bullish activities or dip back down again?
Coincurrency News is proud to start accepting VirtaCoin, our preferred coin of choice! We are working to develop this coin on small economies of scale in Africa, and hope to develop a small-business model around a use-case scenario in farming where migrant workers and underpaid labourers can earn a small income to play the long-term investment ratio potential developed by the Virta Coin Fund Developers initial fund startups.
 It is no wonder early adopters are getting rich using VTA because so many professional developers, architects, and engineers have created a system that works for the people, and besides getting rich, it actually works as a good system for local economies since everyone know that being “rich” is a relative term. Smiley Smiley

And finally someone going to adopt VTA  Smiley
533  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 25, 2016, 01:09:35 AM


Keep in mind the three things:

1. Keep Emotions Out of the Way
2. Think Long Term
3. Top up on market panics


... and remember Warren Buffet’s sage advice “Buy when everyone else is fearful and sell when everyone else is greedy”. It's time to buy Wink

Now it's my favorite post from you. Text so attractive and truthful. And I laughed for a long time on the picture Cheesy VirtaCoin tree is so powerful when it's flying  out from the  ground.  Cheesy It's better then the rocket.

VirtaCoin is out from canal and it's time to BUY more!



VirtaCoin graph is very similar to your image
534  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Unbreakablecoin (UNB) | SHA256 - Over 3x Bigger then Bitcoin | No Premine on: September 24, 2016, 01:11:06 PM
This market will be removed on Friday, September 30th 2016. The blockchain is no longer operational. If you would like to keep the market listed, please encourage the development team to contact us at support@bittrex.com.
535  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Exclusive Coin EXCL - MasterNodes Guide, Bittrex Trading, Pump Bot & More! on: September 24, 2016, 01:07:40 PM
 This market is in danger of de-listing due to low trade volume and lack of user interest. It may be removed on Friday, September 30th 2016 unless the average daily trade volume for the last 7 days exceeds 0.2 BTC. If you would like to keep the market listed, please encourage the development team to contact us at support@bittrex.com.
536  Other / Archival / Re: VTA™➔ Local Market➔Escrow➔Withdraw to Bank Account➔Online Stores and Rewards🌛 on: September 24, 2016, 12:37:55 PM
Today 10 btc volume only on C-Cex. This is encouraging... I love it!!!  Shocked



Yes, I also watching. The price is going to 30 satoshi.  And now 11.09 BTC volume  Smiley 
537  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN][CRBIT] Creditbit Hybrid POS/POW | x11 | 1min blocks | 100M CRBIT on: September 24, 2016, 04:20:26 AM
I don't received replies.  Sorry,  I sold my coins with 100% profit.
538  Other / Archival / Re: ✪ VTA Local Market•Escrow•Withdraw to Bank Account•Online Stores and Rewards ✪ on: September 23, 2016, 08:02:43 AM
Where are all the great VTA Miner's?
No block for the past 15hrs now!
What's going on?

It seems that miners heard you  Cheesy



539  Other / Archival / Re: ✪ VTA Local Market•Escrow•Withdraw to Bank Account•Online Stores and Rewards ✪ on: September 23, 2016, 07:39:36 AM
Where are all the great VTA Miner's?
No block for the past 15hrs now!
What's going on?


Here:



But price is rising Up  Roll Eyes
540  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN][CRBIT] Creditbit Hybrid POS/POW | x11 | 1min blocks | 100M CRBIT on: September 23, 2016, 06:00:28 AM
Wow wow wow! I bought extremely cheap CreditBit and now it is up! And more news - with such large trading volume Bittrex don't must delist it. Someone care about this coin? Or devs want to continue development?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!