Bitcoin Forum
June 21, 2024, 04:54:17 AM *
News: Voting for pizza day contest
 
  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 »
61  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HEAT Discussion and Technical info on: October 07, 2017, 05:05:32 PM
Although I've hinted at releasing the new HEAT server today and given the fact it's weekend and not all our team members are at standby to guide this process.
We would like to announce a new but this time final release date which will be coming monday.

This release will be a mandatory update and older nodes will not work after Sunday October 22'th 2017, because of the hard fork at that date.
This is the first mandatory update (hard fork) since JUNE 2017, we expect the coming updates after this one to not be mandatory for a good while again.

Finally check out what I got today...







62  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HEAT Discussion and Technical info on: September 02, 2017, 06:40:47 PM
Hi all,

Hope you are all doing well.
Please allow me a moment to give a short update about where we stand with HEAT technical development.

Lets start with one thing that's clear, but perhaps underapreciated, which are the big improvements to the HEAT network stability since the last major release. HEAT network has operated smoothly and uninterupted ever since, thankfully!

Also the extensive client/wallet/exchange visual makeover and overall upgrade seems to work well, no major bugs have surfaced or any emergency fixes have been needed since that was released. This ofcourse being possible because of our very special, very custom heat-ui crypto-client framework. Which in turn allows our client developer to perform his magic efficiently.



During the holiday season work was started on the software backend for our licensed EUR wallet operator. Through this new company with which Heat Ledger Ltd has a partnership we will be bringing EUR to the blockchain. Users can deposit and withdrawal EUR to and from their account and send EUR from one account to any other account in the system.

To realize this we decided a private blockchain system together with an indexed database and an API was the way to go.

In order for HEAT to benefit most it became clear that instead of forking HEAT and building a private chain from that code, a better way was to upgrade HEAT itself by adding private chain functionality to its core. This way the system would benefit from later upgrades to HEAT and HEAT itself would benefit.

We went a little further than that by making HEAT core into an embeddable software component, this means that now other applications can add the HEAT library and use it.

By embedding the HEAT library in your application;

- you get your own private blockchain and p2p network
- you can extend and use the HEAT database
- you can expose your own custom API by extending the (OpenAPI compatible) HEAT API

All this came very close to what we needed to built our backend system, the only part that was missing was a database solution.

The database had to;

- be protected against data loss, this means we needed realtime backups to multiple servers
- record all changes to its data
- be impossible to change data without it being detected

Of course solutions for such exist, but most are costly to implement and maintain. What we found was a way to achieve the same by using the blockchain and a simple sql database.

For this we first created our basic database models, in software developement a database model is a piece of code that wraps all your database queries and inserts and updates into a unit. From there we identified all inserts and updates and created what we call 'messages' to pass data into those models. The messages are basically data structures but with the ability to turn them into binary data and vice versa create them from binary data.

To be able to pass a message to one of the model's insert or update routines we created what we call 'handlers', each handler having its unique id. The handlers in turn are invoked by observing the embedded private blockchain transactions, if we see a transaction with a message we look up its handler and the handler will pass the message to the database model.

So there you have it. We now have all our data backed up on the private chain p2p network and no one can change any part without rewriting the blockchain. Pretty cool!

The messages + handler logic will be ported to HEAT core at a later stage, we plan to wrap the logic in such a way that with a few lines of code you could built your blockchain powered database driven app.



We also created the web/mobile client for the EUR wallet operator. For this we took heat-ui framework as a starting point, we dressed it down, took the best parts and upgraded it which gives us a nice mobile friendly client framework. This code is expected to find its way back to HEAT as our upgraded mobile friendly wallet base. The wallet is mostly functional and will be passed down to our visual/ui specialist to complete its looks.

Also our java developer recently completed work adding MYSQL support to HEAT. HEAT replicators have always been designed to work with multiple database engines but up to now we only supported H2 database. MySQL is better suited for heavy loads which is why we will soon be using that to power the public wallet at https://heatwallet.com.

Heat-ui (the HEAT wallet) has a number of upgrades pending release, among which is better mobile support and the addition of mouseover/popover details to things like accounts, orders and trades.

Preparations have also been going on to better formalize microservices and to enable balance leasing which can be expected in the coming release.

