ripple-binary-codec 1.5.0-beta.2 → 1.5.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/binary.d.ts +23 -7
- package/dist/binary.js +54 -33
- package/dist/binary.js.map +1 -1
- package/dist/coretypes.d.ts +2 -2
- package/dist/coretypes.js +33 -9
- package/dist/coretypes.js.map +1 -1
- package/dist/enums/bytes.d.ts +26 -0
- package/dist/enums/bytes.js +64 -0
- package/dist/enums/bytes.js.map +1 -0
- package/dist/enums/constants.d.ts +4 -0
- package/dist/enums/constants.js +8 -0
- package/dist/enums/constants.js.map +1 -0
- package/dist/enums/definitions.json +108 -138
- package/dist/enums/field.d.ts +29 -0
- package/dist/enums/field.js +59 -0
- package/dist/enums/field.js.map +1 -0
- package/dist/enums/index.d.ts +12 -48
- package/dist/enums/index.js +42 -124
- package/dist/enums/index.js.map +1 -1
- package/dist/enums/src/enums/definitions.json +108 -138
- package/dist/enums/utils-renumber.js +14 -14
- package/dist/enums/utils-renumber.js.map +1 -1
- package/dist/enums/xrpl-definitions-base.d.ts +44 -0
- package/dist/enums/xrpl-definitions-base.js +59 -0
- package/dist/enums/xrpl-definitions-base.js.map +1 -0
- package/dist/enums/xrpl-definitions.d.ts +21 -0
- package/dist/enums/xrpl-definitions.js +29 -0
- package/dist/enums/xrpl-definitions.js.map +1 -0
- package/dist/hash-prefixes.js +3 -3
- package/dist/hash-prefixes.js.map +1 -1
- package/dist/hashes.js +21 -43
- package/dist/hashes.js.map +1 -1
- package/dist/index.d.ts +14 -16
- package/dist/index.js +62 -24
- package/dist/index.js.map +1 -1
- package/dist/ledger-hashes.d.ts +5 -2
- package/dist/ledger-hashes.js +54 -29
- package/dist/ledger-hashes.js.map +1 -1
- package/dist/quality.js +18 -21
- package/dist/quality.js.map +1 -1
- package/dist/serdes/binary-parser.d.ts +6 -3
- package/dist/serdes/binary-parser.js +82 -57
- package/dist/serdes/binary-parser.js.map +1 -1
- package/dist/serdes/binary-serializer.d.ts +1 -1
- package/dist/serdes/binary-serializer.js +59 -40
- package/dist/serdes/binary-serializer.js.map +1 -1
- package/dist/shamap.js +72 -98
- package/dist/shamap.js.map +1 -1
- package/dist/types/account-id.js +18 -35
- package/dist/types/account-id.js.map +1 -1
- package/dist/types/amount.js +71 -88
- package/dist/types/amount.js.map +1 -1
- package/dist/types/blob.js +10 -27
- package/dist/types/blob.js.map +1 -1
- package/dist/types/currency.js +26 -44
- package/dist/types/currency.js.map +1 -1
- package/dist/types/hash-128.d.ts +6 -0
- package/dist/types/hash-128.js +23 -25
- package/dist/types/hash-128.js.map +1 -1
- package/dist/types/hash-160.js +8 -25
- package/dist/types/hash-160.js.map +1 -1
- package/dist/types/hash-256.js +8 -25
- package/dist/types/hash-256.js.map +1 -1
- package/dist/types/hash.js +20 -38
- package/dist/types/hash.js.map +1 -1
- package/dist/types/index.d.ts +3 -24
- package/dist/types/index.js +39 -28
- package/dist/types/index.js.map +1 -1
- package/dist/types/issue.js +24 -41
- package/dist/types/issue.js.map +1 -1
- package/dist/types/path-set.js +57 -87
- package/dist/types/path-set.js.map +1 -1
- package/dist/types/serialized-type.d.ts +3 -3
- package/dist/types/serialized-type.js +35 -56
- package/dist/types/serialized-type.js.map +1 -1
- package/dist/types/st-array.js +26 -46
- package/dist/types/st-array.js.map +1 -1
- package/dist/types/st-object.d.ts +6 -3
- package/dist/types/st-object.js +52 -74
- package/dist/types/st-object.js.map +1 -1
- package/dist/types/uint-16.js +15 -32
- package/dist/types/uint-16.js.map +1 -1
- package/dist/types/uint-32.js +16 -33
- package/dist/types/uint-32.js.map +1 -1
- package/dist/types/uint-64.d.ts +1 -1
- package/dist/types/uint-64.js +30 -47
- package/dist/types/uint-64.js.map +1 -1
- package/dist/types/uint-8.js +15 -32
- package/dist/types/uint-8.js.map +1 -1
- package/dist/types/uint.d.ts +1 -1
- package/dist/types/uint.js +10 -27
- package/dist/types/uint.js.map +1 -1
- package/dist/types/vector-256.js +23 -40
- package/dist/types/vector-256.js.map +1 -1
- package/dist/types/xchain-bridge.js +44 -61
- package/dist/types/xchain-bridge.js.map +1 -1
- package/package.json +7 -7
- package/test/amount.test.js +1 -1
- package/test/binary-json.test.js +1 -1
- package/test/binary-parser.test.js +4 -4
- package/test/binary-serializer.test.js +3 -3
- package/test/definitions.test.js +100 -0
- package/test/fixtures/codec-fixtures.json +136 -196
- package/test/hash.test.js +28 -2
- package/test/ledger.test.js +1 -1
- package/test/lower-case-hex.test.js +1 -1
- package/test/pseudo-transaction.test.js +1 -1
- package/test/quality.test.js +1 -1
- package/test/shamap.test.js +3 -3
- package/test/signing-data-encoding.test.js +128 -3
- package/test/tx-encode-decode.test.js +1 -1
- package/test/types.test.js +2 -2
- package/test/uint.test.js +2 -2
- package/test/x-address.test.js +1 -1
- package/dist/types/issued-currency.d.ts +0 -46
- package/dist/types/issued-currency.js +0 -108
- package/dist/types/issued-currency.js.map +0 -1
- package/dist/types/xchain-attestation-batch.d.ts +0 -44
- package/dist/types/xchain-attestation-batch.js +0 -107
- package/dist/types/xchain-attestation-batch.js.map +0 -1
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
const { encode, decode, XrplDefinitions } = require('../src')
|
|
2
|
+
const normalDefinitionsJson = require('../src/enums/definitions.json')
|
|
3
|
+
const { UInt32 } = require('../dist/types/uint-32')
|
|
4
|
+
|
|
5
|
+
const txJson = {
|
|
6
|
+
Account: 'r9LqNeG6qHxjeUocjvVki2XR35weJ9mZgQ',
|
|
7
|
+
Amount: '1000',
|
|
8
|
+
Destination: 'rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh',
|
|
9
|
+
Fee: '10',
|
|
10
|
+
Flags: 0,
|
|
11
|
+
Sequence: 1,
|
|
12
|
+
TransactionType: 'Payment',
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
describe('encode and decode using new types as a parameter', function () {
|
|
16
|
+
test('can encode and decode a new TransactionType', function () {
|
|
17
|
+
const tx = { ...txJson, TransactionType: 'NewTestTransaction' }
|
|
18
|
+
// Before updating the types, this should not be encodable
|
|
19
|
+
expect(() => encode(tx)).toThrow()
|
|
20
|
+
|
|
21
|
+
// Normally this would be generated directly from rippled with something like `server_definitions`.
|
|
22
|
+
// Added here to make it easier to see what is actually changing in the definitions.json file.
|
|
23
|
+
const definitions = JSON.parse(JSON.stringify(normalDefinitionsJson))
|
|
24
|
+
definitions.TRANSACTION_TYPES['NewTestTransaction'] = 30
|
|
25
|
+
|
|
26
|
+
const newDefs = new XrplDefinitions(definitions)
|
|
27
|
+
|
|
28
|
+
const encoded = encode(tx, newDefs)
|
|
29
|
+
expect(() => decode(encoded)).toThrow()
|
|
30
|
+
const decoded = decode(encoded, newDefs)
|
|
31
|
+
expect(decoded).toStrictEqual(tx)
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
test('can encode and decode a new Field', function () {
|
|
35
|
+
const tx = { ...txJson, NewFieldDefinition: 10 }
|
|
36
|
+
|
|
37
|
+
// Before updating the types, undefined fields will be ignored on encode
|
|
38
|
+
expect(decode(encode(tx))).not.toStrictEqual(tx)
|
|
39
|
+
|
|
40
|
+
// Normally this would be generated directly from rippled with something like `server_definitions`.
|
|
41
|
+
// Added here to make it easier to see what is actually changing in the definitions.json file.
|
|
42
|
+
const definitions = JSON.parse(JSON.stringify(normalDefinitionsJson))
|
|
43
|
+
|
|
44
|
+
definitions.FIELDS.push([
|
|
45
|
+
'NewFieldDefinition',
|
|
46
|
+
{
|
|
47
|
+
nth: 100,
|
|
48
|
+
isVLEncoded: false,
|
|
49
|
+
isSerialized: true,
|
|
50
|
+
isSigningField: true,
|
|
51
|
+
type: 'UInt32',
|
|
52
|
+
},
|
|
53
|
+
])
|
|
54
|
+
|
|
55
|
+
const newDefs = new XrplDefinitions(definitions)
|
|
56
|
+
|
|
57
|
+
const encoded = encode(tx, newDefs)
|
|
58
|
+
expect(() => decode(encoded)).toThrow()
|
|
59
|
+
const decoded = decode(encoded, newDefs)
|
|
60
|
+
expect(decoded).toStrictEqual(tx)
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
test('can encode and decode a new Type', function () {
|
|
64
|
+
const tx = {
|
|
65
|
+
...txJson,
|
|
66
|
+
TestField: 10, // Should work the same as a UInt32
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Normally this would be generated directly from rippled with something like `server_definitions`.
|
|
70
|
+
// Added here to make it easier to see what is actually changing in the definitions.json file.
|
|
71
|
+
const definitions = JSON.parse(JSON.stringify(normalDefinitionsJson))
|
|
72
|
+
definitions.TYPES.NewType = 31
|
|
73
|
+
definitions.FIELDS.push([
|
|
74
|
+
'TestField',
|
|
75
|
+
{
|
|
76
|
+
nth: 100,
|
|
77
|
+
isVLEncoded: true,
|
|
78
|
+
isSerialized: true,
|
|
79
|
+
isSigningField: true,
|
|
80
|
+
type: 'NewType',
|
|
81
|
+
},
|
|
82
|
+
])
|
|
83
|
+
|
|
84
|
+
// Test that before updating the types this tx fails to decode correctly. Note that undefined fields are ignored on encode.
|
|
85
|
+
expect(decode(encode(tx))).not.toStrictEqual(tx)
|
|
86
|
+
|
|
87
|
+
class NewType extends UInt32 {
|
|
88
|
+
// Should be the same as UInt32
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const extendedCoreTypes = { NewType }
|
|
92
|
+
|
|
93
|
+
const newDefs = new XrplDefinitions(definitions, extendedCoreTypes)
|
|
94
|
+
|
|
95
|
+
const encoded = encode(tx, newDefs)
|
|
96
|
+
expect(() => decode(encoded)).toThrow()
|
|
97
|
+
const decoded = decode(encoded, newDefs)
|
|
98
|
+
expect(decoded).toStrictEqual(tx)
|
|
99
|
+
})
|
|
100
|
+
})
|
|
@@ -4471,7 +4471,7 @@
|
|
|
4471
4471
|
}
|
|
4472
4472
|
},
|
|
4473
4473
|
{
|
|
4474
|
-
"binary": "
|
|
4474
|
+
"binary": "12002F2200000000240000000168400000000000000A601D40000000000003E8601E400000000000271073210330E7FC9D56BB25D6893BA3F317AE5BCF33B3291BD63DB32654A313222F7FD02074473045022100D2CABC1B0E0635A8EE2E6554F6D474C49BC292C995C5C9F83179F4A60634B04C02205D1DB569D9593136F2FBEA7140010C8F46794D653AFDBEA8D30B8750BA4805E58114B5F762798A53D543A014CAF8B297CFF8F2F937E8011914AF80285F637EE4AF3C20378F9DFB12511ACB8D27000000000000000000000000000000000000000014550FC62003E785DC231A1058A05E56E3F09CF4E60000000000000000000000000000000000000000",
|
|
4475
4475
|
"json": {
|
|
4476
4476
|
"Account": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
|
|
4477
4477
|
"XChainBridge": {
|
|
@@ -4551,41 +4551,6 @@
|
|
|
4551
4551
|
"XChainClaimID": "0000000000000001"
|
|
4552
4552
|
}
|
|
4553
4553
|
},
|
|
4554
|
-
{
|
|
4555
|
-
"binary": "12002D2280000000240000000468400000000000000A73210330E7FC9D56BB25D6893BA3F317AE5BCF33B3291BD63DB32654A313222F7FD02074473045022100A6A8CA05B2B6CB60E0FD645A4DA0314D46D79D9FA3D63307FC997357366151B202202266CC23E2CA827905F37F78F54AD435F73A3B704EDD634B89201E23625CE2E28114B5F762798A53D543A014CAF8B297CFF8F2F937E8011A14C48CAD01682D7A86296EF14523074D4852C02EA9000000000000000000000000000000000000000014CC86E58C9B58D4CF71CB8C1B41F21BB290CE13D40000000000000000000000000000000000000000E02330140000000000000000614000000005F5E100712103DAB289CA36FF377F3F4304C7A7203FDE5EDCBFC209F430F6A4355361425526D0760361626381142F3CC37C1D5616B3BBF1AABC49F6BFF46A9200878314621D345F8F094A085132431C69C89EC05D212CC28015142F3CC37C1D5616B3BBF1AABC49F6BFF46A92008700101301E1F1F1",
|
|
4556
|
-
"json": {
|
|
4557
|
-
"Account" : "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
|
|
4558
|
-
"Fee" : "10",
|
|
4559
|
-
"Flags" : 2147483648,
|
|
4560
|
-
"Sequence" : 4,
|
|
4561
|
-
"SigningPubKey" : "0330E7FC9D56BB25D6893BA3F317AE5BCF33B3291BD63DB32654A313222F7FD020",
|
|
4562
|
-
"TransactionType" : "XChainAddAttestation",
|
|
4563
|
-
"TxnSignature" : "3045022100A6A8CA05B2B6CB60E0FD645A4DA0314D46D79D9FA3D63307FC997357366151B202202266CC23E2CA827905F37F78F54AD435F73A3B704EDD634B89201E23625CE2E2",
|
|
4564
|
-
"XChainAttestationBatch" : {
|
|
4565
|
-
"XChainBridge" : {
|
|
4566
|
-
"IssuingChainDoor" : "rKeSSvHvaMZJp9ykaxutVwkhZgWuWMLnQt",
|
|
4567
|
-
"IssuingChainIssue" : {"currency": "XRP"},
|
|
4568
|
-
"LockingChainDoor" : "rJvExveLEL4jNDEeLKCVdxaSCN9cEBnEQC",
|
|
4569
|
-
"LockingChainIssue" : {"currency": "XRP"}
|
|
4570
|
-
},
|
|
4571
|
-
"XChainClaimAttestationBatch" : [
|
|
4572
|
-
{
|
|
4573
|
-
"XChainClaimAttestationBatchElement" : {
|
|
4574
|
-
"Account" : "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4575
|
-
"Amount" : "100000000",
|
|
4576
|
-
"AttestationRewardAccount" : "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4577
|
-
"Destination" : "r9A8UyNpW3X46FUc6P7JZqgn6WgAPjBwPg",
|
|
4578
|
-
"PublicKey" : "03DAB289CA36FF377F3F4304C7A7203FDE5EDCBFC209F430F6A4355361425526D0",
|
|
4579
|
-
"Signature" : "616263",
|
|
4580
|
-
"WasLockingChainSend" : 1,
|
|
4581
|
-
"XChainClaimID" : "0000000000000000"
|
|
4582
|
-
}
|
|
4583
|
-
}
|
|
4584
|
-
],
|
|
4585
|
-
"XChainCreateAccountAttestationBatch" : []
|
|
4586
|
-
}
|
|
4587
|
-
}
|
|
4588
|
-
},
|
|
4589
4554
|
{
|
|
4590
4555
|
"binary": "12002C228000000024000000016140000000000F424068400000000000000A601D400000000000271073210330E7FC9D56BB25D6893BA3F317AE5BCF33B3291BD63DB32654A313222F7FD0207446304402202984DDE7F0B566F081F7953D7212BF031ACBF8860FE114102E9512C4C8768C77022070113F4630B1DC3045E4A98DDD648CEBC31B12774F7B44A1B8123CD2C9F5CF188114B5F762798A53D543A014CAF8B297CFF8F2F937E88314AF80285F637EE4AF3C20378F9DFB12511ACB8D27011914AF80285F637EE4AF3C20378F9DFB12511ACB8D27000000000000000000000000000000000000000014550FC62003E785DC231A1058A05E56E3F09CF4E60000000000000000000000000000000000000000",
|
|
4591
4556
|
"json": {
|
|
@@ -4608,99 +4573,74 @@
|
|
|
4608
4573
|
}
|
|
4609
4574
|
},
|
|
4610
4575
|
{
|
|
4611
|
-
"binary": "
|
|
4576
|
+
"binary": "12002E2400000005201B0000000D30150000000000000006614000000000989680684000000000000014601D40000000000000647121ED1F4A024ACFEBDB6C7AA88DEDE3364E060487EA31B14CC9E0D610D152B31AADC27321EDF54108BA2E0A0D3DC2AE3897F8BE0EFE776AE8D0F9FB0D0B9D64233084A8DDD1744003E74AEF1F585F156786429D2FC87A89E5C6B5A56D68BFC9A6A329F3AC67CBF2B6958283C663A4522278CA162C69B23CF75149AF022B410EA0508C16F42058007640EEFCFA3DC2AB4AB7C4D2EBBC168CB621A11B82BABD86534DFC8EFA72439A49662D744073CD848E7A587A95B35162CDF9A69BB237E72C9537A987F5B8C394F30D81145E7A3E3D7200A794FA801C66CE3775B6416EE4128314C15F113E49BCC4B9FFF43CD0366C23ACD82F75638012143FD9ED9A79DEA67CB5D585111FEF0A29203FA0408014145E7A3E3D7200A794FA801C66CE3775B6416EE4128015145E7A3E3D7200A794FA801C66CE3775B6416EE4120010130101191486F0B1126CE1205E59FDFDD2661A9FB7505CA70F000000000000000000000000000000000000000014B5F762798A53D543A014CAF8B297CFF8F2F937E80000000000000000000000000000000000000000",
|
|
4612
4577
|
"json": {
|
|
4613
|
-
"Account": "
|
|
4614
|
-
"
|
|
4615
|
-
"
|
|
4616
|
-
"
|
|
4617
|
-
"
|
|
4618
|
-
"
|
|
4619
|
-
"
|
|
4620
|
-
"
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4578
|
+
"Account": "r9cYxdjQsoXAEz3qQJc961SNLaXRkWXCvT",
|
|
4579
|
+
"Amount": "10000000",
|
|
4580
|
+
"AttestationRewardAccount": "r9cYxdjQsoXAEz3qQJc961SNLaXRkWXCvT",
|
|
4581
|
+
"AttestationSignerAccount": "r9cYxdjQsoXAEz3qQJc961SNLaXRkWXCvT",
|
|
4582
|
+
"Destination": "rJdTJRJZ6GXCCRaamHJgEqVzB7Zy4557Pi",
|
|
4583
|
+
"Fee": "20",
|
|
4584
|
+
"LastLedgerSequence": 13,
|
|
4585
|
+
"OtherChainSource": "raFcdz1g8LWJDJWJE2ZKLRGdmUmsTyxaym",
|
|
4586
|
+
"PublicKey": "ED1F4A024ACFEBDB6C7AA88DEDE3364E060487EA31B14CC9E0D610D152B31AADC2",
|
|
4587
|
+
"Sequence": 5,
|
|
4588
|
+
"Signature": "EEFCFA3DC2AB4AB7C4D2EBBC168CB621A11B82BABD86534DFC8EFA72439A49662D744073CD848E7A587A95B35162CDF9A69BB237E72C9537A987F5B8C394F30D",
|
|
4589
|
+
"SignatureReward": "100",
|
|
4590
|
+
"SigningPubKey": "EDF54108BA2E0A0D3DC2AE3897F8BE0EFE776AE8D0F9FB0D0B9D64233084A8DDD1",
|
|
4591
|
+
"TransactionType": "XChainAddAccountCreateAttestation",
|
|
4592
|
+
"TxnSignature": "03E74AEF1F585F156786429D2FC87A89E5C6B5A56D68BFC9A6A329F3AC67CBF2B6958283C663A4522278CA162C69B23CF75149AF022B410EA0508C16F4205800",
|
|
4593
|
+
"WasLockingChainSend": 1,
|
|
4594
|
+
"XChainAccountCreateCount": "0000000000000006",
|
|
4595
|
+
"XChainBridge": {
|
|
4596
|
+
"IssuingChainDoor": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
|
|
4597
|
+
"IssuingChainIssue": {
|
|
4598
|
+
"currency": "XRP"
|
|
4626
4599
|
},
|
|
4627
|
-
"
|
|
4628
|
-
"
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4632
|
-
"Amount": "1000000000",
|
|
4633
|
-
"AttestationRewardAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f",
|
|
4634
|
-
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC",
|
|
4635
|
-
"PublicKey": "03ADB44CA8E56F78A0096825E5667C450ABD5C24C34E027BC1AAF7E5BD114CB5B5",
|
|
4636
|
-
"Signature": "3044022036C8B90F85E8073C465F00625248A72D4714600F98EBBADBAD3B7ED226109A3A02204C5A0AE12D169CF790F66541F3DB59C289E0D99CA7511FDFE352BB601F667A26",
|
|
4637
|
-
"SignatureReward": "1000000",
|
|
4638
|
-
"WasLockingChainSend": 1,
|
|
4639
|
-
"XChainAccountCreateCount": "0000000000000001"
|
|
4640
|
-
}
|
|
4641
|
-
},
|
|
4642
|
-
{
|
|
4643
|
-
"XChainCreateAccountAttestationBatchElement": {
|
|
4644
|
-
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4645
|
-
"Amount": "1000000000",
|
|
4646
|
-
"AttestationRewardAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f",
|
|
4647
|
-
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC",
|
|
4648
|
-
"PublicKey": "02A14E886B3C3579FBAE3139F29728B903E6F4295AEE92160C8480695524D66A15",
|
|
4649
|
-
"Signature": "304402200C3F5EEE2D7DCB609EE8558258E6AAF1EF823133C2B7C716E0DC9AAD2110F08D0220180E9F285CB2F78E362D37E947C000A8ED60A4BD8EFF21F74C5E529E1A8870ED",
|
|
4650
|
-
"SignatureReward": "1000000",
|
|
4651
|
-
"WasLockingChainSend": 1,
|
|
4652
|
-
"XChainAccountCreateCount": "0000000000000001"
|
|
4653
|
-
}
|
|
4654
|
-
},
|
|
4655
|
-
{
|
|
4656
|
-
"XChainCreateAccountAttestationBatchElement": {
|
|
4657
|
-
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4658
|
-
"Amount": "1000000000",
|
|
4659
|
-
"AttestationRewardAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f",
|
|
4660
|
-
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC",
|
|
4661
|
-
"PublicKey": "02F7390DCF3352060847B81666EBAC79D52DEA2443BDF58439F75397C45334E2DC",
|
|
4662
|
-
"Signature": "30450221008E31CFF0198F09CBA8610A946C23E170A3F11BCB8FC95D0D56C7B79A126D97D102203F4E952C449F2F01C4AF67FC37772A0D4459D770387CC11DBD5464FAB2185428",
|
|
4663
|
-
"SignatureReward": "1000000",
|
|
4664
|
-
"WasLockingChainSend": 1,
|
|
4665
|
-
"XChainAccountCreateCount": "0000000000000001"
|
|
4666
|
-
}
|
|
4667
|
-
},
|
|
4668
|
-
{
|
|
4669
|
-
"XChainCreateAccountAttestationBatchElement": {
|
|
4670
|
-
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4671
|
-
"Amount": "1000000000",
|
|
4672
|
-
"AttestationRewardAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f",
|
|
4673
|
-
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC",
|
|
4674
|
-
"PublicKey": "02498BD8CD9CA6A4BA567A2ECFA163F118AFD30511CBBA71429C2EC2F74D760592",
|
|
4675
|
-
"Signature": "3045022100F4E2D672F456CB9929EF01766AB72B42C71314A181232098563B8666E4EEA49C02203F936877E9DCC8FF5F7713579233985DF3DADB155F2BDA78FE3A4321373F370E",
|
|
4676
|
-
"SignatureReward": "1000000",
|
|
4677
|
-
"WasLockingChainSend": 1,
|
|
4678
|
-
"XChainAccountCreateCount": "0000000000000001"
|
|
4679
|
-
}
|
|
4680
|
-
},
|
|
4681
|
-
{
|
|
4682
|
-
"XChainCreateAccountAttestationBatchElement": {
|
|
4683
|
-
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx",
|
|
4684
|
-
"Amount": "1000000000",
|
|
4685
|
-
"AttestationRewardAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f",
|
|
4686
|
-
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC",
|
|
4687
|
-
"PublicKey": "03219642288DEE8A3AA8FEA1F7DAE9ED4D9A9F0EADA1E2DE3DB56DD9598D9AD817",
|
|
4688
|
-
"Signature": "3045022100D1BAFA57F40E16485310698B7B0BD0D4650E18782C4D65787A393CBB6D659EB802204EA28303089CCCD1463866A1BA0493A9B135AEA1EDFC8DD69A1A247DD9FEDB21",
|
|
4689
|
-
"SignatureReward": "1000000",
|
|
4690
|
-
"WasLockingChainSend": 1,
|
|
4691
|
-
"XChainAccountCreateCount": "0000000000000001"
|
|
4692
|
-
}
|
|
4693
|
-
}
|
|
4694
|
-
]
|
|
4600
|
+
"LockingChainDoor": "rDJVtEuDKr4rj1B3qtW7R5TVWdXV2DY7Qg",
|
|
4601
|
+
"LockingChainIssue": {
|
|
4602
|
+
"currency": "XRP"
|
|
4603
|
+
}
|
|
4695
4604
|
}
|
|
4696
4605
|
}
|
|
4697
4606
|
},
|
|
4698
4607
|
{
|
|
4699
|
-
"binary": "
|
|
4608
|
+
"binary": "12002D2400000009201B00000013301400000000000000016140000000009896806840000000000000147121ED7541DEC700470F54276C90C333A13CDBB5D341FD43C60CEA12170F6D6D4E11367321ED0406B134786FE0751717226657F7BF8AFE96442C05D28ACEC66FB64852BA604C7440D0423649E48A44F181262CF5FC08A68E7FA5CD9E55843E4F09014B76E602574741E8553383A4B43CABD194BB96713647FC0B885BE248E4FFA068FA3E6994CF0476407C175050B08000AD35EEB2D87E16CD3F95A0AEEBF2A049474275153D9D4DD44528FE99AA50E71660A15B0B768E1B90E609BBD5DC7AFAFD45D9705D72D40EA10C81141F30A4D728AB98B0950EC3B9815E6C8D43A7D5598314C15F113E49BCC4B9FFF43CD0366C23ACD82F75638012143FD9ED9A79DEA67CB5D585111FEF0A29203FA0408014141F30A4D728AB98B0950EC3B9815E6C8D43A7D5598015141F30A4D728AB98B0950EC3B9815E6C8D43A7D5590010130101191486F0B1126CE1205E59FDFDD2661A9FB7505CA70F000000000000000000000000000000000000000014B5F762798A53D543A014CAF8B297CFF8F2F937E80000000000000000000000000000000000000000",
|
|
4700
4609
|
"json": {
|
|
4701
|
-
"Account": "
|
|
4610
|
+
"Account": "rsqvD8WFFEBBv4nztpoW9YYXJ7eRzLrtc3",
|
|
4611
|
+
"Amount": "10000000",
|
|
4612
|
+
"AttestationRewardAccount": "rsqvD8WFFEBBv4nztpoW9YYXJ7eRzLrtc3",
|
|
4613
|
+
"AttestationSignerAccount": "rsqvD8WFFEBBv4nztpoW9YYXJ7eRzLrtc3",
|
|
4614
|
+
"Destination": "rJdTJRJZ6GXCCRaamHJgEqVzB7Zy4557Pi",
|
|
4615
|
+
"Fee": "20",
|
|
4616
|
+
"LastLedgerSequence": 19,
|
|
4617
|
+
"OtherChainSource": "raFcdz1g8LWJDJWJE2ZKLRGdmUmsTyxaym",
|
|
4618
|
+
"PublicKey": "ED7541DEC700470F54276C90C333A13CDBB5D341FD43C60CEA12170F6D6D4E1136",
|
|
4619
|
+
"Sequence": 9,
|
|
4620
|
+
"Signature": "7C175050B08000AD35EEB2D87E16CD3F95A0AEEBF2A049474275153D9D4DD44528FE99AA50E71660A15B0B768E1B90E609BBD5DC7AFAFD45D9705D72D40EA10C",
|
|
4621
|
+
"SigningPubKey": "ED0406B134786FE0751717226657F7BF8AFE96442C05D28ACEC66FB64852BA604C",
|
|
4622
|
+
"TransactionType": "XChainAddClaimAttestation",
|
|
4623
|
+
"TxnSignature": "D0423649E48A44F181262CF5FC08A68E7FA5CD9E55843E4F09014B76E602574741E8553383A4B43CABD194BB96713647FC0B885BE248E4FFA068FA3E6994CF04",
|
|
4624
|
+
"WasLockingChainSend": 1,
|
|
4625
|
+
"XChainBridge": {
|
|
4626
|
+
"IssuingChainDoor": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
|
|
4627
|
+
"IssuingChainIssue": {
|
|
4628
|
+
"currency": "XRP"
|
|
4629
|
+
},
|
|
4630
|
+
"LockingChainDoor": "rDJVtEuDKr4rj1B3qtW7R5TVWdXV2DY7Qg",
|
|
4631
|
+
"LockingChainIssue": {
|
|
4632
|
+
"currency": "XRP"
|
|
4633
|
+
}
|
|
4634
|
+
},
|
|
4635
|
+
"XChainClaimID": "0000000000000001"
|
|
4636
|
+
}
|
|
4637
|
+
},
|
|
4638
|
+
{
|
|
4639
|
+
"binary": "12002315000A2200000000240015DAE161400000000000271068400000000000000A6BD5838D7EA4C680000000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440B3154D968314FCEB58001E1B0C3A4CFB33DF9FF6C73207E5EAEB9BD07E2747672168E1A2786D950495C38BD8DEE3391BF45F3008DD36F4B12E7C07D82CA5250E8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A",
|
|
4640
|
+
"json": {
|
|
4641
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4702
4642
|
"TransactionType": "AMMCreate",
|
|
4703
|
-
"TxnSignature": "
|
|
4643
|
+
"TxnSignature": "B3154D968314FCEB58001E1B0C3A4CFB33DF9FF6C73207E5EAEB9BD07E2747672168E1A2786D950495C38BD8DEE3391BF45F3008DD36F4B12E7C07D82CA5250E",
|
|
4704
4644
|
"Amount": "10000",
|
|
4705
4645
|
"Amount2": {
|
|
4706
4646
|
"currency": "ETH",
|
|
@@ -4708,198 +4648,198 @@
|
|
|
4708
4648
|
"value": "10000"
|
|
4709
4649
|
},
|
|
4710
4650
|
"TradingFee": 10,
|
|
4711
|
-
"Fee": "
|
|
4651
|
+
"Fee": "10",
|
|
4712
4652
|
"Flags": 0,
|
|
4713
|
-
"Sequence":
|
|
4714
|
-
"SigningPubKey": "
|
|
4653
|
+
"Sequence": 1432289,
|
|
4654
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8"
|
|
4715
4655
|
}
|
|
4716
4656
|
},
|
|
4717
4657
|
{
|
|
4718
|
-
"binary": "
|
|
4658
|
+
"binary": "1200242200010000240015DAE168400000000000000A6019D5438D7EA4C68000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0487321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B874408073C588E7EF672DD171E414638D9AF8DBE9A1359E030DE3E1C9AA6A38A2CE9E138CB56482BB844F7228D48B1E4AD7D09BB7E9F639C115958EEEA374749CA00B8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4719
4659
|
"json": {
|
|
4720
|
-
"Account": "
|
|
4660
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4721
4661
|
"TransactionType": "AMMDeposit",
|
|
4722
|
-
"TxnSignature": "
|
|
4662
|
+
"TxnSignature": "8073C588E7EF672DD171E414638D9AF8DBE9A1359E030DE3E1C9AA6A38A2CE9E138CB56482BB844F7228D48B1E4AD7D09BB7E9F639C115958EEEA374749CA00B",
|
|
4723
4663
|
"Asset": {"currency": "XRP"},
|
|
4724
4664
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4725
4665
|
"LPTokenOut": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "1000"},
|
|
4726
|
-
"Fee": "
|
|
4666
|
+
"Fee": "10",
|
|
4727
4667
|
"Flags": 65536,
|
|
4728
|
-
"Sequence":
|
|
4729
|
-
"SigningPubKey": "
|
|
4668
|
+
"Sequence": 1432289,
|
|
4669
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8"
|
|
4730
4670
|
}
|
|
4731
4671
|
},
|
|
4732
4672
|
{
|
|
4733
|
-
"binary": "
|
|
4673
|
+
"binary": "1200242200080000240015DAE16140000000000003E868400000000000000A7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8744096CA066F42871C55088D2758D64148921B1ACAA5C6C648D0F7D675BBF47F87DF711F17C5BD172666D5AEC257520C587A849A6E063345609D91E121A78816EB048114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4734
4674
|
"json": {
|
|
4735
|
-
"Account": "
|
|
4675
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4736
4676
|
"TransactionType": "AMMDeposit",
|
|
4737
4677
|
"Asset": {"currency": "XRP"},
|
|
4738
4678
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4739
4679
|
"Amount": "1000",
|
|
4740
|
-
"Fee": "
|
|
4680
|
+
"Fee": "10",
|
|
4741
4681
|
"Flags": 524288,
|
|
4742
|
-
"Sequence":
|
|
4743
|
-
"SigningPubKey": "
|
|
4744
|
-
"TxnSignature": "
|
|
4682
|
+
"Sequence": 1432289,
|
|
4683
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4684
|
+
"TxnSignature": "96CA066F42871C55088D2758D64148921B1ACAA5C6C648D0F7D675BBF47F87DF711F17C5BD172666D5AEC257520C587A849A6E063345609D91E121A78816EB04"
|
|
4745
4685
|
}
|
|
4746
4686
|
},
|
|
4747
4687
|
{
|
|
4748
|
-
"binary": "
|
|
4688
|
+
"binary": "1200242200100000240015DAE16140000000000003E868400000000000000A6BD511C37937E080000000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440FC22B16A098C236ED7EDB3EBC983026DFD218A03C8BAA848F3E1D5389D5B8B00473C1178C5BA257BFA2DCD433C414690A430A5CFD71C1C0A7F7BF725EC1759018114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4749
4689
|
"json": {
|
|
4750
|
-
"Account": "
|
|
4690
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4751
4691
|
"TransactionType": "AMMDeposit",
|
|
4752
4692
|
"Asset": {"currency": "XRP"},
|
|
4753
4693
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4754
4694
|
"Amount": "1000",
|
|
4755
4695
|
"Amount2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9", "value": "500"},
|
|
4756
|
-
"Fee": "
|
|
4696
|
+
"Fee": "10",
|
|
4757
4697
|
"Flags": 1048576,
|
|
4758
|
-
"Sequence":
|
|
4759
|
-
"SigningPubKey": "
|
|
4760
|
-
"TxnSignature": "
|
|
4698
|
+
"Sequence": 1432289,
|
|
4699
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4700
|
+
"TxnSignature": "FC22B16A098C236ED7EDB3EBC983026DFD218A03C8BAA848F3E1D5389D5B8B00473C1178C5BA257BFA2DCD433C414690A430A5CFD71C1C0A7F7BF725EC175901"
|
|
4761
4701
|
}
|
|
4762
4702
|
},
|
|
4763
4703
|
{
|
|
4764
|
-
"binary": "
|
|
4704
|
+
"binary": "1200242200200000240015DAE16140000000000003E868400000000000000A6019D5438D7EA4C68000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0487321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440117CF90F9B113AD3BD638B6DB63562B37C287D5180F278B3CCF58FC14A5BAEE98307EA0F6DFE19E2FBA887C92955BA5D1A04F92ADAAEB309DE89C3610D074C098114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4765
4705
|
"json": {
|
|
4766
|
-
"Account": "
|
|
4706
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4767
4707
|
"TransactionType": "AMMDeposit",
|
|
4768
4708
|
"Asset": {"currency": "XRP"},
|
|
4769
4709
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4770
4710
|
"Amount": "1000",
|
|
4771
4711
|
"LPTokenOut": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "1000"},
|
|
4772
|
-
"Fee": "
|
|
4712
|
+
"Fee": "10",
|
|
4773
4713
|
"Flags": 2097152,
|
|
4774
|
-
"Sequence":
|
|
4775
|
-
"SigningPubKey": "
|
|
4776
|
-
"TxnSignature": "
|
|
4714
|
+
"Sequence": 1432289,
|
|
4715
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4716
|
+
"TxnSignature": "117CF90F9B113AD3BD638B6DB63562B37C287D5180F278B3CCF58FC14A5BAEE98307EA0F6DFE19E2FBA887C92955BA5D1A04F92ADAAEB309DE89C3610D074C09"
|
|
4777
4717
|
}
|
|
4778
4718
|
},
|
|
4779
4719
|
{
|
|
4780
|
-
"binary": "
|
|
4720
|
+
"binary": "1200242200400000240015DAE16140000000000003E868400000000000000A601B40000000000000197321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B874405E51EBC6B52A7C3BA5D0AE2FC8F62E779B80182009B3108A87AB6D770D68F56053C193DB0640128E4765565970625B1E2878E116AC854E6DED412202CCDE0B0D8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4781
4721
|
"json": {
|
|
4782
|
-
"Account": "
|
|
4722
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4783
4723
|
"TransactionType": "AMMDeposit",
|
|
4784
4724
|
"Asset": {"currency": "XRP"},
|
|
4785
4725
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4786
4726
|
"Amount": "1000",
|
|
4787
4727
|
"EPrice": "25",
|
|
4788
|
-
"Fee": "
|
|
4728
|
+
"Fee": "10",
|
|
4789
4729
|
"Flags": 4194304,
|
|
4790
|
-
"Sequence":
|
|
4791
|
-
"SigningPubKey": "
|
|
4792
|
-
"TxnSignature": "
|
|
4730
|
+
"Sequence": 1432289,
|
|
4731
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4732
|
+
"TxnSignature": "5E51EBC6B52A7C3BA5D0AE2FC8F62E779B80182009B3108A87AB6D770D68F56053C193DB0640128E4765565970625B1E2878E116AC854E6DED412202CCDE0B0D"
|
|
4793
4733
|
}
|
|
4794
4734
|
},
|
|
4795
4735
|
{
|
|
4796
|
-
"binary": "
|
|
4736
|
+
"binary": "1200252200010000240015DAE168400000000000000A601AD5438D7EA4C68000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0487321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B874409D4F41FC452526C0AD17191959D9B6D04A3C73B3A6C29E0F34C8459675A83A7A7D6E3021390EC8C9BE6C93E11C167E12016465E523F64F9EB3194B0A52E418028114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4797
4737
|
"json": {
|
|
4798
|
-
"Account": "
|
|
4738
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4799
4739
|
"TransactionType": "AMMWithdraw",
|
|
4800
4740
|
"Asset": {"currency": "XRP"},
|
|
4801
4741
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4802
4742
|
"LPTokenIn": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "1000"},
|
|
4803
|
-
"Fee": "
|
|
4743
|
+
"Fee": "10",
|
|
4804
4744
|
"Flags": 65536,
|
|
4805
|
-
"Sequence":
|
|
4806
|
-
"SigningPubKey": "
|
|
4807
|
-
"TxnSignature": "
|
|
4745
|
+
"Sequence": 1432289,
|
|
4746
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4747
|
+
"TxnSignature": "9D4F41FC452526C0AD17191959D9B6D04A3C73B3A6C29E0F34C8459675A83A7A7D6E3021390EC8C9BE6C93E11C167E12016465E523F64F9EB3194B0A52E41802"
|
|
4808
4748
|
}
|
|
4809
4749
|
},
|
|
4810
4750
|
{
|
|
4811
|
-
"binary": "
|
|
4751
|
+
"binary": "1200252200080000240015DAE16140000000000003E868400000000000000A7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440E2C60D56C337D6D73E4B7D53579C93C666605494E82A89DD58CFDE79E2A4866BCF52370A2146877A2EF748E98168373710001133A51B645D89491849079035018114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4812
4752
|
"json": {
|
|
4813
|
-
"Account": "
|
|
4753
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4814
4754
|
"TransactionType": "AMMWithdraw",
|
|
4815
4755
|
"Asset": {"currency": "XRP"},
|
|
4816
4756
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4817
4757
|
"Amount": "1000",
|
|
4818
|
-
"Fee": "
|
|
4758
|
+
"Fee": "10",
|
|
4819
4759
|
"Flags": 524288,
|
|
4820
|
-
"Sequence":
|
|
4821
|
-
"SigningPubKey": "
|
|
4822
|
-
"TxnSignature": "
|
|
4760
|
+
"Sequence": 1432289,
|
|
4761
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4762
|
+
"TxnSignature": "E2C60D56C337D6D73E4B7D53579C93C666605494E82A89DD58CFDE79E2A4866BCF52370A2146877A2EF748E98168373710001133A51B645D8949184907903501"
|
|
4823
4763
|
}
|
|
4824
4764
|
},
|
|
4825
4765
|
{
|
|
4826
|
-
"binary": "
|
|
4766
|
+
"binary": "1200252200100000240015DAE16140000000000003E868400000000000000A6BD511C37937E080000000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440D2FCD7D03E53358BC6188BA88A7BA4FF2519B639C3B5C0EBCBDCB704426CA2837111430E92A6003D1CD0D81C63682C74839320539EC4F89B82AA5607714952028114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4827
4767
|
"json": {
|
|
4828
|
-
"Account": "
|
|
4768
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4829
4769
|
"TransactionType": "AMMWithdraw",
|
|
4830
4770
|
"Asset": {"currency": "XRP"},
|
|
4831
4771
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4832
4772
|
"Amount": "1000",
|
|
4833
4773
|
"Amount2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9", "value": "500"},
|
|
4834
|
-
"Fee": "
|
|
4774
|
+
"Fee": "10",
|
|
4835
4775
|
"Flags": 1048576,
|
|
4836
|
-
"Sequence":
|
|
4837
|
-
"SigningPubKey": "
|
|
4838
|
-
"TxnSignature": "
|
|
4776
|
+
"Sequence": 1432289,
|
|
4777
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4778
|
+
"TxnSignature": "D2FCD7D03E53358BC6188BA88A7BA4FF2519B639C3B5C0EBCBDCB704426CA2837111430E92A6003D1CD0D81C63682C74839320539EC4F89B82AA560771495202"
|
|
4839
4779
|
}
|
|
4840
4780
|
},
|
|
4841
4781
|
{
|
|
4842
|
-
"binary": "
|
|
4782
|
+
"binary": "1200252200200000240015DAE16140000000000003E868400000000000000A601AD5438D7EA4C68000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0487321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8744042DA5620E924E2D2059BBB4E0C4F03244140ACED93B543136FEEDF802165F814D09F45C7E2A4618468442516F4712A23B1D3332D5DBDBAE830337F39F259C90F8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4843
4783
|
"json": {
|
|
4844
|
-
"Account": "
|
|
4784
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4845
4785
|
"TransactionType": "AMMWithdraw",
|
|
4846
4786
|
"Asset": {"currency": "XRP"},
|
|
4847
4787
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4848
4788
|
"Amount": "1000",
|
|
4849
4789
|
"LPTokenIn": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "1000"},
|
|
4850
|
-
"Fee": "
|
|
4790
|
+
"Fee": "10",
|
|
4851
4791
|
"Flags": 2097152,
|
|
4852
|
-
"Sequence":
|
|
4853
|
-
"SigningPubKey": "
|
|
4854
|
-
"TxnSignature": "
|
|
4792
|
+
"Sequence": 1432289,
|
|
4793
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4794
|
+
"TxnSignature": "42DA5620E924E2D2059BBB4E0C4F03244140ACED93B543136FEEDF802165F814D09F45C7E2A4618468442516F4712A23B1D3332D5DBDBAE830337F39F259C90F"
|
|
4855
4795
|
}
|
|
4856
4796
|
},
|
|
4857
4797
|
{
|
|
4858
|
-
"binary": "
|
|
4798
|
+
"binary": "1200252200400000240015DAE16140000000000003E868400000000000000A601B40000000000000197321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8744045BCEE5A12E5F5F1FB085A24F2F7FD962BBCB0D89A44A5319E3F7E3799E1870341880B6F684132971DDDF2E6B15356B3F407962D6D4E8DE10989F3B16E3CB90D8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4859
4799
|
"json": {
|
|
4860
|
-
"Account": "
|
|
4800
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4861
4801
|
"TransactionType": "AMMWithdraw",
|
|
4862
4802
|
"Asset": {"currency": "XRP"},
|
|
4863
4803
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4864
4804
|
"Amount": "1000",
|
|
4865
4805
|
"EPrice": "25",
|
|
4866
|
-
"Fee": "
|
|
4806
|
+
"Fee": "10",
|
|
4867
4807
|
"Flags": 4194304,
|
|
4868
|
-
"Sequence":
|
|
4869
|
-
"SigningPubKey": "
|
|
4870
|
-
"TxnSignature": "
|
|
4808
|
+
"Sequence": 1432289,
|
|
4809
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4810
|
+
"TxnSignature": "45BCEE5A12E5F5F1FB085A24F2F7FD962BBCB0D89A44A5319E3F7E3799E1870341880B6F684132971DDDF2E6B15356B3F407962D6D4E8DE10989F3B16E3CB90D"
|
|
4871
4811
|
}
|
|
4872
4812
|
},
|
|
4873
4813
|
{
|
|
4874
|
-
"binary": "
|
|
4814
|
+
"binary": "1200272200000000240015DAE168400000000000000A6CD4C8E1BC9BF04000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0486DD4CC6F3B40B6C000B3813FCAB4EE68B3D0D735D6849465A9113EE048B3813FCAB4EE68B3D0D735D6849465A9113EE0487321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440F8EAAFB5EC1A69275167589969F0B9764BACE6BC8CC81482C2FC5ACCE691EDBD0D88D141137B1253BB1B9AC90A8A52CB37F5B6F7E1028B06DD06F91BE06F5A0F8114F92F27CC5EE2F2760278FE096D0CBE32BDD3653AF019E01B81149A91957F8F16BC57F3F200CD8C98375BF1791586E1F10318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4875
4815
|
"json": {
|
|
4876
|
-
"Account": "
|
|
4816
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4877
4817
|
"TransactionType": "AMMBid",
|
|
4878
4818
|
"Asset": {"currency": "XRP"},
|
|
4879
4819
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4880
4820
|
"AuthAccounts": [{"AuthAccount": {"Account": "rEaHTti4HZsMBpxTAF4ncWxkcdqDh1h6P7"}}],
|
|
4881
4821
|
"BidMax": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "35"},
|
|
4882
4822
|
"BidMin": {"currency": "B3813FCAB4EE68B3D0D735D6849465A9113EE048", "issuer": "rH438jEAzTs5PYtV6CHZqpDpwCKQmPW9Cg", "value": "25"},
|
|
4883
|
-
"Fee": "
|
|
4823
|
+
"Fee": "10",
|
|
4884
4824
|
"Flags": 0,
|
|
4885
|
-
"Sequence":
|
|
4886
|
-
"SigningPubKey": "
|
|
4887
|
-
"TxnSignature": "
|
|
4825
|
+
"Sequence": 1432289,
|
|
4826
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4827
|
+
"TxnSignature": "F8EAAFB5EC1A69275167589969F0B9764BACE6BC8CC81482C2FC5ACCE691EDBD0D88D141137B1253BB1B9AC90A8A52CB37F5B6F7E1028B06DD06F91BE06F5A0F"
|
|
4888
4828
|
}
|
|
4889
4829
|
},
|
|
4890
4830
|
{
|
|
4891
|
-
"binary": "
|
|
4831
|
+
"binary": "1200261500EA2200000000240015DAE168400000000000000A7321ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B87440BC2F6E76969E3747E9BDE183C97573B086212F09D5387460E6EE2F32953E85EAEB9618FBBEF077276E30E59D619FCF7C7BDCDDDD9EB94D7CE1DD5CE9246B21078114F92F27CC5EE2F2760278FE096D0CBE32BDD3653A0318000000000000000000000000000000000000000004180000000000000000000000004554480000000000FBEF9A3A2B814E807745FA3D9C32FFD155FA2E8C",
|
|
4892
4832
|
"json": {
|
|
4893
|
-
"Account": "
|
|
4833
|
+
"Account": "rP5ZkB5RZQaECsSVR4DeSFK4fAw52BYtbw",
|
|
4894
4834
|
"TransactionType": "AMMVote",
|
|
4895
4835
|
"Asset": {"currency": "XRP"},
|
|
4896
4836
|
"Asset2": {"currency": "ETH", "issuer": "rPyfep3gcLzkosKC9XiE77Y8DZWG6iWDT9"},
|
|
4897
4837
|
"TradingFee": 234,
|
|
4898
|
-
"Fee": "
|
|
4838
|
+
"Fee": "10",
|
|
4899
4839
|
"Flags": 0,
|
|
4900
|
-
"Sequence":
|
|
4901
|
-
"SigningPubKey": "
|
|
4902
|
-
"TxnSignature": "
|
|
4840
|
+
"Sequence": 1432289,
|
|
4841
|
+
"SigningPubKey": "ED7453D2572A2104E7B266A45888C53F503CEB1F11DC4BB3710EB2995238EC65B8",
|
|
4842
|
+
"TxnSignature": "BC2F6E76969E3747E9BDE183C97573B086212F09D5387460E6EE2F32953E85EAEB9618FBBEF077276E30E59D619FCF7C7BDCDDDD9EB94D7CE1DD5CE9246B2107"
|
|
4903
4843
|
}
|
|
4904
4844
|
}
|
|
4905
4845
|
],
|