Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix getLedgerEntries description and close #442 #492

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openrpc/src/methods/getLedgerEntries.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "getLedgerEntries",
"summary": "returns ledger entries",
"description": "For reading the current value of ledger entries directly.\n\nAllows you to directly inspect the current state of a contract, a contract's code, or any other ledger entry. This is a backup way to access your contract data which may not be available via events or `simulateTransaction`.\n\nTo fetch contract wasm byte-code, use the ContractCode ledger entry key.",
"description": "For reading the current value of ledger entries directly.\n\nThis method enables the retrieval of various ledger states, such as accounts, trustlines, offers, data, claimable balances, and liquidity pools. It also provides direct access to inspect a contract's current state, its code, or any other ledger entry. This serves as a primary method to access your contract data which may not be available via events or `simulateTransaction`.\n\nTo fetch contract wasm byte-code, use the ContractCode ledger entry key.",
"externalDocs": {
"url": "https://developers.stellar.org/network/soroban-rpc/methods/getLedgerEntries"
},
Expand Down
8 changes: 4 additions & 4 deletions static/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
{
"name": "getLedgerEntries",
"summary": "returns ledger entries",
"description": "For reading the current value of ledger entries directly.\n\nAllows you to directly inspect the current state of a contract, a contract's code, or any other ledger entry. This is a backup way to access your contract data which may not be available via events or `simulateTransaction`.\n\nTo fetch contract wasm byte-code, use the ContractCode ledger entry key.",
"description": "For reading the current value of ledger entries directly.\n\nThis method enables the retrieval of various ledger states, such as accounts, trustlines, offers, data, claimable balances, and liquidity pools. It also provides direct access to inspect a contract's current state, its code, or any other ledger entry. This serves as a primary method to access your contract data which may not be available via events or `simulateTransaction`.\n\nTo fetch contract wasm byte-code, use the ContractCode ledger entry key.",
"externalDocs": {
"url": "https://developers.stellar.org/network/soroban-rpc/methods/getLedgerEntries"
},
Expand Down Expand Up @@ -737,7 +737,7 @@
},
"resultMetaXdr": {
"type": "string",
"description": "(optional) A base64 encoded string of the raw TransactionResultMeta XDR struct for this transaction."
"description": "(optional) A base64 encoded string of the raw TransactionMeta XDR struct for this transaction."
}
}
}
Expand Down Expand Up @@ -1045,7 +1045,7 @@
},
"minResourceFee": {
"type": "string",
"description": "(optional) Stringified number - Recommended minimum resource fee to add when submitting the transaction. This fee is to be added on top of the [Stellar network fee](https://developers.stellar.org/docs/encyclopedia/fees-surge-pricing-fee-strategies#network-fees-on-stellar). Not present in case of error."
"description": "(optional) Stringified number - Recommended minimum resource fee to add when submitting the transaction. This fee is to be added on top of the [Stellar network fee](https://developers.stellar.org/docs/learn/encyclopedia/fees-surge-pricing-fee-strategies#network-fees-on-stellar). Not present in case of error."
},
"cost": {
"type": "object",
Expand Down Expand Up @@ -1111,7 +1111,7 @@
"properties": {
"minResourceFee": {
"type": "string",
"description": "Stringified number - Recommended minimum resource fee to add when submitting the `RestoreFootprint` operation. This fee is to be added on top of the [Stellar network fee](https://developers.stellar.org/docs/encyclopedia/fees-surge-pricing-fee-strategies#network-fees-on-stellar)."
"description": "Stringified number - Recommended minimum resource fee to add when submitting the `RestoreFootprint` operation. This fee is to be added on top of the [Stellar network fee](https://developers.stellar.org/docs/learn/encyclopedia/fees-surge-pricing-fee-strategies#network-fees-on-stellar)."
},
"transactionData": {
"type": "string",
Expand Down
Loading