Also preparations for the remake of the p2p/networking layer are on going and will be implemented next.
63  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: August 13, 2017, 11:56:58 AM
Accidentally pasted my word seed into the 'send to' address field.  I didn't actually send to it, but it did a bit of a search so I moved all my coins out of that account in case it searched in cleartext.

Have I indeed compromised my seed for that account, or can I safely continue using it?

Whatever you type in the address bar should be considered 'shared' at least with heatwallet.com, this is the same thing as typing/pasting your secret phrase in the google.com search box on their homepage. In both cases I would consider things compromised and move all to a new account.
64  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: June 30, 2017, 11:00:00 AM
The client can also be used online at: https://heatwallet.com/#/trader/5592059897546023466/0

Pro tip: you can now export/import your wallet file with keys from/to both the online version at https://heatwallet.com and the desktop versions.

65  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: June 30, 2017, 10:33:36 AM
New client [2.0.0] and server [1.1.0] releases

Desktop version with server: https://github.com/Heat-Ledger-Ltd/heatwallet/releases/tag/v2.0.0
Desktop version with out server: https://github.com/Heat-Ledger-Ltd/heat-ui/releases/tag/v2.0.0
Server only: https://github.com/Heat-Ledger-Ltd/heatledger/releases/tag/v1.1.0


Heat Wallet 2.0.0

Includes Heat Server 1.1.0, see below for details.

The HEAT 2.0 client consist of a major rewrite/improvement of the core workings as well of a brand new look and feel in line with the newly developed Heat Ledger Ltd corporate styling.

Focus has been on improving usability as well as performance, security and application stability.

Some of the improvements are:

  • your registered email account id is displayed now instead of the numeric id
  • others can address you now by your email account id
  • when sending heat, assets or messages there now is search as you type auto complete support which makes finding other accounts a breeze
  • wallets can now be imported and exported from/to your browser or the desktop app
  • individual accounts can be imported and exported using just their secret phrase
  • block explorer search for accounts, transactions, blocks
  • block explorer data display improvements
  • display assets issued and held by any account
  • preview message and display of full message in account history
  • exchange order expiry time period picker
  • deposit and withdrawal buttons for Heat Ledger certified asset gateways
  • fixed asset launch time display
  • real-time chart ticker picks up trades as they occur
  • uncertified markets hidden by default, expandable through clicker
  • improved trollbox chat with cryptographic identity proof (click on name to inspect account in real time in block explorer)


Heatledger 1.1.0

While this version is backward compatible with previous versions when it comes to the p2p protocol level operations. To use the new 2.0 class of the HEAT clients you will need this upgraded version since those clients depend on extensions to the API not available in previous versions.

Focus for the 1.1.0 release has been on increasing system stability by hardening the existing code to better deal with multi threaded access to the core HEAT storage components (basically the blockchain itself).

In the upcoming versions of the HEAT server product focus will shift to replacing the peer 2 peer system inherited from HEAT's NXT origins (the p2p code is the last piece of original NXT code).

Now that this step was made, the core is ready to be used by the new intelligent and fast HEAT p2p protocol, the final bottle neck towards reaching transaction processing at lightning speeds.

66  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: June 01, 2017, 01:02:58 AM
Windows and linux desktop users look here

https://github.com/Heat-Ledger-Ltd/heatwallet/releases/tag/v1.0.19
67  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: June 01, 2017, 12:17:12 AM
New version please all update.

There was a faulty state from which nodes could not recover, now nodes can recover from such an error (which in theory could happen again).

We guard HEAT against such as well as many other faulty states by investing heavily in ways how HEAT can heal it self and if it cant heal itself than at least allow a node to do a hard reset by scanning its own chain again.

While this release does go back a few hundred blocks we however KEEP ALL TRANSACTIONS except for the faulty one that slipped on the chain accidentally.

While this comes at a cost for the miners for those blocks we believe that the transactions are more important here and must say we are very happy that we've reached a level with HEAT where a fix like this is possible. As you'll see all your transactions are there, same timestamp and all, just in another block.

To get things going we've used one of the developer bonus accounts to get mining started.

The rewards taken in by this account will be donated either to Stewie (who has my vote) or to any other goal the community sees fit. Please let us know.


Heatledger 1.0.3

This is a mandatory update!

Various fixes. [real trade timestamping/dates instead of block times among others]

