Daniel Larimer
fa9b71a463
Merge branch 'master' of github.com:cryptonomex/graphene
2015-07-27 17:50:24 -04:00
Daniel Larimer
86564e2a1b
Resolve #207 Add API to get required fees.
2015-07-27 17:50:02 -04:00
Eric Frias
6d2b1a3648
Win32 compile fixes (missing includes, workaround for bugs in c++ parser)
2015-07-27 12:09:34 -04:00
Daniel Larimer
662dd04e45
Fix #206 , adding api to return available vesting balance
2015-07-24 17:28:58 -04:00
Daniel Larimer
be65c277c9
Implement and Test Confidential Transactions
...
This checkin contains a fully functional confidential transaction
integration with passing unit tests.
2015-07-22 14:45:13 -04:00
Daniel Larimer
3e41f726a7
Issue #45 Market Subscription Standardization
...
When subscribing to markets the callback will now receive something that
looks like this:
[ "REMOVED ID1", "REMOVED ID2", ...,
{ "id": "UPDATED ID3", data... },
{ "id": "UPDATED ID4", data... },
...
[ FILL_OPERATION_TYPE_ID, { fill order operation data } ],
[ FILL_OPERATION_TYPE_ID, { fill order operation data } ],
[ FILL_OPERATION_TYPE_ID, { fill order operation data } ],
[ FILL_OPERATION_TYPE_ID, { fill order operation data } ]
]
When ever an order is removed from the order book, its ID will be
included as a string. When an order is modified the new order data is included as
an object. And the operations describing how orders were matched and
what fees are paid will be included as an operation, aka array.
Also added means to unsubscribe from full account data (issue #166 )
2015-07-21 15:51:22 -04:00
Daniel Larimer
dffc83cca9
Refactor full account subscriptions
...
When subscribing to an account via the get_full_account API it will
start streaming any object relevant to the account that is added,
removed, or modified.
2015-07-21 15:19:52 -04:00
Daniel Larimer
c77cb49cc2
adding new API calls that can be used to check required signatures on transactions
2015-07-20 18:27:09 -04:00
Vikram Rajkumar
d0b8c66aad
Fix Linux Clang build with missing includes; resolve #174
2015-07-20 14:57:08 -04:00
Daniel Larimer
e4c29cbe78
#166 Define type-safe API for get_full_account()
2015-07-17 22:58:36 -04:00
Nathan Hourt
0fe9276c44
[GUI] Refactor ClientDataModel, implement account balances
2015-07-17 16:06:39 -04:00
Nathan Hourt
723b11533b
Progress #166 : Initial implementation of get_full_accounts API call
2015-07-16 17:04:35 -04:00
Daniel Larimer
8ff2c94c52
Update API to address #164
2015-07-16 14:28:23 -04:00
Vikram Rajkumar
2f429e07f1
Rename bad references to delegate -> committee member; #147
2015-07-13 16:08:17 -04:00
Daniel Larimer
786c65d4b4
Merge branch 'master' into fee_refactor
2015-07-09 08:43:45 -04:00
Daniel Larimer
fdcf821c41
Progress on #144 - refactoring fee schedule
2015-07-08 18:45:53 -04:00
theoreticalbts
d31e0108b4
app: Implement username / password based API access #139
2015-07-07 16:04:22 -04:00
theoreticalbts
1dd7316d44
Split network API into network_broadcast_api and network_node_api #118
2015-07-07 16:04:04 -04:00
Daniel Larimer
fefa0f65f8
Issue #106 - Removing KeyObject
...
- this is a major refactor of the code and may have broken some behavior
in the wallet or witness nodes.
- this commit changes the serialization of operations
- the chain_tests pass
2015-07-02 01:52:45 -04:00
Eric Frias
acd595f889
Add missing functions for registering delegates
2015-07-01 17:47:39 -04:00
Eric Frias
9856d5e8fd
Fix CLI commands for creating witnesses, add commands for listing
...
witnesses, registering witness url.
Derive memo, witness, etc. keys from the active key.
Make witness_create_operation accept relative key identifiers.
Prevent wif_to_key from throwing on invalid base58 input.
Make witness_node accept witness keys in WIF format.
2015-06-30 17:54:19 -04:00
Daniel Larimer
9dc7189dd6
adding ability to receive a callback when a broadcast transaction is actually included in a block
2015-06-30 17:28:16 -04:00
Daniel Larimer
8b546cbf60
adding get_transaction api call
2015-06-29 18:48:47 -04:00
Daniel Larimer
d3391c0fe5
#98 Implement Balance Object and Evaluator
2015-06-27 11:49:41 -04:00
Daniel Larimer
e41d08d843
added callback with 'deleted' objects
2015-06-25 15:07:13 -04:00
Daniel Larimer
e7ec05f545
#74 Adding API call to get all call orders for a given account type
2015-06-24 21:09:21 -04:00
Daniel Larimer
23a633bea1
#85 adding api call get_keys_for_address
2015-06-24 16:19:33 -04:00
Daniel Larimer
ffd797c048
adding API call to return all accounts that reference a particular key id or account
2015-06-24 15:38:28 -04:00
Daniel Larimer
af812a7b51
#47 Adding API to get the available history buckets based upon the configuration
2015-06-24 12:46:03 -04:00
Daniel Larimer
20a10a074b
Issue #47 market history added to api
2015-06-23 18:23:41 -04:00
Daniel Larimer
962310b415
adding API call to get proposed transactions for an account
2015-06-22 17:50:50 -04:00
Nathan Hourt
3eaec849eb
Progress #61 : Getting witnesses/delegates by owner
...
Support and API are now present for retrieving witnesses and delegates
by their owners.
2015-06-22 15:03:24 -04:00
Daniel Larimer
4cee2ca608
Update plugins and wallet to remove shorts
2015-06-16 11:22:28 -04:00
Eric Frias
93ecffc8a8
When get_account_balances is called with an empty list of assets,
...
return balances for all assets. This fixes the wallet's
list_account_balances, which always returned an empty list.
2015-06-11 14:41:05 -04:00
Daniel Larimer
d57c0e0031
Fix #25 - listing all assets when given empty string
2015-06-09 16:31:07 -04:00
Daniel Larimer
666ffd07ae
Fix #27 - return true on subscribe_to_objects
2015-06-09 16:24:55 -04:00
Daniel Larimer
d1f3ce8543
Issue #29 - get_short_orders crashes for UIA
2015-06-09 16:17:26 -04:00
Nathan Hourt
0a945b0257
Initial commit
2015-06-08 12:36:37 -04:00