Bitcoin Forum
May 02, 2024, 12:06:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 ... 323 »
  Print  
Author Topic: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat*  (Read 418478 times)
verymuchso
Sr. Member
****
Offline Offline

Activity: 421
Merit: 250


HEAT Ledger


View Profile
July 28, 2016, 01:52:01 PM
 #421

Some progress on the unconfirmed transaction (or mem-) pool

[This is one of the last BIG problems we had to solve..]

The previous post turned out not to be the solution, it simply wouldn't scale.

Happy to say we now 'really' have a working solution.

Trick was to construct the pool as a linked list and to use smart on demand sorting on addition.
This also solves our need that during block apply-ing valid and applied transactions can be removed very fast during iteration.
And allows for filtered iteration to kick out expired transactions.
And allows to put a max size on the pool so the expulsion algorithm can kick out transactions overflowing the maximum allowed (to mitigate DDOS attacks).

Finally we now have hooks to persist transactions to disk (have to do that ourselves since the database was removed).
And it supports transactional operations required to rollback in case of validation errors or to recover from system crashes.

The list itself, with active on-demand sort as you insert, has shown to do 12,000,000 operations a second (most likely double or triple that on a decent server).
This was tested with the default pool size of 600,000 transactions that fit in the HEAT mem-pool.
With real transactions this will become slightly slower because of the need to persist data to the memory mapped data store.

But the most important thing... the mem-pool will not be slower than any other part of the HEAT framework.
Which was the main goal.

For the nerds: HeatSortedLinkedList.java
[tip of the day! if you ever need to do a standard datastructure, look in the actual JVM source code for samples!]

In regards to qualifying HEAT as a 3rd Generation platform, here is an interesting video with a 3rd generation definition. Mainly first ten minutes..

I'm a bit behind on schedule because of the mentioned difficulties.
I'll get back to this later.

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714651594
Hero Member
*
Offline Offline

Posts: 1714651594

View Profile Personal Message (Offline)

Ignore
1714651594
Reply with quote  #2

1714651594
Report to moderator
1714651594
Hero Member
*
Offline Offline

Posts: 1714651594

View Profile Personal Message (Offline)

Ignore
1714651594
Reply with quote  #2

1714651594
Report to moderator
doktor1897
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
July 28, 2016, 02:25:10 PM
 #422

where we can get heat ?

                 ██            ██
               ██████        ██████
            ████████████      ██████
        ███████████████████    ██████
     ███████████    ██████████  ██████
  ██████████    ███    ████████  ▀█████
  ██████    ███████████   ██████  █████
  █████   ██████  ██████   █████  █████
  █████    ███      ███    █████  █████
  █████  ██            ██  █████  █████
  █████  ███          ███  █████  █████
  █████  ███████   ██████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████  █████ ████  ████  ██████
  █████  ████   ███  ████  ███  ██████
  █████  ████    █   ████  █   ██████ 
  █████  ████        ██      ███████     
    ███  ████        █     ███████         
      █  ████         ▄██  █████       
           ██        ████  ███
            █        ██▀
`AiBB`  ———————————
HARNESSING THE POWER OF Ai IN CRYPTO
▐ -
`BUY TOKENS`
-▐   Twitter
  Telegram
  Facebook
|WP
Reddit
Medium
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 28, 2016, 02:26:47 PM
 #423

where we can get heat ?

Its in the OP

ESCROWS AND TRADING

HEAT credits can be reserved from the following sites:

HEAT Ledger web site
Openledger operated by CCEDK (also allows trading of stakes during ICO)
Alcurex exchange
C-CEX exchange
Fitcoin Exchange assets in the FIMK blockchain


Selsonblue
Hero Member
*****
Offline Offline

Activity: 661
Merit: 500


View Profile
July 28, 2016, 02:38:10 PM
 #424

where we can get heat ?

Read 1st post   Wink Wink   

Its still in ICO on a few exchanges... C-cex is where i got my steaming pile of HEAT  Cheesy Cheesy  (Not an insult, just seemed appropriate and comical)

As an early investor, somewhat of a crypto-vet, and an IT professional - I have to say, good feels come from the info that has been communicated here - Shout out to LiskEnterprises for asking those questions of the dev. And kudos to the dev for providing a bunch of info back.

verymuchso
Sr. Member
****
Offline Offline