Bug fix for block 351683, nodes below this version were not able to recover from 'on-chain' 'bad' transactions.
The majority of the network already correctly rejected new blocks that carried this particular invalid transaction, which is a good thing.

What these nodes however lacked was a mechanism to recover from this faulty state while still carrying over
all valid transactions that went to the network after that block.

This version is able to both recover from faulty on-chain transactions through a simple stop and restart and also will bring along any other later transaction (after the faulty one) and apply those when scanning and validating the chain has succeeded.

Upgrading to this version will do a forced full rescan of the blockchain.

Any block you generated after 351683 will be lost, you will not unfortunately not get the reward for those blocks.

ALL VALID TRANSACTION(S) on the network AFTER block 351683 WILL BE CARRIED OVER, SO NO TRANSACTIONS ARE LOST!


https://github.com/Heat-Ledger-Ltd/heatledger/releases/tag/v1.0.3

NOTE! we've nuked heatledger-1.0.3.zip. please make sure your download is heatledger-1.0.3.a.zip which can be found on the release link above.
68  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: May 31, 2017, 03:19:31 PM
I can't no longer start my server, i get an error and it shuts down after a couple of seconds.
I think that maybe resyncing from zero might help (many messages on the App server tab talked about a "fork"). Is there a way for me to do that without losing my HEAT? Or are there other things i could try?

As long as you keep your secret phrase (the 12 word key) safe there is no way to loose your HEAT.
There seems to be a fork indeed affecting some nodes. We are working on an update.
69  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: May 15, 2017, 02:31:21 AM
TESTNET RELEASE.

Heatledger 1.0.2 (NOT MEANT FOR USE ON MAIN NET)

THIS IS A TESTNET ONLY RELEASE

- microservices enabled

See https://github.com/Heat-Ledger-Ltd/heat-dev-kit for microservices documentation sneak peek

https://github.com/Heat-Ledger-Ltd/heatledger-test/releases/tag/v1.0.2
70  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 20, 2017, 03:20:10 AM
Optional update. New block explorer, new API's

Heatwallet 1.0.18

This is an optional update.

Various fixes have been applied.

New and improved block explorer, shows transactions in real-time.

New API's, see ALL transactions, ACCOUNT transactions or BLOCK transactions.

https://heatwallet.com/api/#!/Blockchain/transactionsAccount
https://heatwallet.com/api/#!/Blockchain/transactionsAll
https://heatwallet.com/api/#!/Blockchain/transactionsBlock



Desktop: https://github.com/Heat-Ledger-Ltd/heatwallet/releases/tag/v1.0.18
Server: https://github.com/Heat-Ledger-Ltd/heatledger/releases/tag/v1.0.1



Block explorer: https://heatwallet.com/#/explorer (will be completed in the coming days)
71  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 16, 2017, 05:40:48 PM
cant start mining, the button is enabled, but pressing the button the menu didnt appear.

blockchain download is super fast :-)

Use the one we just released. And wait until your blockchain is fully downloaded before you start mining.
72  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 16, 2017, 05:37:47 PM
DESKTOP Windows + Linux RELEASE

This is the desktop version that contains Heat Ledger 1.0.0-b1.

https://github.com/Heat-Ledger-Ltd/heatwallet/releases/tag/v1.0.17
73  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 16, 2017, 12:38:15 PM
NEW VERSION 1.0.0-b1 - REWARDS ENABLED AGAIN

Heatledger 1.0.0-b1 - All systems GO! Rewards back on..

Heat Ledger 1.0.0-b1 (server)

This is a mandatory update, every one must update to this version before we reach the block with height 232,000.
At this height the protocol will start rewarding accounts that find a block again. Block 232,000 is expected in three
days from the moment of this release.

This version comes with a new byte format for the central blockchain/blocks file which is basically the physical blockchain
inside HEAT. Because of the nature of the HEAT blockchain being a flat (memory mapped) file (instead of a database)
a migration from one to the other format proved difficult. An easier solution was if users delete their current chain and
download a new one from the network.

When running this version for a first time we automatically delete and redownload blockchain/blocks, this happens only once.

To make this process as safe as possible we've added two full chain checkpoints at height 185,000 and one at height 221,250.
While you download and you reach that height a digital finger print (SHA256) of all previous blocks is created and compared
to the finger print we hard coded in the source code.

