-
Notifications
You must be signed in to change notification settings - Fork 515
/
Copy pathledger_transaction.go
617 lines (512 loc) · 17.4 KB
/
ledger_transaction.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
package ingest
import (
"encoding/base64"
"encoding/hex"
"fmt"
"strconv"
"github.com/stellar/go/strkey"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/toid"
"github.com/stellar/go/xdr"
)
// LedgerTransaction represents the data for a single transaction within a ledger.
type LedgerTransaction struct {
Index uint32 // this index is 1-indexed as opposed to zero. Refer Read() in ledger_transaction_reader.go
Envelope xdr.TransactionEnvelope
Result xdr.TransactionResultPair
// FeeChanges and UnsafeMeta are low level values, do not use them directly unless
// you know what you are doing.
// Use LedgerTransaction.GetChanges() for higher level access to ledger
// entry changes.
FeeChanges xdr.LedgerEntryChanges
UnsafeMeta xdr.TransactionMeta
LedgerVersion uint32
Ledger xdr.LedgerCloseMeta // This is read-only and not to be modified by downstream functions
Hash xdr.Hash
}
func (t *LedgerTransaction) txInternalError() bool {
return t.Result.Result.Result.Code == xdr.TransactionResultCodeTxInternalError
}
func (t *LedgerTransaction) FeeAccount() xdr.MuxedAccount {
return t.Envelope.FeeAccount()
}
// GetFeeChanges returns a developer friendly representation of LedgerEntryChanges
// connected to fees.
func (t *LedgerTransaction) GetFeeChanges() []Change {
changes := GetChangesFromLedgerEntryChanges(t.FeeChanges)
for i := range changes {
changes[i].Reason = LedgerEntryChangeReasonFee
changes[i].Transaction = t
}
return changes
}
func (t *LedgerTransaction) getTransactionChanges(ledgerEntryChanges xdr.LedgerEntryChanges) []Change {
changes := GetChangesFromLedgerEntryChanges(ledgerEntryChanges)
for i := range changes {
changes[i].Reason = LedgerEntryChangeReasonTransaction
changes[i].Transaction = t
}
return changes
}
// GetChanges returns a developer friendly representation of LedgerEntryChanges.
// It contains transaction changes and operation changes in that order. If the
// transaction failed with TxInternalError, operations and txChangesAfter are
// omitted. It doesn't support legacy TransactionMeta.V=0.
func (t *LedgerTransaction) GetChanges() ([]Change, error) {
var changes []Change
// Transaction meta
switch t.UnsafeMeta.V {
case 0:
return changes, errors.New("TransactionMeta.V=0 not supported")
case 1:
v1Meta := t.UnsafeMeta.MustV1()
// The var `txChanges` reflect the ledgerEntryChanges that are changed because of the transaction as a whole
txChanges := t.getTransactionChanges(v1Meta.TxChanges)
changes = append(changes, txChanges...)
// Ignore operations meta if txInternalError https://github.com/stellar/go/issues/2111
if t.txInternalError() && t.LedgerVersion <= 12 {
return changes, nil
}
// These changes reflect the ledgerEntry changes that were caused by the operations in the transaction
// Populate the operationInfo for these changes in the `Change` struct
operationMeta := v1Meta.Operations
// operationMeta is a list of lists.
// Each element in operationMeta is a list of ledgerEntryChanges
// caused by the operation at that index of the element
for opIdx := range operationMeta {
opChanges := t.operationChanges(v1Meta.Operations, uint32(opIdx))
changes = append(changes, opChanges...)
}
case 2, 3:
var (
txBeforeChanges, txAfterChanges xdr.LedgerEntryChanges
operationMeta []xdr.OperationMeta
)
switch t.UnsafeMeta.V {
case 2:
v2Meta := t.UnsafeMeta.MustV2()
txBeforeChanges = v2Meta.TxChangesBefore
txAfterChanges = v2Meta.TxChangesAfter
operationMeta = v2Meta.Operations
case 3:
v3Meta := t.UnsafeMeta.MustV3()
txBeforeChanges = v3Meta.TxChangesBefore
txAfterChanges = v3Meta.TxChangesAfter
operationMeta = v3Meta.Operations
default:
panic("Invalid meta version, expected 2 or 3")
}
txChangesBefore := t.getTransactionChanges(txBeforeChanges)
changes = append(changes, txChangesBefore...)
// Ignore operations meta and txChangesAfter if txInternalError
// https://github.com/stellar/go/issues/2111
if t.txInternalError() && t.LedgerVersion <= 12 {
return changes, nil
}
// operationMeta is a list of lists.
// Each element in operationMeta is a list of ledgerEntryChanges
// caused by the operation at that index of the element
for opIdx := range operationMeta {
opChanges := t.operationChanges(operationMeta, uint32(opIdx))
changes = append(changes, opChanges...)
}
txChangesAfter := t.getTransactionChanges(txAfterChanges)
changes = append(changes, txChangesAfter...)
default:
return changes, errors.New("Unsupported TransactionMeta version")
}
return changes, nil
}
// GetOperation returns an operation by index.
func (t *LedgerTransaction) GetOperation(index uint32) (xdr.Operation, bool) {
ops := t.Envelope.Operations()
if int(index) >= len(ops) {
return xdr.Operation{}, false
}
return ops[index], true
}
// GetOperationChanges returns a developer friendly representation of LedgerEntryChanges.
// It contains only operation changes.
func (t *LedgerTransaction) GetOperationChanges(operationIndex uint32) ([]Change, error) {
if t.UnsafeMeta.V == 0 {
return []Change{}, errors.New("TransactionMeta.V=0 not supported")
}
// Ignore operations meta if txInternalError https://github.com/stellar/go/issues/2111
if t.txInternalError() && t.LedgerVersion <= 12 {
return []Change{}, nil
}
var operationMeta []xdr.OperationMeta
switch t.UnsafeMeta.V {
case 1:
operationMeta = t.UnsafeMeta.MustV1().Operations
case 2:
operationMeta = t.UnsafeMeta.MustV2().Operations
case 3:
operationMeta = t.UnsafeMeta.MustV3().Operations
default:
return []Change{}, errors.New("Unsupported TransactionMeta version")
}
return t.operationChanges(operationMeta, operationIndex), nil
}
func (t *LedgerTransaction) operationChanges(ops []xdr.OperationMeta, index uint32) []Change {
if int(index) >= len(ops) {
return []Change{}
}
operationMeta := ops[index]
changes := GetChangesFromLedgerEntryChanges(operationMeta.Changes)
for i := range changes {
changes[i].Reason = LedgerEntryChangeReasonOperation
changes[i].Transaction = t
changes[i].OperationIndex = index
}
return changes
}
func (t *LedgerTransaction) GetContractEvents() ([]xdr.ContractEvent, error) {
return t.UnsafeMeta.GetContractEvents()
}
// GetDiagnosticEvents returns all contract events emitted by a given operation.
func (t *LedgerTransaction) GetDiagnosticEvents() ([]xdr.DiagnosticEvent, error) {
return t.UnsafeMeta.GetDiagnosticEvents()
}
func (t *LedgerTransaction) ID() int64 {
return toid.New(int32(t.Ledger.LedgerSequence()), int32(t.Index), 0).ToInt64()
}
func (t *LedgerTransaction) Account() (string, error) {
sourceAccount := t.Envelope.SourceAccount().ToAccountId()
return sourceAccount.GetAddress()
}
func (t *LedgerTransaction) AccountSequence() int64 {
return t.Envelope.SeqNum()
}
func (t *LedgerTransaction) MaxFee() uint32 {
return t.Envelope.Fee()
}
func (t *LedgerTransaction) FeeCharged() (int64, bool) {
// Any Soroban Fee Bump transactions before P21 will need the below logic to calculate the correct feeCharged
// Protocol 20 contained a bug where the feeCharged was incorrectly calculated but was fixed for
// Protocol 21 with https://github.com/stellar/stellar-core/issues/4188
var ok bool
_, ok = t.GetSorobanData()
if ok {
if uint32(t.Ledger.LedgerHeaderHistoryEntry().Header.LedgerVersion) < 21 && t.Envelope.Type == xdr.EnvelopeTypeEnvelopeTypeTxFeeBump {
var resourceFeeRefund int64
resourceFeeRefund, ok = t.SorobanResourceFeeRefund()
if !ok {
return 0, false
}
return int64(t.Result.Result.FeeCharged) - resourceFeeRefund, true
}
}
return int64(t.Result.Result.FeeCharged), true
}
func (t *LedgerTransaction) OperationCount() uint32 {
return t.Envelope.OperationsCount()
}
func (t *LedgerTransaction) Memo() string {
var memoContents string
memoObject := t.Envelope.Memo()
switch xdr.MemoType(memoObject.Type) {
case xdr.MemoTypeMemoNone:
memoContents = ""
case xdr.MemoTypeMemoText:
memoContents = memoObject.MustText()
case xdr.MemoTypeMemoId:
memoContents = strconv.FormatUint(uint64(memoObject.MustId()), 10)
case xdr.MemoTypeMemoHash:
hash := memoObject.MustHash()
memoContents = base64.StdEncoding.EncodeToString(hash[:])
case xdr.MemoTypeMemoReturn:
hash := memoObject.MustRetHash()
memoContents = base64.StdEncoding.EncodeToString(hash[:])
default:
panic(fmt.Errorf("unknown MemoType %d", memoObject.Type))
}
return memoContents
}
func (t *LedgerTransaction) MemoType() string {
memoObject := t.Envelope.Memo()
return memoObject.Type.String()
}
func (t *LedgerTransaction) TimeBounds() (string, bool) {
timeBounds := t.Envelope.TimeBounds()
if timeBounds == nil {
return "", false
}
if timeBounds.MaxTime == 0 {
return fmt.Sprintf("[%d,)", timeBounds.MinTime), true
}
return fmt.Sprintf("[%d,%d)", timeBounds.MinTime, timeBounds.MaxTime), true
}
func (t *LedgerTransaction) LedgerBounds() (string, bool) {
ledgerBounds := t.Envelope.LedgerBounds()
if ledgerBounds == nil {
return "", false
}
return fmt.Sprintf("[%d,%d)", int64(ledgerBounds.MinLedger), int64(ledgerBounds.MaxLedger)), true
}
func (t *LedgerTransaction) MinSequence() (int64, bool) {
minSeqNum := t.Envelope.MinSeqNum()
if minSeqNum == nil {
return 0, false
}
return *minSeqNum, true
}
func (t *LedgerTransaction) MinSequenceAge() (int64, bool) {
minSequenceAge := t.Envelope.MinSeqAge()
if minSequenceAge == nil {
return 0, false
}
return int64(*minSequenceAge), true
}
func (t *LedgerTransaction) MinSequenceLedgerGap() (int64, bool) {
minSequenceLedgerGap := t.Envelope.MinSeqLedgerGap()
if minSequenceLedgerGap == nil {
return 0, false
}
return int64(*minSequenceLedgerGap), true
}
func (t *LedgerTransaction) GetSorobanData() (xdr.SorobanTransactionData, bool) {
switch t.Envelope.Type {
case xdr.EnvelopeTypeEnvelopeTypeTx:
return t.Envelope.V1.Tx.Ext.GetSorobanData()
case xdr.EnvelopeTypeEnvelopeTypeTxFeeBump:
return t.Envelope.FeeBump.Tx.InnerTx.V1.Tx.Ext.GetSorobanData()
case xdr.EnvelopeTypeEnvelopeTypeTxV0:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeScp:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeAuth:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeScpvalue:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeOpId:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypePoolRevokeOpId:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeContractId:
return xdr.SorobanTransactionData{}, false
case xdr.EnvelopeTypeEnvelopeTypeSorobanAuthorization:
return xdr.SorobanTransactionData{}, false
default:
panic(fmt.Errorf("unknown EnvelopeType %d", t.Envelope.Type))
}
}
func (t *LedgerTransaction) SorobanResourceFee() (int64, bool) {
sorobanData, ok := t.GetSorobanData()
if !ok {
return 0, false
}
return int64(sorobanData.ResourceFee), true
}
func (t *LedgerTransaction) SorobanResourcesInstructions() (uint32, bool) {
sorobanData, ok := t.GetSorobanData()
if !ok {
return 0, false
}
return uint32(sorobanData.Resources.Instructions), true
}
func (t *LedgerTransaction) SorobanResourcesReadBytes() (uint32, bool) {
sorobanData, ok := t.GetSorobanData()
if !ok {
return 0, false
}
return uint32(sorobanData.Resources.ReadBytes), true
}
func (t *LedgerTransaction) SorobanResourcesWriteBytes() (uint32, bool) {
sorobanData, ok := t.GetSorobanData()
if !ok {
return 0, false
}
return uint32(sorobanData.Resources.WriteBytes), true
}
func (t *LedgerTransaction) SorobanInclusionFeeBid() (int64, bool) {
resourceFee, ok := t.SorobanResourceFee()
if !ok {
return 0, false
}
return int64(t.Envelope.Fee()) - resourceFee, true
}
func (t *LedgerTransaction) FeeAccountAddress() (string, bool) {
switch t.Envelope.Type {
case xdr.EnvelopeTypeEnvelopeTypeTx:
sourceAccount := t.Envelope.SourceAccount()
feeAccountAddress := sourceAccount.Address()
return feeAccountAddress, true
case xdr.EnvelopeTypeEnvelopeTypeTxFeeBump:
feeBumpAccount := t.Envelope.FeeBumpAccount()
feeAccountAddress := feeBumpAccount.Address()
return feeAccountAddress, true
case xdr.EnvelopeTypeEnvelopeTypeTxV0:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeScp:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeAuth:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeScpvalue:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeOpId:
return "", false
case xdr.EnvelopeTypeEnvelopeTypePoolRevokeOpId:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeContractId:
return "", false
case xdr.EnvelopeTypeEnvelopeTypeSorobanAuthorization:
return "", false
default:
panic(fmt.Errorf("unknown EnvelopeType %d", t.Envelope.Type))
}
}
func (t *LedgerTransaction) SorobanInclusionFeeCharged() (int64, bool) {
resourceFee, ok := t.SorobanResourceFee()
if !ok {
return 0, false
}
feeAccountAddress, ok := t.FeeAccountAddress()
if !ok {
return 0, false
}
accountBalanceStart, accountBalanceEnd := getAccountBalanceFromLedgerEntryChanges(t.FeeChanges, feeAccountAddress)
initialFeeCharged := accountBalanceStart - accountBalanceEnd
return initialFeeCharged - resourceFee, true
}
func (t *LedgerTransaction) InclusionFeeCharged() (int64, bool) {
inclusionFee, ok := t.SorobanInclusionFeeCharged()
if ok {
return inclusionFee, ok
}
// Inclusion fee can be calculated from the equation:
// Fee charged = inclusion fee * (operation count + if(feeBumpAccount is not null, 1, 0))
// or inclusionFee = feeCharged/(operation count + if(feeBumpAccount is not null, 1, 0))
operationCount := t.OperationCount()
if t.Envelope.Type == xdr.EnvelopeTypeEnvelopeTypeTxFeeBump {
operationCount += 1
}
var feeCharged int64
feeCharged, ok = t.FeeCharged()
if !ok {
return 0, false
}
return feeCharged / int64(operationCount), true
}
func getAccountBalanceFromLedgerEntryChanges(changes xdr.LedgerEntryChanges, sourceAccountAddress string) (int64, int64) {
var accountBalanceStart int64
var accountBalanceEnd int64
for _, change := range changes {
switch change.Type {
case xdr.LedgerEntryChangeTypeLedgerEntryUpdated:
accountEntry, ok := change.Updated.Data.GetAccount()
if !ok {
continue
}
if accountEntry.AccountId.Address() == sourceAccountAddress {
accountBalanceEnd = int64(accountEntry.Balance)
}
case xdr.LedgerEntryChangeTypeLedgerEntryState:
accountEntry, ok := change.State.Data.GetAccount()
if !ok {
continue
}
if accountEntry.AccountId.Address() == sourceAccountAddress {
accountBalanceStart = int64(accountEntry.Balance)
}
case xdr.LedgerEntryChangeTypeLedgerEntryCreated:
continue
case xdr.LedgerEntryChangeTypeLedgerEntryRemoved:
continue
default:
panic(fmt.Errorf("unknown ChangeType %d", change.Type))
}
}
return accountBalanceStart, accountBalanceEnd
}
func (t *LedgerTransaction) SorobanResourceFeeRefund() (int64, bool) {
meta, ok := t.UnsafeMeta.GetV3()
if !ok {
return 0, false
}
feeAccountAddress, ok := t.FeeAccountAddress()
if !ok {
return 0, false
}
accountBalanceStart, accountBalanceEnd := getAccountBalanceFromLedgerEntryChanges(meta.TxChangesAfter, feeAccountAddress)
return accountBalanceEnd - accountBalanceStart, true
}
func (t *LedgerTransaction) SorobanTotalNonRefundableResourceFeeCharged() (int64, bool) {
meta, ok := t.UnsafeMeta.GetV3()
if !ok {
return 0, false
}
switch meta.SorobanMeta.Ext.V {
case 1:
return int64(meta.SorobanMeta.Ext.V1.TotalNonRefundableResourceFeeCharged), true
default:
panic(fmt.Errorf("unknown SorobanMeta.Ext.V %d", meta.SorobanMeta.Ext.V))
}
}
func (t *LedgerTransaction) SorobanTotalRefundableResourceFeeCharged() (int64, bool) {
meta, ok := t.UnsafeMeta.GetV3()
if !ok {
return 0, false
}
switch meta.SorobanMeta.Ext.V {
case 1:
return int64(meta.SorobanMeta.Ext.V1.TotalRefundableResourceFeeCharged), true
default:
panic(fmt.Errorf("unknown SorobanMeta.Ext.V %d", meta.SorobanMeta.Ext.V))
}
}
func (t *LedgerTransaction) SorobanRentFeeCharged() (int64, bool) {
meta, ok := t.UnsafeMeta.GetV3()
if !ok {
return 0, false
}
switch meta.SorobanMeta.Ext.V {
case 1:
return int64(meta.SorobanMeta.Ext.V1.RentFeeCharged), true
default:
panic(fmt.Errorf("unknown SorobanMeta.Ext.V %d", meta.SorobanMeta.Ext.V))
}
}
func (t *LedgerTransaction) ResultCode() string {
return t.Result.Result.Result.Code.String()
}
func (t *LedgerTransaction) Signers() (signers []string, err error) {
if t.Envelope.IsFeeBump() {
return getTxSigners(t.Envelope.FeeBump.Signatures)
}
return getTxSigners(t.Envelope.Signatures())
}
func getTxSigners(xdrSignatures []xdr.DecoratedSignature) ([]string, error) {
signers := make([]string, len(xdrSignatures))
for i, sig := range xdrSignatures {
signerAccount, err := strkey.Encode(strkey.VersionByteAccountID, sig.Signature)
if err != nil {
return nil, err
}
signers[i] = signerAccount
}
return signers, nil
}
func (t *LedgerTransaction) AccountMuxed() (string, bool) {
sourceAccount := t.Envelope.SourceAccount()
if sourceAccount.Type != xdr.CryptoKeyTypeKeyTypeMuxedEd25519 {
return "", false
}
return sourceAccount.Address(), true
}
func (t *LedgerTransaction) InnerTransactionHash() (string, bool) {
if !t.Envelope.IsFeeBump() {
return "", false
}
innerHash := t.Result.InnerHash()
return hex.EncodeToString(innerHash[:]), true
}
func (t *LedgerTransaction) NewMaxFee() (uint32, bool) {
if !t.Envelope.IsFeeBump() {
return 0, false
}
return uint32(t.Envelope.FeeBumpFee()), true
}
func (t *LedgerTransaction) Successful() bool {
return t.Result.Successful()
}