Ivan Tivonenko
|
c9704137b7
|
fix handling memos in prepareSettings
boost coverage back to 99.88%
move connection tests to separate file
group test fixtures into namespaces
|
2015-11-25 02:10:54 +02:00 |
|
Ivan Tivonenko
|
995606b1e6
|
boost coverage to almost 100%
|
2015-11-23 17:06:55 -08:00 |
|
Chris Clark
|
7f33d8a71e
|
BREAKING CHANGE: prepareOrderCancellation now takes orderCancellation specification instead of sequence
|
2015-11-23 12:45:44 -08:00 |
|
Chris Clark
|
a271b9e816
|
Merge pull request #641 from clark800/ledger-event
BREAKING CHANGE: Rename "ledgerClosed" event to "ledger" and convert drops amounts to XRP
|
2015-11-20 11:30:35 -08:00 |
|
Chris Clark
|
8a3d4a64db
|
BREAKING CHANGE: Rename "ledgerClosed" event to "ledger" and convert drops amounts to XRP
|
2015-11-20 11:23:19 -08:00 |
|
Alan Cohen
|
7514213918
|
Fix: Specify send_max when pathfinding with a source amount
When specifying a fixed sending amount during a pathfind request, the source
amount is specified as a `send_max` field. This fixes a bug where the amount was
specified as `source_amount`. Leading to strange pathfinding behavior.
Example bad behavior (rippled pathfind request/response):
```
{
"command": "ripple_path_find",
"source_account": "rM21sWyMAJY1oqzgnweDatURxGMurBs7Kf",
"destination_account": "raDjTrcEtyMqZT6s3PyKGcikUJqYNXUPPv",
"destination_amount": {
"currency": "EUR",
"issuer": "raDjTrcEtyMqZT6s3PyKGcikUJqYNXUPPv",
"value": -1
},
"source_amount": {
"currency": "USD",
"issuer": "rM21sWyMAJY1oqzgnweDatURxGMurBs7Kf",
"value": "9.9"
},
"id": 2
}
{
"id": 2,
"result": {
"alternatives": [
{
"destination_amount": {
"currency": "EUR",
"issuer": "raDjTrcEtyMqZT6s3PyKGcikUJqYNXUPPv",
"value": "147520.7583553951"
},
"paths_canonical": [],
"paths_computed": [
[
{
"account": "r9HqF3wexBb1vtu2DfZKiFuyy3HoTAwUnH",
"type": 1,
"type_hex": "0000000000000001"
},
{
"currency": "EUR",
"issuer": "raDjTrcEtyMqZT6s3PyKGcikUJqYNXUPPv",
"type": 48,
"type_hex": "0000000000000030"
}
]
],
"source_amount": {
"currency": "USD",
"issuer": "rM21sWyMAJY1oqzgnweDatURxGMurBs7Kf",
"value": "160510.6025237665"
}
}
],
"destination_account": "raDjTrcEtyMqZT6s3PyKGcikUJqYNXUPPv",
"destination_currencies": [
"EUR",
"XRP"
],
"ledger_current_index": 2771044,
"validated": false
},
"status": "success",
"type": "response"
}
```
https://ripple.com/build/rippled-apis/#ripple-path-find
|
2015-11-20 10:44:21 -08:00 |
|
Chris Clark
|
4f90bbd931
|
Add resultCode and resultMessage to submit failure RippledError
|
2015-11-17 17:33:36 -08:00 |
|
Ivan Tivonenko
|
f146ea05c7
|
add test case for get transaction of types
suspendedPaymentExecution, suspendedPaymentCancellation, suspendedPaymentCreation
|
2015-11-17 23:43:01 +02:00 |
|
Chris Clark
|
2422b9a30b
|
Update README for RippleAPI
|
2015-11-17 11:30:26 -08:00 |
|
Chris Clark
|
83a85a4549
|
Remove walletLocator and walletSize from settings
|
2015-11-16 13:07:25 -08:00 |
|
Chris Clark
|
420413268d
|
Rename server info response fields
|
2015-11-16 13:07:25 -08:00 |
|
Chris Clark
|
c1bf1fd211
|
Rename "paymentSequence" to "suspensionSequence" in suspended payments
|
2015-11-16 13:07:25 -08:00 |
|
Chris Clark
|
9af20f9176
|
Simplify "submit" response
|
2015-11-16 13:07:22 -08:00 |
|
Chris Clark
|
230a80852a
|
Remove "closed" from getLedger response
|
2015-11-16 11:44:15 -08:00 |
|
Chris Clark
|
ed8f1e4111
|
Support removing RegularKey
|
2015-11-16 10:24:02 -08:00 |
|
Chris Clark
|
5a8e4be9df
|
Add descriptions to JSON schemas and organize for documentation generation
|
2015-11-13 15:05:53 -08:00 |
|
Chris Clark
|
e267e4131b
|
Merge pull request #625 from clark800/json-schemas
Organize JSON schemas for documentation generation
|
2015-11-06 12:50:10 -08:00 |
|
Chris Clark
|
782adc6a1a
|
Organize JSON schemas for documentation generation
|
2015-11-06 11:57:33 -08:00 |
|
Chris Clark
|
dce8b2d61a
|
Merge pull request #624 from clark800/misc
Better error message when using methods that require a connection when servers are not provided
|
2015-11-03 11:05:21 -08:00 |
|
Chris Clark
|
8074baa3b5
|
Better error message when using methods that require a connection when servers are not provided
|
2015-11-02 14:50:38 -08:00 |
|
Chris Clark
|
6cc8c5a0f4
|
BREAKING CHANGE: Specify ledger close time and suspended payment timestamps in ISO 8601 format
|
2015-11-02 12:34:50 -08:00 |
|
Chris Clark
|
c7b021c7be
|
Fix and reorganize schemas and switch to ajv validator
|
2015-10-30 14:28:50 -07:00 |
|
Chris Clark
|
2aa1695b74
|
Delete obsolete files and update LICENSE file
|
2015-10-30 14:25:33 -07:00 |
|
Chris Clark
|
665f5f9664
|
Add support for order expiration
|
2015-10-29 17:25:52 -07:00 |
|
Chris Clark
|
6c2fad508a
|
Expose computeLedgerHash and prevent access to non-validated ledgers
|
2015-10-28 15:39:43 -07:00 |
|
Chris Clark
|
c238596a81
|
Emit Connection errors on RippleAPI, remove unused exports, use ripple-hashes in sign
|
2015-10-28 11:33:51 -07:00 |
|
Chris Clark
|
87dac75919
|
Cleanup error classes
|
2015-10-27 17:14:23 -07:00 |
|
Chris Clark
|
97747deed9
|
Delete core, move "api" directory up to "src", and remove unused dependencies
|
2015-10-27 12:37:07 -07:00 |
|
Chris Clark
|
29c933e31b
|
Merge pull request #612 from clark800/delete-core
BREAKING CHANGE: Remove dependency of src/api on src/core, removes multiserver support
|
2015-10-27 11:54:29 -07:00 |
|
Chris Clark
|
cd5eedff84
|
Rename toTimestamp/fromTimestamp
|
2015-10-26 17:46:57 -07:00 |
|
Chris Clark
|
1a99a2fddb
|
BREAKING CHANGE: Remove dependency of src/api on src/core, removes multiserver support
|
2015-10-26 16:28:43 -07:00 |
|
sublimator
|
c867f2a29a
|
Merge pull request #603 from wltsmrz/add-basic-auth
Add basic auth
|
2015-10-24 10:18:56 +07:00 |
|
wltsmrz
|
f65b673451
|
Add basic auth
|
2015-10-22 23:03:48 -07:00 |
|
Chris Clark
|
391a9fd260
|
Switch back to ripple_path_find
|
2015-10-22 17:51:16 -07:00 |
|
Chris Clark
|
3de0030d07
|
Add ledger version range checking to Connection class
|
2015-10-22 14:34:44 -07:00 |
|
Chris Clark
|
cd17d6940f
|
BREAKING CHANGE: getFee returns promise, express fee in XRP in instructions response, use rawRequest to start decoupling Remote from API
|
2015-10-22 14:34:42 -07:00 |
|
Chris Clark
|
5aa212471c
|
Merge pull request #606 from clark800/decouple-transaction
Decouple core.Transaction from API
|
2015-10-22 11:16:29 -07:00 |
|
Chris Clark
|
c324682ca3
|
Decouple core.Transaction from API
|
2015-10-21 11:48:40 -07:00 |
|
Matthew Fettig
|
aeb56dee17
|
rename metaData to meta on getLedger
|
2015-10-21 10:00:07 -07:00 |
|
Chris Clark
|
2c7ce4a107
|
Run integration tests in CI
|
2015-10-20 15:49:06 -07:00 |
|
Chris Clark
|
3fbde86548
|
Set FullyCanoncialSig flag and fix integration tests
|
2015-10-20 15:49:03 -07:00 |
|
Chris Clark
|
01ecd197ce
|
Merge pull request #601 from clark800/replace-core
Add Connection class
|
2015-10-20 10:38:00 -07:00 |
|
Chris Clark
|
15eb4c290a
|
Add Connection class
|
2015-10-19 17:32:45 -07:00 |
|
Chris Clark
|
de5d9335d1
|
Merge pull request #598 from clark800/remove-currency
Remove Currency class
|
2015-10-16 11:51:20 -07:00 |
|
Chris Clark
|
88a65f08d8
|
Merge pull request #596 from darkdarkdragon/develop-RLJS-520
getBalances fixes:
|
2015-10-16 10:54:16 -07:00 |
|
Chris Clark
|
837f7e6e9b
|
Remove Currency class
|
2015-10-16 10:48:09 -07:00 |
|
Ivan Tivonenko
|
4faa857330
|
getBalances fixes:
obey limit, do not return XRP if currency or issuer specified
|
2015-10-16 20:46:52 +03:00 |
|
Chris Clark
|
5ac2576fcf
|
Merge pull request #597 from clark800/remove-ieee754
Remove demurrage
|
2015-10-15 12:18:21 -07:00 |
|
Chris Clark
|
512817a2db
|
Remove demurrage
|
2015-10-15 11:56:39 -07:00 |
|
Chris Clark
|
0dc000839b
|
Use ripple-hashes
|
2015-10-14 15:48:40 -07:00 |
|