JoelKatz

Example of Applied Ripple Transaction

Apr 11th, 2013
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. A Ripple transaction:
  2.  
  3. "tx": {
  4. "Account": "rJQx7JpaHUBgk7C56T2MeEAu1JZcxDekgH",
  5. "Amount": "9000000000",
  6. "Destination": "rUrdFHbrEKWNQQ444zcTLrThjcnHCw2FPu",
  7. "Fee": "10",
  8. "Flags": 0,
  9. "Sequence": 2,
  10. "SigningPubKey": "037F66431DFCF2F94A7835435F6531DD07654666DCA2113F4FC7900030BF0D1CBF",
  11. "TransactionType": "Payment",
  12. "TxnSignature": "30450221008949A7D13D27623319C4AE7E4CA56C0B2560DA0E163260C237A601855C0C463402202CC8A386D6159037EAA9878D6D90B59030034ABF98FC6364FFD19130D01B5D58",
  13. "date": 414737420,
  14. "hash": "9AA18D832D8DAB7E0BA443BA8905886B49DE4CDFD46F7B09FDAAB1E21B772E61",
  15. "inLedger": 254754,
  16. "status": "committed"
  17. }
  18.  
  19. An excerpt from the ledger it as applied to showing the effects the transaction had:
  20.  
  21. "meta": {
  22. "AffectedNodes": [
  23. {
  24. "ModifiedNode": {
  25. "FinalFields": {
  26. "Account": "rUrdFHbrEKWNQQ444zcTLrThjcnHCw2FPu",
  27. "Balance": "13499999690",
  28. "Flags": 0,
  29. "OwnerCount": 5,
  30. "Sequence": 32
  31. },
  32. "LedgerEntryType": "AccountRoot",
  33. "LedgerIndex": "E618B57684430D15BEF53C52337E42E7C0F9D63D29BC54204E2255279F74D8F0",
  34. "PreviousFields": {
  35. "Balance": "4499999690"
  36. },
  37. "PreviousTxnID": "C23AE1F93FE154EADC8836526BFB7918BAFCDCE8703D2361702888FD31F6E585",
  38. "PreviousTxnLgrSeq": 250491
  39. }
  40. },
  41. {
  42. "ModifiedNode": {
  43. "FinalFields": {
  44. "Account": "rJQx7JpaHUBgk7C56T2MeEAu1JZcxDekgH",
  45. "Balance": "799999980",
  46. "Flags": 0,
  47. "OwnerCount": 0,
  48. "Sequence": 3
  49. },
  50. "LedgerEntryType": "AccountRoot",
  51. "LedgerIndex": "EE6239275CA2A4C1C01DB5B9E120B4C4C90C75632E2D7F524B14D7C66C12A38D",
  52. "PreviousFields": {
  53. "Balance": "9799999990",
  54. "Sequence": 2
  55. },
  56. "PreviousTxnID": "7FA58DF8A1A2D639D65AA889553EE19C44C770B33859E53BD7CE18272A81C06B",
  57. "PreviousTxnLgrSeq": 23095
  58. }
  59. }
  60. ],
  61. "TransactionIndex": 0,
  62. "TransactionResult": "tesSUCCESS"
  63. }
Advertisement
Add Comment
Please, Sign In to add comment