Skip to content

Commit 059588d

Browse files
add base entry Sponsor field
1 parent 52ba681 commit 059588d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

packages/xrpl/src/models/ledger/BaseLedgerEntry.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
export interface BaseLedgerEntry {
22
index: string
3+
/**
4+
* The address of the account sponsoring the reserve for this ledger object.
5+
* Only present if the object's reserve is being sponsored by another account.
6+
* This field is added when sponsorship is established and removed when
7+
* sponsorship is dissolved.
8+
*
9+
* Note: For RippleState objects, use HighSponsor and LowSponsor instead.
10+
* This field must not appear on DirectoryNode, Amendments, FeeSettings,
11+
* or NegativeUNL objects.
12+
*/
13+
Sponsor?: string
314
}
415

516
export interface HasPreviousTxnID {

0 commit comments

Comments
 (0)