Activity: 421
Merit: 250


HEAT Ledger


View Profile
July 28, 2016, 02:53:22 PM
 #425

What do all these solutions have in common?

- segregated witness
- sharding
- blockchain pruning
- lightning network

 Huh

They all solve the inherent problem that each crypto-currency or blockchain network faces..

Which is the inability to keep around all transactions since genesis till now, no machine in the world exists that allows that.
Let alone cheap machines required to run a world wide decentralized network - operated by normal people - not multi-million dollar banks!

But why keep those transactions around in the first place?
Why do crypto currencies need access to all past transactions?

Why can't the decentralized consensus mechanism function with access to balances alone (and some past transactions - but not all of them).

The real reason most currencies can't function without access to that data....

Is since they are designed from the ground up to have to have access to that data for their consensus algo's to function.
But can we blame them?

Did they know what scale crypto-currencies  could reach one day?

No! Of course not. But it is a problem non-the-less.

If there is anything that HEAT adds to this, it's that we designed HEAT from the ground up to not depend on past transactions.

This comes at a cost (initially ... but will be solved eventually).

- we can't do referenced transactions like NXT does (doesn't scale)
- we can't do ETH contracts in the form Ethereum does them (doesn't scale)
- we can't do Bitcoin multi-sig in the form Bitcoin does it (doesn't scale)

Does this mean we can't have smart contracts? multi-sig? or conditional transactions?

By no means, the answer is we can support those things.
But extreme care has to be applied to not lock the HEAT blockchain into promising functionality that later needs to be disabled or rolled back.

Simply since it doesn't scale anymore!

In part... I believe this is what HEAT is about.

And kudos to the dev for providing a bunch of info back.

Kudos back  Wink

Jack Needles
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
July 28, 2016, 07:33:39 PM
 #426

can u pls update this?
would be interessting!

thank you!

Here you go!

     Price stage    HEAT price    Exchange / BTC    1 BTC worth    HEAT per 1 BTC equiv
BTC            2       0.00013        1.00000000         1.0000        7692.3077
FIMK           3            50        0.00000210    476190.4762        9523.8095
NXT            2             4        0.00004009     24943.8763        6235.9691
ETH            1        0.0065        0.01967240        50.8326        7820.4059
IlluminatiGoldMember
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
July 28, 2016, 09:17:58 PM
 #427

I guess this definition of 3rd Gen gets us out of experimental phase and into a percise governmental phase that would prevent issues like what ETH has right now.

Interesting video! Clearly, 3rd generation can mean many things.

Can mean a next technological level
Can mean a better/decentralized governmental process

But what exactly can be gained with such 'better governmental process'?

The video talks about changes to the network protocol or consensus protocol, but what does that mean? Sure seems like an interesting theoretical or technical problem. But what kind of real world use is there for it? Any examples?
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 28, 2016, 09:25:50 PM
 #428

I guess this definition of 3rd Gen gets us out of experimental phase and into a percise governmental phase that would prevent issues like what ETH has right now.

Interesting video! Clearly, 3rd generation can mean many things.

Can mean a next technological level
Can mean a better/decentralized governmental process

But what exactly can be gained with such 'better governmental process'?

The video talks about changes to the network protocol or consensus protocol, but what does that mean? Sure seems like an interesting theoretical or technical problem. But what kind of real world use is there for it? Any examples?
An example of why a better governance model is needed is mentioned in the video.
Look at all the accusations flying back and forth between the ETH and ETC community right now. Both sides are accusing the other side of having ulterior motives. There is no way of proving if any of the accusations are right and it is damaging both communities.

Jack Needles
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
July 28, 2016, 09:41:37 PM
 #429

Interesting video! Clearly, 3rd generation can mean many things.

Can mean a next technological level
Can mean a better/decentralized governmental process

But what exactly can be gained with such 'better governmental process'?

The video talks about changes to the network protocol or consensus protocol, but what does that mean? Sure seems like an interesting theoretical or technical problem. But what kind of real world use is there for it? Any examples?

Nice video.

Under his definition, Bitshares might qualify as 3rd generation then.  I'm not expert on it, but they seem to have advanced blockchain voting functions, with workers, committees, and witnesses (their block producers).

Real use of Bitshares voting shown here:
https://cryptofresh.com/ballots

