Ledger entry in new RPC framework (#534)

Fixes #539
This commit is contained in:
cyan317
2023-03-15 13:01:40 +00:00
committed by GitHub
parent b99a68e55f
commit bc438ce58a
15 changed files with 1724 additions and 49 deletions

View File

@@ -169,3 +169,25 @@ CreateRippleStateLedgerObject(
int highLimit,
std::string_view previousTxnId,
uint32_t previousTxnSeq);
ripple::STObject
CreateOfferLedgerObject(
std::string_view account,
int takerGets,
int takerPays,
std::string_view currency,
std::string_view issueId);
ripple::STObject
CreateTicketLedgerObject(std::string_view rootIndex, uint32_t sequence);
ripple::STObject
CreateEscrowLedgerObject(std::string_view account, std::string_view dest);
ripple::STObject
CreateCheckLedgerObject(std::string_view account, std::string_view dest);
ripple::STObject
CreateDepositPreauthLedgerObject(
std::string_view account,
std::string_view auth);