Bitcoin Forum
April 18, 2024, 07:55:19 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1] 2 3 »  All
  Print  
Author Topic: Bytecoin: Under the Hood  (Read 3176 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Ullo (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 06, 2015, 05:10:34 PM
 #1


A lot of work has been done on refactoring Bytecoin Core’s source code. This process started with the version 0.8.11, which had Bytecoin high-level API interface declared for the first time. The newly released Bytecoin Reference Client v.1.0.3 is the next significant updated for the Bytecoin Core.

Here I will explain what has been happening under the Bytecoin's hood and what our technology vision is. This description is crucial to understand Bytecoin’s roadmap and the necessity to pursue its vector.

The v.1.0.3 release notes focus on the following updates:

  • In-process INode implementation for applications
  • Low-level ITransaction API interface for ordinary and multisig transactions
  • Simplewallet migration to high-level API (namely, INode plus IWallet)
  • Instant transaction notifications for in-process INode


Purpose of this update

V.1.0.3 is an important milestone on the way to standardize various components' access to Bytecoin network. It is also a requirement for Bytecoin GUI Wallet, which is coming out later this week.

We are currently getting Bytecoin Wallet ready for the release, and have already rolled out the new version of simplewallet. These wallets are very different, as simplewallet doesn't provide real-time interaction and shows only a tiny part of the information that Bytecoin Wallet has. However, both wallets are powered by exactly the same two high-level API interfaces: INode and IWallet. This allows us to greatly unify Bytecoin source code and improve development process efficiency.

What is even more important, the newly updated high-level API gives 3rd party developers the native access to all Bytecoin features. As of now, any developer wishing to create his own native Bytecoin wallet has all the tools available.

We firmly believe that for the vast majority of cases 3rd party developers should operate on the business logics level, not going into technological hardcore. Our high-level API (namely, INode and IWallet interfaces) serves that very purpose. It is much easier to operate with from inside a C++ application than the classical bytecoind and simplewallet REST API. It gives access to all main Bytecoin features in a convenient and comprehensible way. For example, you don't need to take care of an instance of simplewallet running in the background to power your GUI wallet. Business can focus on the user experience and let IWallet work out-of-box! And in case you need to have a higher level of control over CryptoNote protocol, utilize low-level ITransaction interface instead of high-level IWallet.

By introducing such a level of abstraction, we greatly simplify the experience of applications developers that work with Bytecoin. Our high-level API is a single point of responsibility. In case you need a method that is not yet provided, you may contact Bytecoin Support and have it implemented in the upcoming releases.


INode

Bytecoin network basics

Bytecoin depends on its peer-to-peer network, basic unit of which is a node. The most common node that you may find in the network is Bytecoin Reference Client daemon (bytecoind).

There are two general types of nodes:

  • Seed is a node that allows inbound connections.
  • Peer is a node that doesn't allow inbound connections (e.g. if its user chooses so or due to firewall network rules). Since all the nodes are frequently asking other seed nodes if anything new has happened in the network (a new block mainly), peers are still perfectly synced.

INode and Bytecoin network node

Currently there are two implementations of Bytecoin nodes available:

  • Standard bytecoind console daemon which is capable of using Bytecoin p2p protocol and providing RPC interface for external access.
  • INode, which is an API library that allows any C++ application to participate in Bytecoin p2p network on the blocks level. Any application that uses INode API library is indistinguishable from other network nodes.

Bytecoin’s daemon refactoring announced in Bytecoin roadmap implies, among other improvements, daemon migration to INode library. We are doing to this to unify Bytecoin technology core and allow any 3rd party developers to easily access all Bytecoin network features. The resulting application, whatever purpose it may have, will be a full-fledged Bytecoin node. Moreover, INode library is more efficient than the legacy bytecoind source code.

INode is one interface that has two implementations: proxying INode and in-process INode.

  • Proxying INode re-routes all the requests to another node (e.g. your localhost bytecoind or some other remote daemon).
  • In-process INode is a standalone network node that is capable of exactly everything the ordinary daemon can do. It is called "in-process" since it runs inside another application that requires Bytecoin network access.

Prior to Bytecoin v.1.0.3 only the proxying INode implementation was available. With an advent of in-process one, INode becomes much more flexible. For instance, if you have a local daemon running, the application that utilizes INode will choose its proxying implementation and connect to local bytecoind instead of launching a new in-process instance.


Bytecoin IWallet and ITransaction

While INode is capable of relaying and processing blocks, it cannot access any information regarding user funds or create transactions. However, there are certain applications (e.g. wallets) that require such methods.

Bytecoin team wanted to give a varying level of access to CryptoNote transactions core with two API interfaces:

  • IWallet operates on the business logics level. It is useful if you simply need to receive and send transactions, without going into CryptoNote protocol details. Should you require to transfer money with IWallet, you just need to indicate the receiver's address, the amount, and the mixing level. IWallet will do the hard work for you, as it will select the inputs, and then create, validate, sign, and broadcast the transaction.
  • ITransaction is a low-level interface that gives full access to CryptoNote transactions engine. It is designed for those applications that require strict control of transaction creation process. For instance, ITransaction allows you to select specific inputs, and has separate methods for signing and broadcasting a transaction. It also provides access to multisig functionality.

Both API interfaces are capable of doing exactly the same, but with varying level of detalization. That is why IWallet belongs to Bytecoin high-level API, while ITransaction is low-level.

Both new simplewallet and the upcoming Bytecoin Wallet have IWallet in their core. Just like INode interface can boast with better performance than legacy bytecoind, IWallet is a faster version of legacy simplewallet source code. As of version 1.0.3 simplewallet has migrated to this interface, which reduced the time required to process a single block by 15%.

To be precise, new Bytecoin simplewallet is a basic console program that uses IWallet and proxying INode. On the other hand, Bytecoin GUI Wallet utilizes IWallet and in-process INode (which automatically runs as proxying in case you already have an instance of bytecoind launched).

We expect the vast majority of applications to choose IWallet, while ITransaction is for those who require CryptoNote transactions fine-tuning. For instance, this level of access may be required by such services as payment processors. These applications often have their own custom logic of transaction creation and various complicated modules. ITransaction allows to split the transfer process according to the architecture needs.

Moreover, ITransaction also gives access to multisignature API that is capable of powering on-blockchain escrow services and foundation wallets. Bytecoin multisig belongs to M-of-N scheme. We will be covering multisignature in details in one of the next blog posts, but here you may find its description in laymen terms.


Conclusions

Said APIs are important to those businesses that want to operate with cryptocurrency easily, without sophisticated development and core’s explorations. These businesses can focus on marketing of their products; all the hard work of integration with our financial system is done by our reliable interfaces.


More details on v.1.0.3 Reference Client release



In-process INode implementation for applications

INode is the high-level API interface that allows any application to utilize core features of Bytecoin p2p network. Its new implementation provides a full-fledged network node inside any C++ application. It also largely standardizes codebase and powers Bytecoin GUI Wallet, which is coming out later this week.

Low-level ITransaction API interface for ordinary and multisig transactions

Bytecoin low-level API interface provides 3rd party developers with a flexible access to CryptoNote transactions engine. It gives access to core functions that allow to create, validate, sign, and broadcast a transaction. It also provides multisig access.

This update is aimed for wallet and multisig applications developers. Bytecoin low-level API provides full control of CryptoNote transactions technology allowing you to select specific inputs of a transaction. It also gives tools to utilize multi-signature protocol and create such products as native escrow and M-of-N board wallets.

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Simplewallet migration to high-level API

Legacy simplewallet code has been migrated to the new high-level API libraries. Even though simplewallet remains the same from the user perspective, everything under its hood is completely redesigned. This update is the showcase and reference implementation of Bytecoin high-level IWallet interface. Simplewallet operates through proxying INode interface only, so it still requires a running daemon.


Further reading

Bytecoin roadmap (discussion)
INode on Bytecoin wiki
IWallet on Bytecoin wiki
ITransaction on Bytecoin wiki

Bytecoin BCN core team: https://bytecoin.org/
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713470119
Hero Member
*
Offline Offline

Posts: 1713470119

View Profile Personal Message (Offline)

Ignore
1713470119
Reply with quote  #2

1713470119
Report to moderator
1713470119
Hero Member
*
Offline Offline

Posts: 1713470119

View Profile Personal Message (Offline)

Ignore
1713470119
Reply with quote  #2

1713470119
Report to moderator
1713470119
Hero Member
*
Offline Offline

Posts: 1713470119

View Profile Personal Message (Offline)

Ignore
1713470119
Reply with quote  #2

1713470119
Report to moderator
cryptonight.net
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile WWW
April 06, 2015, 05:21:11 PM
 #2

Thank you for details.

C++ interfaces are very important but for business integration other languages are even more important: the vast majority of web sites use PHP, Python and other. Not C++! Do you plan to implement INode/IWallet/ITransaction bindings for Python/Perl/Java/Node.js and other languages and tools?
dulldog
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
April 06, 2015, 05:25:31 PM
 #3

OK, so Bytecoin developers have made something good again.  But where can I download Bytecoin GUI? I haven't found any links niether in the main thread, nor on the official website.  Community doesn't  help too.
DStrange
Sr. Member
****
Offline Offline

Activity: 336
Merit: 251


View Profile
April 06, 2015, 05:32:58 PM
 #4

OK, so Bytecoin developers have made something good again.  But where can I download Bytecoin GUI? I haven't found any links niether in the main thread, nor on the official website.  Community doesn't  help too.

Bytecoin GUI-wallet will be published together with the next release by the end of this week.

Ullo (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 06, 2015, 05:33:20 PM
 #5

Thank you for details.

C++ interfaces are very important but for business integration other languages are even more important: the vast majority of web sites use PHP, Python and other. Not C++! Do you plan to implement INode/IWallet/ITransaction bindings for Python/Perl/Java/Node.js and other languages and tools?

First we greatly simplify the C++ applications development. In version 1.0.4 we are going to release a payment gateway, which is the most common case for external services. It is a robust demonized payment server that is tailored to most business requirements. Other implementations are going to be developed once we cleanup the core.

Bytecoin BCN core team: https://bytecoin.org/
cryptonight.net
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile WWW
April 06, 2015, 05:34:38 PM
 #6

Thank you for details.

C++ interfaces are very important but for business integration other languages are even more important: the vast majority of web sites use PHP, Python and other. Not C++! Do you plan to implement INode/IWallet/ITransaction bindings for Python/Perl/Java/Node.js and other languages and tools?

First we greatly simplify the C++ applications development. In version 1.0.4 we are going to release a payment gateway, which is the most common case for external services. It is a robust demonized payment server that is tailored to most business requirements. Other implementations are going to be developed once we cleanup the core.

What kind of interface will payment gateway offer?
Historical_Value
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
April 06, 2015, 05:38:38 PM
 #7


A lot of work has been done on refactoring Bytecoin Core’s source code. This process started with the version 0.8.11, which had Bytecoin high-level API interface declared for the first time. The newly released Bytecoin Reference Client v.1.0.3 is the next significant updated for the Bytecoin Core.

Here I will explain what has been happening under the Bytecoin's hood and what our technology vision is. This description is crucial to understand Bytecoin’s roadmap and the necessity to pursue its vector.

The v.1.0.3 release notes focus on the following updates:

  • In-process INode implementation for applications
  • Low-level ITransaction API interface for ordinary and multisig transactions
  • Simplewallet migration to high-level API (namely, INode plus IWallet)
  • Instant transaction notifications for in-process INode


Purpose of this update

V.1.0.3 is an important milestone on the way to standardize various components' access to Bytecoin network. It is also a requirement for Bytecoin GUI Wallet, which is coming out later this week.

We are currently getting Bytecoin Wallet ready for the release, and have already rolled out the new version of simplewallet. These wallets are very different, as simplewallet doesn't provide real-time interaction and shows only a tiny part of the information that Bytecoin Wallet has. However, both wallets are powered by exactly the same two high-level API interfaces: INode and IWallet. This allows us to greatly unify Bytecoin source code and improve development process efficiency.

What is even more important, the newly updated high-level API gives 3rd party developers the native access to all Bytecoin features. As of now, any developer wishing to create his own native Bytecoin wallet has all the tools available.

We firmly believe that for the vast majority of cases 3rd party developers should operate on the business logics level, not going into technological hardcore. Our high-level API (namely, INode and IWallet interfaces) serves that very purpose. It is much easier to operate with from inside a C++ application than the classical bytecoind and simplewallet REST API. It gives access to all main Bytecoin features in a convenient and comprehensible way. For example, you don't need to take care of an instance of simplewallet running in the background to power your GUI wallet. Business can focus on the user experience and let IWallet work out-of-box! And in case you need to have a higher level of control over CryptoNote protocol, utilize low-level ITransaction interface instead of high-level IWallet.

By introducing such a level of abstraction, we greatly simplify the experience of applications developers that work with Bytecoin. Our high-level API is a single point of responsibility. In case you need a method that is not yet provided, you may contact Bytecoin Support and have it implemented in the upcoming releases.


INode

Bytecoin network basics

Bytecoin depends on its peer-to-peer network, basic unit of which is a node. The most common node that you may find in the network is Bytecoin Reference Client daemon (bytecoind).

There are two general types of nodes:

  • Seed is a node that allows inbound connections.
  • Peer is a node that doesn't allow inbound connections (e.g. if its user chooses so or due to firewall network rules). Since all the nodes are frequently asking other seed nodes if anything new has happened in the network (a new block mainly), peers are still perfectly synced.

INode and Bytecoin network node

Currently there are two implementations of Bytecoin nodes available:

  • Standard bytecoind console daemon which is capable of using Bytecoin p2p protocol and providing RPC interface for external access.
  • INode, which is an API library that allows any C++ application to participate in Bytecoin p2p network on the blocks level. Any application that uses INode API library is indistinguishable from other network nodes.

Bytecoin’s daemon refactoring announced in Bytecoin roadmap implies, among other improvements, daemon migration to INode library. We are doing to this to unify Bytecoin technology core and allow any 3rd party developers to easily access all Bytecoin network features. The resulting application, whatever purpose it may have, will be a full-fledged Bytecoin node. Moreover, INode library is more efficient than the legacy bytecoind source code.

INode is one interface that has two implementations: proxying INode and in-process INode.

  • Proxying INode re-routes all the requests to another node (e.g. your localhost bytecoind or some other remote daemon).
  • In-process INode is a standalone network node that is capable of exactly everything the ordinary daemon can do. It is called "in-process" since it runs inside another application that requires Bytecoin network access.

Prior to Bytecoin v.1.0.3 only the proxying INode implementation was available. With an advent of in-process one, INode becomes much more flexible. For instance, if you have a local daemon running, the application that utilizes INode will choose its proxying implementation and connect to local bytecoind instead of launching a new in-process instance.


Bytecoin IWallet and ITransaction

While INode is capable of relaying and processing blocks, it cannot access any information regarding user funds or create transactions. However, there are certain applications (e.g. wallets) that require such methods.

Bytecoin team wanted to give a varying level of access to CryptoNote transactions core with two API interfaces:

  • IWallet operates on the business logics level. It is useful if you simply need to receive and send transactions, without going into CryptoNote protocol details. Should you require to transfer money with IWallet, you just need to indicate the receiver's address, the amount, and the mixing level. IWallet will do the hard work for you, as it will select the inputs, and then create, validate, sign, and broadcast the transaction.
  • ITransaction is a low-level interface that gives full access to CryptoNote transactions engine. It is designed for those applications that require strict control of transaction creation process. For instance, ITransaction allows you to select specific inputs, and has separate methods for signing and broadcasting a transaction. It also provides access to multisig functionality.

Both API interfaces are capable of doing exactly the same, but with varying level of detalization. That is why IWallet belongs to Bytecoin high-level API, while ITransaction is low-level.

Both new simplewallet and the upcoming Bytecoin Wallet have IWallet in their core. Just like INode interface can boast with better performance than legacy bytecoind, IWallet is a faster version of legacy simplewallet source code. As of version 1.0.3 simplewallet has migrated to this interface, which reduced the time required to process a single block by 15%.

To be precise, new Bytecoin simplewallet is a basic console program that uses IWallet and proxying INode. On the other hand, Bytecoin GUI Wallet utilizes IWallet and in-process INode (which automatically runs as proxying in case you already have an instance of bytecoind launched).

We expect the vast majority of applications to choose IWallet, while ITransaction is for those who require CryptoNote transactions fine-tuning. For instance, this level of access may be required by such services as payment processors. These applications often have their own custom logic of transaction creation and various complicated modules. ITransaction allows to split the transfer process according to the architecture needs.

Moreover, ITransaction also gives access to multisignature API that is capable of powering on-blockchain escrow services and foundation wallets. Bytecoin multisig belongs to M-of-N scheme. We will be covering multisignature in details in one of the next blog posts, but here you may find its description in laymen terms.


Conclusions

Said APIs are important to those businesses that want to operate with cryptocurrency easily, without sophisticated development and core’s explorations. These businesses can focus on marketing of their products; all the hard work of integration with our financial system is done by our reliable interfaces.


More details on v.1.0.3 Reference Client release

http://bytecoin.org/static/img/bytecoin-roadmap.png

In-process INode implementation for applications

INode is the high-level API interface that allows any application to utilize core features of Bytecoin p2p network. Its new implementation provides a full-fledged network node inside any C++ application. It also largely standardizes codebase and powers Bytecoin GUI Wallet, which is coming out later this week.

Low-level ITransaction API interface for ordinary and multisig transactions

Bytecoin low-level API interface provides 3rd party developers with a flexible access to CryptoNote transactions engine. It gives access to core functions that allow to create, validate, sign, and broadcast a transaction. It also provides multisig access.

This update is aimed for wallet and multisig applications developers. Bytecoin low-level API provides full control of CryptoNote transactions technology allowing you to select specific inputs of a transaction. It also gives tools to utilize multi-signature protocol and create such products as native escrow and M-of-N board wallets.

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Simplewallet migration to high-level API

Legacy simplewallet code has been migrated to the new high-level API libraries. Even though simplewallet remains the same from the user perspective, everything under its hood is completely redesigned. This update is the showcase and reference implementation of Bytecoin high-level IWallet interface. Simplewallet operates through proxying INode interface only, so it still requires a running daemon.


Further reading

Bytecoin roadmap (discussion)
INode on Bytecoin wiki
IWallet on Bytecoin wiki
ITransaction on Bytecoin wiki

Great news! Now it's the best time to get BCN to the moon!!
Ullo (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 06, 2015, 05:45:17 PM
 #8

Thank you for details.

C++ interfaces are very important but for business integration other languages are even more important: the vast majority of web sites use PHP, Python and other. Not C++! Do you plan to implement INode/IWallet/ITransaction bindings for Python/Perl/Java/Node.js and other languages and tools?

First we greatly simplify the C++ applications development. In version 1.0.4 we are going to release a payment gateway, which is the most common case for external services. It is a robust demonized payment server that is tailored to most business requirements. Other implementations are going to be developed once we cleanup the core.

What kind of interface will payment gateway offer?

It's JSON RPC.

Bytecoin BCN core team: https://bytecoin.org/
dulldog
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
April 06, 2015, 05:52:56 PM
 #9

OK, so Bytecoin developers have made something good again.  But where can I download Bytecoin GUI? I haven't found any links niether in the main thread, nor on the official website.  Community doesn't  help too.

Bytecoin GUI-wallet will be published together with the next release by the end of this week.

But why haven't you published GUI-wallet today? I mean it would be much more important for the community. I guess most of the people, including me, are strangers to informatics and will gather nothing out of this technical description. I do understand how splendid this all is and how much you made for Bytecoin and Cryptonote technology development and so on. But it would be the best you finally developed something for the people too.
cryptonight.net
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile WWW
April 06, 2015, 05:58:56 PM
 #10

Thank you for details.

C++ interfaces are very important but for business integration other languages are even more important: the vast majority of web sites use PHP, Python and other. Not C++! Do you plan to implement INode/IWallet/ITransaction bindings for Python/Perl/Java/Node.js and other languages and tools?

First we greatly simplify the C++ applications development. In version 1.0.4 we are going to release a payment gateway, which is the most common case for external services. It is a robust demonized payment server that is tailored to most business requirements. Other implementations are going to be developed once we cleanup the core.

What kind of interface will payment gateway offer?

It's JSON RPC.

Ok. This is the interface bindings could be wrapped around.
Ullo (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 06, 2015, 06:00:16 PM
 #11

OK, so Bytecoin developers have made something good again.  But where can I download Bytecoin GUI? I haven't found any links niether in the main thread, nor on the official website.  Community doesn't  help too.

Bytecoin GUI-wallet will be published together with the next release by the end of this week.
But why haven't you published GUI-wallet today? I mean it would be much more important for the community. I guess most of the people, including me, are strangers to informatics and will gather nothing out of this technical description. I do understand how splendid this all is and how much you made for Bytecoin and Cryptonote technology development and so on. But it would be the best you finally developed something for the people too.

Bytecoin Reference Client release v.1.0.3 is very important per se. First of all, it finalizes a long work on the Bytecoin core. Secondly, it is a groundwork for Bytecoin GUI Wallet. We wanted everything rolled out and going live for a couple of days before we actually release the GUI wallet. If you check out the amount of changes on github, you may understand why we decided to split the two releases this time.

Bytecoin BCN core team: https://bytecoin.org/
darthcoin
Full Member
***
Offline Offline

Activity: 147
Merit: 100


View Profile
April 06, 2015, 06:17:49 PM
 #12

Oh, here's the long-awaited update! Thank you guys, you put so much effort into this and develop really great stuff. I suppose you're the most competent among all cryptonote currencies developers, I missed it. You even made everything on time! I'm gonna go buy lots of BCN and then try to read a bit what kind of hardocre technological stuff is released this time by Bytecoin team  Cool
DStrange
Sr. Member
****
Offline Offline

Activity: 336
Merit: 251


View Profile
April 06, 2015, 06:21:51 PM
 #13

Oh, here's the long-awaited update! Thank you guys, you put so much effort into this and develop really great stuff. I suppose you're the most competent among all cryptonote currencies developers, I missed it. You even made everything on time! I'm gonna go buy lots of BCN and then try to read a bit what kind of hardocre technological stuff is released this time by Bytecoin team  Cool

Thank you! Bytecoin team does our best for you.

dulldog
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
April 06, 2015, 06:28:34 PM
 #14

Do I get it right that every next release will be devided into two different parts?  (I refer to the roadmap image in OP). So at first, things on the left side will be published and then things on the right side?
Wanesst
Sr. Member
****
Offline Offline

Activity: 421
Merit: 250



View Profile
April 06, 2015, 06:31:53 PM
 #15

I've stressed several times that I believe in Bytecoin and the Bytecoin cool developers!

Go, Bytecoin devs team!

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Also, am I right to say that the introduction of this new feature means that unlike other cryptocurrencies I would be able to pay for coffee and not to wait until my transaction is completed?

Rias
Sr. Member
****
Offline Offline

Activity: 373
Merit: 250


View Profile
April 06, 2015, 06:41:57 PM
 #16

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Also, am I right to say that the introduction of this new feature means that unlike other cryptocurrencies I would be able to pay for coffee and not to wait until my transaction is completed?

In Bitcoin there are payment services such as Bitpay that take care of your transaction and take extra risks to ensure it's fast. Also I'm not sure this what was originally mentioned by Ullo.
Wanesst
Sr. Member
****
Offline Offline

Activity: 421
Merit: 250



View Profile
April 06, 2015, 06:50:27 PM
 #17

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Also, am I right to say that the introduction of this new feature means that unlike other cryptocurrencies I would be able to pay for coffee and not to wait until my transaction is completed?

In Bitcoin there are payment services such as Bitpay that take care of your transaction and take extra risks to ensure it's fast. Also I'm not sure this what was originally mentioned by Ullo.

Does it mean that after Bytecoin devs add instant transactions notification Bytecoin would not need Bitpay and Coinbase?

DStrange
Sr. Member
****
Offline Offline

Activity: 336
Merit: 251


View Profile
April 06, 2015, 06:56:00 PM
 #18

Do I get it right that every next release will be devided into two different parts?  (I refer to the roadmap image in OP). So at first, things on the left side will be published and then things on the right side?


No, we made it for more convenient perception of roadmap. Only this update will be divided into 2 parts.

Ullo (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile WWW
April 06, 2015, 07:01:07 PM
 #19

Instant transactions notification

With this feature Bytecoin transactions become real-time. When Alice broadcasts her newly created Bytecoin transaction to Bob, his wallet will immediately recognize it and update Bob's balance before the transaction is included in the blockchain. This is achieved through IWallet API interface that subscribes to all the transactions of the node it is connected to and instantly recognizes the transactions sent to you.

Also, am I right to say that the introduction of this new feature means that unlike other cryptocurrencies I would be able to pay for coffee and not to wait until my transaction is completed?

In Bitcoin there are payment services such as Bitpay that take care of your transaction and take extra risks to ensure it's fast. Also I'm not sure this what was originally mentioned by Ullo.

To be honest, I didn't expect this feature to raise questions. Let me clarify a little on instant transactions notification.
We have added this feature so that Bytecoin users get a transparent way to ensure that the transaction has been successfully send. When Alice sends Bob 1 BCN, he will get notified immediately. The transaction is not yet confirmed and not yet included into the block. It shows that Bytecoin network will take care of everything else, and your part as a user is done.

However, there is no guarantee that each and every sent transaction will be included in the blockchain. It has to be chosen by the miner that founds a block, so there's a minor chance that the new transaction will not be confirmed at all. The notification feature is merely for your convenience and does not mean that you've gained the ownership right of the money that is being sent to you yet. It also improves user experience for 3rd party services, as you make the deposit and instantly see that transaction went through to your account but is not yet confirmed.

Bytecoin BCN core team: https://bytecoin.org/
Rias
Sr. Member
****
Offline Offline

Activity: 373
Merit: 250


View Profile
April 06, 2015, 07:04:28 PM
 #20

Does it mean that after Bytecoin devs add instant transactions notification Bytecoin would not need Bitpay and Coinbase?

Bitpay is a convenient way to process payments for services, take care of the rate fluctuation risks and much more. It's not just instant transactions, otherwise there wouldn't have been business behind it. It's a party that takes care of systematic headaches of the merchants, eliminates some of their risks, and gets fee for that.

And nobody can stop you from creating your own Bitpay, Bytepay, whatever.
Pages: [1] 2 3 »  All
  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!