This release disables heat.forgingDelay and heat.forgingSpeedup configuration options, this should equalize forging changes.

Various other smaller bug fixes have been applied to this release.

https://github.com/Heat-Ledger-Ltd/heatledger/releases/tag/v1.0.0-b1
74  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 12, 2017, 03:31:35 PM
When we are up and running and have released the HDK (Heat Development Kit - Needed for our work with ABN AMRO bank [among others]) we will be moving to the peer 2 peer parts.
It will be the last part that will be replaced that's still based on NXT code.
75  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 12, 2017, 03:27:51 PM
I have participated in independent testing on testnet today with several nodes in Europe and Asia. Everything seems stable even at relatively high tps rates. Already now the HEAT network is capable of stable, higher tps rates than Bitcoin. The next mainnet release expected soon with both forging rewards and Asset Exchange trading enabled will be a big milestone for this project.

when do you expect 1000 tps rate? I know the team is focusing on microtransactions, but is there a path to go there? Otherwise i would consider changing the Name of this thread: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat*

The internals are ready. The externals however are not.
If you disconnect from the network and pump transactions into HEAT, they can be stored away (and have all balances updated etc) at 1000tps easily, much higher numbers can be reached even.
The externals being the communication between peers, thats the second stage, how we do that is being worked out. The answer lies in a combination of better always-on connections, better protocol (now its plain json, which cant be scanned in place but needs to be loaded in memory always) and finally smarter communications between peers (instead of send everything to all - hello 20,000 transaction block - better to ping a node if he/she even wants to receive that 1MB blob or if they have it already).
To achieve all this we will be moving away from Jetty networking lib and towards AKKA.
76  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 12, 2017, 09:20:42 AM
To watch testnet in action from the browser wallet (https://heatwallet.com)

  • Click on menu button in top right corner
  • Click on "About HEAT" menu option
  • About Dialog will open, click on "Go to test net" link in About dialog
  • When your menu bar turns green and says "TEST NET" you are in testnet
  • Repeat same steps to go back to MAIN NET
77  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 12, 2017, 09:16:17 AM
This release IS FOR TESTNET only.

Heat Ledger 0.9.30

To use, start as is normal on main net but make sure you have the following configuration options in your heat.properties file.

Code:
heat.numberOfForkConfirmations=0
heat.isTestnet=true

Disabled heat.forgingDelay and heat.forgingSpeedup to equalize forging changes.

Has new public key storage and handling, fixes bug where sometimes a public key
was not removed on block reorgs.

Fixes asset issuance fee change handling.

https://github.com/Heat-Ledger-Ltd/heatledger-test/releases/tag/v0.9.30



TESTNET release, tests have performed really well.

Next up 1.0b1 with forger rewards enabled in about 3 days.
78  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 04, 2017, 12:31:00 AM
Please update your nodes.
Nodes below 0.9.29 will no longer be able to connect to the network.


Forger rewards will be enabled again on Friday 7'th of April.
Asset exchange is enabled again, use the exchange through https://heatwallet.com or get the desktop version.
79  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 04, 2017, 12:15:05 AM
Updated heatwallet.com, forgot to enable real-time/websockets in the server config. Asset exchange websocket events are enabled now.
80  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HEAT: 3.0 crypto*multisig fiat*a2a hft*1000tps*DSA*PoS+PoP*e2ee chat* on: April 03, 2017, 11:26:56 PM
Asset Exchange on https://heatwallet.com is enabled again.

Desktop release. AE is enabled again.

Heatwallet 1.0.16

Contains Heatledger 0.9.29

This is a mandatory update, all nodes on older versions must update.

While on testnet 7 other releases have come and gone please refer to testnet repo for details on those.

This release fixes most if not all of the forking issues we experienced before plus it enables the new realtime websocket connectors already integrated in both the web and desktop clients.

Forging rewards stay disabled. When this release proves to be stable we will put out another release which will enable forging rewards. This is to be expected by Friday 7'th of April.

Heatwallet 1.0.16 contains Heatledger server 0.9.29

https://github.com/Heat-Ledger-Ltd/heatwallet/releases/tag/v1.0.16

[update]

Initial released version had websocket events disabled for main-net.
Downloads are updated now.
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!