I think HEAT uses a different definition for 3rd generation.  One that eliminates blockchain bloat and improves scalability to massive levels (among all the other niceties).
idolacchacked
Hero Member
*****
Offline Offline

Activity: 598
Merit: 500


View Profile
July 28, 2016, 10:27:14 PM
 #430

this ICO has to be the least noticed ... not many  know
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 28, 2016, 10:40:32 PM
 #431

this ICO has to be the least noticed ... not many  know
And still it has raised a pretty good amount of BTC so far.
But I do agree that the thread is pretty quiet.

Arrakeen
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


Offer escrow, receive negative trust


View Profile
July 28, 2016, 11:35:07 PM
 #432

Can't invest!!  Huh

The openledger site says:

"Application initialization issues"

Anyone else having this problem? I'm running on Android 5
Trade_BTC
Hero Member
*****
Offline Offline

Activity: 785
Merit: 502



View Profile
July 28, 2016, 11:36:29 PM
 #433

Sorry if it's been asked but what happens to the coins that are not sold in the event they are not?
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 28, 2016, 11:43:38 PM
 #434

Sorry if it's been asked but what happens to the coins that are not sold in the event they are not?
They will be split among the people that bought coins.

Trade_BTC
Hero Member
*****
Offline Offline

Activity: 785
Merit: 502



View Profile
July 28, 2016, 11:51:08 PM
 #435

Sorry if it's been asked but what happens to the coins that are not sold in the event they are not?
They will be split among the people that bought coins.

Oh awesome thanks for the help.
Jack Needles
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
July 29, 2016, 01:32:39 AM
 #436

Can't invest!!  Huh

The openledger site says:

"Application initialization issues"

Anyone else having this problem? I'm running on Android 5

OpenLedger gives a warning for untested browsers.  They suggest Chrome, and it works beautifully on my desktop.

But, there are other ways to invest in HEAT.  See the ICO page here for details
http://heatledger.com/ico/
nob0dy
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
July 29, 2016, 07:56:04 AM
Last edit: July 29, 2016, 08:07:10 AM by nob0dy
 #437

pfew... after nearly 3 weeks, still nothing of the promised whitepaper. no time shouldnt be an excuse anymore. the coder not only doesnt know anything about security. he is a childish. self educated hobby scripter, with no academic background, like he explains himself.

it couldnt get more worse. Sad

the dao is dead cause they got hacked.... hey they had a big team of professionell guys. so what is this?


put all your coins, in the HEAT multicurrency wallet and lose them all together by one hack cause of insecurity. nice. haha. FAIL
Eliphaz Fimk (OP)
Hero Member
*****
Offline Offline

Activity: 773
Merit: 500


Heatledger.com


View Profile WWW
July 29, 2016, 08:28:26 AM
 #438

still nothing of the promised whitepaper.
Whitepaper will be available as promised by August 1th, the last week of the ICO.

         
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
   ████      ████      ████████████          █████        ████████████████  
   ████      ████      ████████████          █████        ████████████████  
   ████      ████      ████                ████ ████            ████        
   ██████████████      ████████████        ████ ████            ████        
   ██████████████      ████████████      ████     ████          ████        
   ████      ████      ████              █████████████          ████        
   ████      ████      ████████████    █████████████████        ████        
   ████      ████      ████████████    ████         ████        ████
        
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
 
              ██      ██████  ██████    ██████   ██████  ██████
              ██      ██      ██   ██  ██    ██  ██      ██   ██
              ██      ██████  ██   ██  ██  ▄▄▄   ██████  ██████
              ██      ██      ██   ██  ██  ▀▀██  ██      ██   ██
              ██████  ██████  ██████    ██████   ██████  ██   ██







verymuchso
Sr. Member
****
Offline Offline

Activity: 421
Merit: 250


HEAT Ledger


View Profile
July 29, 2016, 11:13:33 AM
 #439

the dao is dead cause they got hacked.... hey they had a big team of professionell guys. so what is this?

You tell me. Perhaps it's because they had no academic backgrounds.  Tongue

someonesomeone
Hero Member
*****
Offline Offline

Activity: 933
Merit: 500


View Profile
July 29, 2016, 11:22:34 AM
 #440

Invested. Looking forward to seeing this grow.

I do think that you guys should advertise this ICO more. Maybe some Reddit ads? Those worked wonders for Lisk Wink
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 ... 323 »
  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!