Commit Graph

  • 0b1caeb372 Update targetSdkVersion and compileSdkVersion. Severiano Jaramillo 2018-10-31 09:45:24 -0600
  • d66c8f0ff8 Removed unneeded log Nelson R. Perez 2018-10-24 19:52:50 -0500
  • 0fa75dcf22 Removed unneeded system log Nelson R. Perez 2018-10-23 15:32:47 -0500
  • 878bc52d78 Fixed problem with the comparation function between two FullNode instances Nelson R. Perez 2018-10-23 15:30:37 -0500
  • b70881dfb5 Updated build tools version Nelson R. Perez 2018-10-23 12:05:00 -0500
  • a6e5910144 Fixing issues with the LatencyNodeProvider#getSortedNodes() method Nelson R. Perez 2018-10-22 13:53:47 -0500
  • 8fb9bc57d6 Automatically trying to connect to the best node after DEFAULT_INITIAL_DELAY milliseconds, regardless of the completion of the node latency verifications Nelson R. Perez 2018-10-19 00:10:11 -0500
  • a5f0ba1345 Merge branch 'develop' of github.com:Agorise/graphenej into develop Nelson R. Perez 2018-10-18 18:00:19 -0500
  • d37d35e0c6 Returning latency as Long.MAX_VALUE instead of zero to non-initialized FullNode instances Nelson R. Perez 2018-10-18 17:57:27 -0500
  • 63eebf11c4 Exposing an interface that allows the fine tuning of the alpha parameter used to calculate the exponential moving average of measured latencies Nelson R. Perez 2018-10-18 17:36:34 -0500
  • 3a19808ac5 Moved the node list information out of the library, this must be provided by the application now Nelson R. Perez 2018-10-18 12:14:05 -0500
  • 36420e7f56 Trying to fix a NullPointerException by checking the refeence and enclosing the whole chunk of code into a syncronized block Nelson R. Perez 2018-10-15 18:35:26 -0500
  • d25a1f3fa0 Reduced the connection timeout from the default of 10 seconds to 2 seconds Nelson R. Perez 2018-10-12 18:36:11 -0500
  • d75957e5d1 Adding a new constructor to the GetFullAccounts API wrapper class Nelson R. Perez 2018-10-11 19:46:03 -0500
  • 69e5740d00 Merge branch 'develop' of github.com:Agorise/graphenej into develop Nelson R. Perez 2018-10-09 18:54:51 -0500
  • c773926ef7 Givingh the AccountOptionsDeserializer class more control over when it should de-serialize its UserAccount attribute and when it should skip it in order to prevent infinite recursion loops Nelson R. Perez 2018-10-09 18:54:41 -0500
  • 5ffda797b7 Merge branch 'develop' of github.com:Agorise/graphenej into develop Severiano Jaramillo 2018-10-09 11:33:08 -0500
  • 8bbf68ce6d Solve issue that caused Asset id's being saved localized into the database. It should always be saved in plain english. Severiano Jaramillo 2018-10-09 11:32:46 -0500
  • b361cf5830 Added support for the 'get_key_references' API call in the single-connection mode Nelson R. Perez 2018-10-08 19:55:49 -0500
  • 2618a6a3a0 Merge branch 'develop' of github.com:Agorise/graphenej into develop Nelson R. Perez 2018-10-04 13:44:11 -0500
  • 5a113ad7cc Added support fot the get_dynamic_global_properties API call in the single-connection mode Nelson R. Perez 2018-10-04 10:13:55 -0500
  • 857236a1ea Moved the service binding to the onActivityResumed callback Nelson R. Perez 2018-10-02 12:36:36 -0500
  • 25b7e6c8c6 Adding a very high latency to nodes that fail their connection Nelson R. Perez 2018-10-02 01:35:53 -0500
  • 694572b18d Merge branch 'develop' of github.com:Agorise/graphenej into develop Nelson R. Perez 2018-10-01 23:59:34 -0500
  • 740a75ae30 Updated the gradle plugin version Nelson R. Perez 2018-10-01 23:58:23 -0500
  • 5ef4ebfca7 Preventing a NullPointerException by checking the nodeLatencyVerifier reference first Nelson R. Perez 2018-10-01 23:58:03 -0500
  • a2e1bbd19c Remove non-working dexnode.net bitshares node Severiano Jaramillo 2018-09-28 22:32:01 -0500
  • 94423470ce Update gradle version and remove app version number from the Manifest Severiano Jaramillo 2018-09-28 20:54:33 -0500
  • b37bb9dce0 Merge branch 'develop' of github.com:Agorise/graphenej into develop Nelson R. Perez 2018-09-27 17:43:45 -0500
  • e357ffba66 Removed debug logs Nelson R. Perez 2018-09-27 17:42:51 -0500
  • 9374b125a1 Use a more descriptive value (simulating infinite) when the node could not be reached, in NodeLatencyVerifier Severiano Jaramillo 2018-09-27 13:10:28 -0500
  • bb14110b09 Fix small issue in the NodeLatencyVerifier that caused incorrect (very small) readings to no-reachable nodes due to no internet connection. Severiano Jaramillo 2018-09-27 11:33:18 -0500
  • d109d86bf3 - Storing connectivity status at the FullNode class - Flipping this flag accordingly at the NetworkService whenever we connect/disconnect from a specific node - Notifying the NodeLatencyVerifier of this change Nelson R. Perez 2018-09-26 17:17:31 -0500
  • 3bdfb777bf Avoid adding repeated nodes to the list of nodes in NetworkService. Severiano Jaramillo 2018-09-26 12:05:00 -0500
  • e107c014f0 The network service will retry a connection after 5 seconds in case of socket failure Nelson R. Perez 2018-09-23 20:50:39 -0500
  • 35570cb4a6 Fixing a potential NullPointerException at the NetworkService Nelson R. Perez 2018-09-21 13:29:47 -0500
  • a28775d464 Merge branch 'feat_ping_nodes' into develop Nelson R. Perez 2018-09-21 13:19:13 -0500
  • a3288165de - Activating the latency verificaton at the SampleApplication Nelson R. Perez 2018-09-20 21:51:41 -0500
  • ede7265989 NodeLatencyVerifier - Using an HttpUrl instance as a key to the map of FullNode instances, we were using simple String here before, but turned out not to be too reliable Nelson R. Perez 2018-09-20 21:51:14 -0500
  • 776630dd57 - Introduced some instrumented test dependencies - Fixed a problem in the LatencyNodeProvider#updateNode(FullNode) method - Fixed a bug in the LatencyNodeProvider#getSortedNodes() method - Introducing the NodeLatencyVerifier class Nelson R. Perez 2018-09-20 16:21:25 -0500
  • ccf61858e4 Modified the NetworkService and the NetworkServiceManager classes in order to pass arguments to the service via Intent extras and to allow delayed network connection Nelson R. Perez 2018-09-19 16:44:26 -0500
  • 25222e5ea9 Introducing the NodeProvider interface and its implementation LatencyNodeProvider Nelson R. Perez 2018-09-18 11:15:07 -0500
  • 8c89c93935 Added a couple of nodes to the list Nelson R. Perez 2018-09-18 11:14:34 -0500
  • 83ce2de14d Introducing the FullNode class, which keeps track of the delay to each full node it represents Nelson R. Perez 2018-09-17 17:48:49 -0500
  • 56fb257eb2 Merge branch 'feat_central_broker' into develop Nelson R. Perez 2018-09-17 13:08:28 -0500
  • 6a2939ab20 Added a getter and setter to the mNodeUrls private attribute of the NetworkService class Nelson R. Perez 2018-09-17 12:21:48 -0500
  • 9329d59ce7 Moved the Memo class Nelson R. Perez 2018-09-17 12:19:22 -0500
  • 66b0ce7cc1 Removed unused log Nelson R. Perez 2018-09-17 12:13:19 -0500
  • a3aa9956e3 Adding serialization capabilities for parameters that are themselves arrays of Integer or Long types, like what we need to properly serialize the 'get_account_history_by_operations' API call Nelson R. Perez 2018-09-13 15:50:18 -0500
  • 4f39dac4c2 Registering the proper de-serializer on the GetRelativeAccountHistory API response handler Gson instance Nelson R. Perez 2018-09-11 17:58:00 -0500
  • 0437919bb8 Fixing problem with the de-serialization procedure of the 'get_full_accounts' API call response Nelson R. Perez 2018-09-06 23:46:42 -0500
  • 39048b1096 Adding the de-serializer of the BaseOperation class to the Gson instance used to handle the notification message Nelson R. Perez 2018-09-06 23:30:59 -0500
  • 6abd71252e Added support for the 'get_full_accounts' API call in the single connecton mode Nelson R. Perez 2018-09-06 18:09:18 -0500
  • 7d5cfbf14b Merge branch 'feat_central_broker' of github.com:Agorise/graphenej into feat_central_broker Nelson R. Perez 2018-09-05 21:05:13 -0500
  • 229590457b - Added support for the 'get_account_history_by_operations' API call - Introduced a test case for the de-serialization of the HistoryOperationDetail object instance - Making the sample app use the newly introduced 'get_account_history_by_operations' API call Nelson R. Perez 2018-09-05 21:04:46 -0500
  • 52e0196744 Merge branch 'feat_central_broker' of github.com:Agorise/graphenej into feat_central_broker Nelson R. Perez 2018-08-31 19:07:14 -0500
  • 63bb5a6dac Sending id as a number inside the parameters array of the 'set_subscribe_callback' instead of a string Nelson R. Perez 2018-08-31 19:07:05 -0500
  • f8326093a2 Adjusted code in order to broadcast internally responses with empty results, which were skipped before Nelson R. Perez 2018-08-31 18:11:57 -0500
  • 7e2ef7b705 Added support for message subscriptions on the single connection mode Nelson R. Perez 2018-08-30 22:32:50 -0500
  • d2390b0a45 Updating the private key whenever the brainkey's sequence number is updated Nelson R. Perez 2018-08-28 21:26:35 -0500
  • 1e2716e89e Added a setter to the BrainKey sequence number Nelson R. Perez 2018-08-28 20:25:11 -0500
  • eeb6d48d9f Merge branch 'feat_central_broker' of github.com:Agorise/graphenej into feat_central_broker Nelson R. Perez 2018-08-16 23:59:55 -0500
  • 81d61986ea Added support for the GetLimitOrders API call in the single connection mode Nelson R. Perez 2018-08-16 23:59:14 -0500
  • 119a7cafba Updating gradle plugin version Nelson R. Perez 2018-08-16 23:58:54 -0500
  • 21f40eb025 Updated gradle plugin version Nelson R. Perez 2018-08-13 10:46:36 -0500
  • bad3bdaff8 Broadcasting the ConnectionStatusUpdate.AUTHENTICATED event Nelson R. Perez 2018-08-09 09:38:25 -0500
  • de3dc2b120 Added support for the get_account_by_name API call wrapper in the single connection mode Nelson R. Perez 2018-08-08 18:53:57 -0500
  • 4d7f2a28a5 Removed old MainActivity class Nelson R. Perez 2018-08-08 17:00:47 -0500
  • 66ce8a4ba4 - Modified the ConnectionStatusUpdate class in order to allow it to send more than just connection/disconnection events - Allowing the NetworkService to be queried about specific API ids Nelson R. Perez 2018-07-26 17:13:55 -0500
  • 364c31c78c Merge branch 'feat_central_broker' of github.com:Agorise/graphenej into feat_central_broker Nelson R. Perez 2018-07-25 13:08:30 -0500
  • 140cab48cd Added support for the list_assets API call wrapper in the single connection mode Nelson R. Perez 2018-07-25 13:08:09 -0500
  • 5955e1c823 Compacting code a little bit Nelson R. Perez 2018-07-25 11:33:12 -0500
  • e0457c2ad8 Merge branch 'feat_central_broker' of github.com:Agorise/graphenej into feat_central_broker Nelson R. Perez 2018-07-03 12:36:16 -0500
  • 9eacd57889 Updating the gradle plugin version Nelson R. Perez 2018-07-03 12:36:13 -0500
  • 222fd88afa - Added partial support for the 'get_objects' API call in the single connection mode - Changed the layout of the sample app in order to present a list of all supported API calls in the first activity - Introducing a specific activity to perform the API calls in the sample app Nelson R. Perez 2018-06-28 23:42:40 -0500
  • c5ffc614f4 Updating the constraintlayout library and introducing the design layout Nelson R. Perez 2018-06-28 23:40:59 -0500
  • 7a335317f4 Updating the api target version and including the recyclerview in the sample app project Nelson R. Perez 2018-06-27 16:48:20 -0500
  • 2d579df6af Upgrading gradle plugin and rxjava versions Nelson R. Perez 2018-06-27 15:30:43 -0500
  • 415e41ae11 Added support for the get_account_history API call Nelson R. Perez 2018-06-20 17:23:15 -0500
  • 05699df638 Introducing support for the LookupAssetSymbol api call wrapper in the single connection mode Nelson R. Perez 2018-06-16 14:54:17 -0500
  • 918d27b5cd Fixed problem caused by the lack of registered API id for calls that don't require any API Nelson R. Perez 2018-06-15 18:26:59 -0500
  • 7197ea4078 Fixed a big problem that was causing some random responses not to be de-serialized due to a mistake in the removal of entries in the request class map Nelson R. Perez 2018-06-14 22:16:34 -0500
  • be33c91823 Only sending a message if we have the API id Nelson R. Perez 2018-06-14 11:50:35 -0500
  • 3159a44c3a Returning -1 if no message was sent Nelson R. Perez 2018-06-14 00:02:10 -0500
  • 7c84187681 Deserializing the response to the get_market_history API call and checking the websocket for a null reference before using it Nelson R. Perez 2018-06-13 22:18:36 -0500
  • 0df3fad6c0 Introducing support for the GetMarketHistory api call wrapper using the single connection mode Nelson R. Perez 2018-06-12 23:27:06 -0500
  • e056c16aa9 - Added back the files for the sample project to the repository - Updated the sample project to test the 'get_block_header' api call wrapper using the single connection mode Nelson R. Perez 2018-06-12 13:56:59 -0500
  • 85bf1d1ba1 Introducing support for the GetBlockHeader api call in the single-connection mode Nelson R. Perez 2018-06-12 13:34:42 -0500
  • 4f6b628891 Introducing the SkipAssetOptionsStrategy class, used to avoid falling into an infinite loop while deserializing/serializing results from the get_relative_account_history API call Nelson R. Perez 2018-06-11 23:48:35 -0500
  • 7582fefd0e Introducing support for the GetRelativeAccountHistory api call in the single-connection mode Nelson R. Perez 2018-06-11 15:40:01 -0500
  • 8c5d48f71d Reorganized the layout of the sample app Nelson R. Perez 2018-06-11 15:13:09 -0500
  • 8ed74dbaed GetBlock constructor now receives an argument of type long Nelson R. Perez 2018-06-11 15:12:48 -0500
  • 56c808c353 Added a toString to the PublicKey class Nelson R. Perez 2018-06-11 15:12:16 -0500
  • 57f8fb1aa4 Changed remaining packages references Nelson R. Perez 2018-06-08 18:43:30 -0500
  • 7c6dd95f2c Changed the sample app's package name Nelson R. Perez 2018-06-08 18:42:30 -0500
  • c71d9802ba Correctly deserializing the GetRequiredFees API call's response Nelson R. Perez 2018-06-06 10:50:14 -0500
  • 7c79c7f5bf - Introduced the DeserializationMap class in order to keep a mapping between request and response classes, and how to de-serialize them - Fixed an infinite loop that was introduced in the de-serialization of the AccountProperties - Implementing the GetAccounts wrapper in the sample app Nelson R. Perez 2018-06-05 23:11:28 -0500
  • c956ebadc1 Fixed problem with the new GetAccounts API wrapper Nelson R. Perez 2018-06-04 22:39:44 -0500
  • 40222055aa Including usage of the GetAccounts API call using the single service conection in the sample app Nelson R. Perez 2018-06-04 22:10:55 -0500
  • aa758a09e0 Added support for the GetAccount api call in the new service-based single connection scheme Nelson R. Perez 2018-06-04 22:10:03 -0500