├── .devcontainer ├── devcontainer.json ├── post_attach_start.sh └── restart.sh ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── check-routes-removal.yml │ ├── crowdin-download-workflow.yml │ ├── crowdin-manual-workflow.yml │ ├── crowdin-upload-workflow.yml │ ├── main.yml │ └── update-completed-sprint-on-issue-closed.yaml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── CROWDIN.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config ├── anchorPlatform.sidebar.ts ├── constants.ts ├── disbursementPlatform.sidebar.ts ├── sidebars.ts └── theme │ ├── footer.ts │ ├── headTags.ts │ └── navbar.ts ├── crowdin.yaml ├── docs ├── README.mdx ├── build │ ├── README.mdx │ ├── apps │ │ ├── README.mdx │ │ ├── application-design-considerations.mdx │ │ ├── dapp-frontend.mdx │ │ ├── example-application-tutorial │ │ │ ├── README.mdx │ │ │ ├── account-creation.mdx │ │ │ ├── anchor-integration │ │ │ │ ├── README.mdx │ │ │ │ ├── sep1.mdx │ │ │ │ ├── sep10.mdx │ │ │ │ ├── sep24.mdx │ │ │ │ ├── sep6.mdx │ │ │ │ └── setup.mdx │ │ │ ├── confirmation-modal.mdx │ │ │ ├── contacts-list.mdx │ │ │ ├── manage-trust.mdx │ │ │ ├── overview.mdx │ │ │ ├── path-payment.mdx │ │ │ ├── payment.mdx │ │ │ └── querying-data.mdx │ │ ├── guestbook │ │ │ ├── README.mdx │ │ │ ├── bindings.mdx │ │ │ ├── frontend.mdx │ │ │ ├── overview.mdx │ │ │ ├── passkeys-prerequisites.mdx │ │ │ ├── setup-passkeys.mdx │ │ │ └── smart-contract.mdx │ │ ├── ingest-sdk │ │ │ ├── README.mdx │ │ │ ├── ingestion-pipeline-code.mdx │ │ │ └── overview.mdx │ │ ├── overview.mdx │ │ ├── swift-payment-app.mdx │ │ └── wallet │ │ │ ├── CONTRIBUTING.md │ │ │ ├── README.mdx │ │ │ ├── component │ │ │ ├── dart │ │ │ │ ├── configClient.mdx │ │ │ │ └── install.mdx │ │ │ ├── header.mdx │ │ │ ├── kt │ │ │ │ ├── configClient.mdx │ │ │ │ ├── globalSigner.mdx │ │ │ │ ├── httpConfig.mdx │ │ │ │ ├── install.mdx │ │ │ │ └── watcher.mdx │ │ │ ├── swift │ │ │ │ ├── globalSigner.mdx │ │ │ │ └── install.mdx │ │ │ └── ts │ │ │ │ ├── allowHttpInfo.mdx │ │ │ │ ├── configClient.mdx │ │ │ │ ├── createKeypairInfo.mdx │ │ │ │ ├── globalSigner.mdx │ │ │ │ └── install.mdx │ │ │ ├── intro.mdx │ │ │ ├── overview.mdx │ │ │ ├── sep10.mdx │ │ │ ├── sep24.mdx │ │ │ ├── sep30.mdx │ │ │ ├── sep38.mdx │ │ │ ├── sep6.mdx │ │ │ ├── sep7.mdx │ │ │ └── stellar.mdx │ ├── guides │ │ ├── README.mdx │ │ ├── archival │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── create-restoration-footprint-js.mdx │ │ │ ├── extend-persistent-entry-js.mdx │ │ │ ├── restore-contract-js.mdx │ │ │ ├── restore-data-js.mdx │ │ │ └── test-ttl-extension.mdx │ │ ├── auth │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── check-auth-tutorials.mdx │ │ │ └── contract-authorization.mdx │ │ ├── basics │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── automate-reset-data.mdx │ │ │ ├── classic-transition.mdx │ │ │ └── verify-trustlines.mdx │ │ ├── contract-accounts │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── advanced-patterns.mdx │ │ │ ├── examples.mdx │ │ │ └── smart-wallets.mdx │ │ ├── conventions │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── cross-contract.mdx │ │ │ ├── deploy-contract.mdx │ │ │ ├── deploy-sac-with-code.mdx │ │ │ ├── error-enum.mdx │ │ │ ├── extending-wasm-ttl.mdx │ │ │ ├── upgrading-contracts.mdx │ │ │ ├── wasm-metadata.mdx │ │ │ ├── work-contractspec-js.mdx │ │ │ └── workspace.mdx │ │ ├── conversions │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── address-conversions.mdx │ │ │ ├── address-to-bytesn.mdx │ │ │ ├── address-to-id.mdx │ │ │ ├── bytes-conversions.mdx │ │ │ ├── id-to-address.mdx │ │ │ ├── scval-conversions.mdx │ │ │ └── string-conversions.mdx │ │ ├── dapps │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── docker.mdx │ │ │ ├── frontend-guide.mdx │ │ │ ├── initialization.mdx │ │ │ ├── react.mdx │ │ │ ├── soroban-contract-init-template.mdx │ │ │ ├── state-archival.mdx │ │ │ └── working-with-contract-specs.mdx │ │ ├── events │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── consume.mdx │ │ │ ├── ingest.mdx │ │ │ └── publish.mdx │ │ ├── fees │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── analyzing-smart-contract-cost.mdx │ │ │ └── cost-analysis.mdx │ │ ├── freighter │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── connect-testnet.mdx │ │ │ ├── enable-soroban-tokens.mdx │ │ │ ├── integrate-freighter-react.mdx │ │ │ ├── prompt-to-sign-tx.mdx │ │ │ ├── send-token-payments.mdx │ │ │ ├── sign-auth-entries.mdx │ │ │ └── sign-soroban-xdrs.mdx │ │ ├── rpc │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── generate-ledger-keys-python.mdx │ │ │ ├── retrieve-contract-code-js.mdx │ │ │ ├── retrieve-contract-code-python.mdx │ │ │ ├── self-deploy-rpc.mdx │ │ │ └── use-public-rpc.mdx │ │ ├── storage │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── choose-type.mdx │ │ │ ├── choosing-the-right-storage.mdx │ │ │ ├── use-instance.mdx │ │ │ ├── use-persistent.mdx │ │ │ └── use-temporary.mdx │ │ ├── testing │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── code-coverage.mdx │ │ │ ├── differential-tests-with-test-snapshots.mdx │ │ │ ├── differential-tests.mdx │ │ │ ├── fork-testing.mdx │ │ │ ├── fuzzing.mdx │ │ │ ├── integration-tests.mdx │ │ │ ├── ledger-snapshot-testing.mdx │ │ │ ├── mocking.mdx │ │ │ ├── mutation-testing.mdx │ │ │ ├── test-contract-auth.mdx │ │ │ ├── test-contract-events.mdx │ │ │ └── unit-tests.mdx │ │ ├── tokens │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── custom-sac-admin.mdx │ │ │ ├── deploying-a-sac.mdx │ │ │ └── stellar-asset-contract.mdx │ │ └── transactions │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── channel-accounts.mdx │ │ │ ├── claimable-balances.mdx │ │ │ ├── clawbacks.mdx │ │ │ ├── create-account.mdx │ │ │ ├── fee-bump-transactions.mdx │ │ │ ├── install-deploy-contract-with-code.mdx │ │ │ ├── invoke-contract-tx-sdk.mdx │ │ │ ├── path-payments.mdx │ │ │ ├── pooled-accounts-muxed-accounts-memos.mdx │ │ │ ├── send-and-receive-c-accounts.mdx │ │ │ ├── send-and-receive-payments.mdx │ │ │ ├── simulateTransaction-Deep-Dive.mdx │ │ │ ├── sponsored-reserves.mdx │ │ │ ├── submit-transaction-wait-js.mdx │ │ │ └── upload-wasm-bytecode.mdx │ ├── security-docs │ │ ├── README.mdx │ │ ├── securing-web-based-projects.mdx │ │ └── threat-modeling │ │ │ ├── README.mdx │ │ │ ├── STRIDE-template.mdx │ │ │ ├── pizza-restaurant-example.mdx │ │ │ ├── threat-modeling-description.mdx │ │ │ └── threat-modeling-how-to.mdx │ └── smart-contracts │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── example-contracts │ │ ├── README.mdx │ │ ├── TEMPLATE.mdx │ │ ├── alloc.mdx │ │ ├── atomic-multi-swap.mdx │ │ ├── atomic-swap.mdx │ │ ├── auth.mdx │ │ ├── bls-signature.mdx │ │ ├── complex-account.mdx │ │ ├── cross-contract-call.mdx │ │ ├── custom-types.mdx │ │ ├── deployer.mdx │ │ ├── errors.mdx │ │ ├── events.mdx │ │ ├── fungible-token.mdx │ │ ├── fuzzing.mdx │ │ ├── liquidity-pool.mdx │ │ ├── logging.mdx │ │ ├── mint-lock.mdx │ │ ├── non-fungible-token.mdx │ │ ├── simple-account.mdx │ │ ├── single-offer-sale.mdx │ │ ├── storage.mdx │ │ ├── timelock.mdx │ │ ├── tokens.mdx │ │ ├── upgradeable-contract.mdx │ │ └── workspace.mdx │ │ ├── getting-started │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── deploy-increment-contract.mdx │ │ ├── deploy-to-testnet.mdx │ │ ├── hello-world-frontend.mdx │ │ ├── hello-world.mdx │ │ ├── setup.mdx │ │ └── storing-data.mdx │ │ └── overview.mdx ├── data │ ├── CONTRIBUTING.md │ ├── README.mdx │ ├── analytics │ │ ├── README.mdx │ │ ├── analytics-providers │ │ │ └── analytics-providers.mdx │ │ └── hubble │ │ │ ├── README.mdx │ │ │ ├── analyst-guide │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── connecting.mdx │ │ │ ├── creating-visualizations.mdx │ │ │ ├── history-vs-state-tables.mdx │ │ │ ├── optimizing-queries.mdx │ │ │ ├── queries-for-horizon-like-data.mdx │ │ │ └── viewing-metadata.mdx │ │ │ ├── data-catalog │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── data-dictionary │ │ │ │ ├── README.mdx │ │ │ │ ├── bronze │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── account-signers.mdx │ │ │ │ │ ├── accounts.mdx │ │ │ │ │ ├── claimable-balances.mdx │ │ │ │ │ ├── config-settings.mdx │ │ │ │ │ ├── contract-code.mdx │ │ │ │ │ ├── contract-data.mdx │ │ │ │ │ ├── evicted-keys.mdx │ │ │ │ │ ├── history-assets.mdx │ │ │ │ │ ├── history-contract-events.mdx │ │ │ │ │ ├── history-effects.mdx │ │ │ │ │ ├── history-ledgers.mdx │ │ │ │ │ ├── history-operations.mdx │ │ │ │ │ ├── history-trades.mdx │ │ │ │ │ ├── history-transactions.mdx │ │ │ │ │ ├── liquidity-pools.mdx │ │ │ │ │ ├── offers.mdx │ │ │ │ │ ├── restored-key.mdx │ │ │ │ │ ├── trustlines.mdx │ │ │ │ │ └── ttl.mdx │ │ │ │ ├── gold │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── asset-balances-daily-agg.mdx │ │ │ │ │ ├── fee-stats-agg.mdx │ │ │ │ │ ├── trade-agg.mdx │ │ │ │ │ └── tvl-agg.mdx │ │ │ │ └── silver │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── account-signers-current.mdx │ │ │ │ │ ├── accounts-current.mdx │ │ │ │ │ ├── accounts-snapshot.mdx │ │ │ │ │ ├── claimable-balances-current.mdx │ │ │ │ │ ├── config-settings-current.mdx │ │ │ │ │ ├── contract-code-current.mdx │ │ │ │ │ ├── contract-data-current.mdx │ │ │ │ │ ├── contract-data-snapshot.mdx │ │ │ │ │ ├── enriched-history-operations-soroban.mdx │ │ │ │ │ ├── enriched-history-operations.mdx │ │ │ │ │ ├── evicted-keys-snapshot.mdx │ │ │ │ │ ├── liquidity-pools-current.mdx │ │ │ │ │ ├── liquidity-pools-snapshot.mdx │ │ │ │ │ ├── offers-current.mdx │ │ │ │ │ ├── token-transfers-raw.mdx │ │ │ │ │ ├── trustlines-current.mdx │ │ │ │ │ ├── trustlines-snapshot.mdx │ │ │ │ │ └── ttl-current.mdx │ │ │ ├── data-lineage.mdx │ │ │ └── data-model-diagram.mdx │ │ │ └── developer-guide │ │ │ ├── README.mdx │ │ │ ├── backfill │ │ │ ├── JS-UDF.mdx │ │ │ ├── README.mdx │ │ │ └── data-import.mdx │ │ │ ├── connecting-to-bigquery │ │ │ └── README.mdx │ │ │ ├── data-curation │ │ │ ├── README.mdx │ │ │ ├── architecture.mdx │ │ │ ├── getting-started.mdx │ │ │ └── overview.mdx │ │ │ ├── scheduling-and-orchestration │ │ │ ├── README.mdx │ │ │ ├── architecture.mdx │ │ │ ├── getting-started.mdx │ │ │ └── overview.mdx │ │ │ ├── source-system-ingestion │ │ │ ├── README.mdx │ │ │ ├── architecture.mdx │ │ │ ├── getting-started.mdx │ │ │ └── overview.mdx │ │ │ └── visualization │ │ │ ├── README.mdx │ │ │ ├── getting-started.mdx │ │ │ └── overview.mdx │ ├── apis │ │ ├── README.mdx │ │ ├── horizon │ │ │ ├── README.mdx │ │ │ ├── admin-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── configuring.mdx │ │ │ │ ├── ingestion-filtering.mdx │ │ │ │ ├── ingestion.mdx │ │ │ │ ├── installing.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── prerequisites.mdx │ │ │ │ ├── running.mdx │ │ │ │ ├── scaling.mdx │ │ │ │ └── upgrading.mdx │ │ │ ├── api-reference │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── aggregations │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── fee-stats │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── order-books │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── paths │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ └── trade-aggregations │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ ├── cb-retrieve-related-operations.api.mdx │ │ │ │ ├── cb-retrieve-related-transactions.api.mdx │ │ │ │ ├── errors │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── error-handling.mdx │ │ │ │ │ ├── http-status-codes │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── horizon-specific │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── before-history.mdx │ │ │ │ │ │ │ ├── stale-history.mdx │ │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ │ ├── transaction-failed.mdx │ │ │ │ │ │ │ └── transaction-malformed.mdx │ │ │ │ │ │ └── standard.mdx │ │ │ │ │ ├── response.mdx │ │ │ │ │ └── result-codes │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── operation-specific │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── account-merge.mdx │ │ │ │ │ │ ├── allow-trust.mdx │ │ │ │ │ │ ├── bump-sequence.mdx │ │ │ │ │ │ ├── change-trust.mdx │ │ │ │ │ │ ├── create-account.mdx │ │ │ │ │ │ ├── create-passive-sell-offer.mdx │ │ │ │ │ │ ├── manage-buy-offer.mdx │ │ │ │ │ │ ├── manage-data.mdx │ │ │ │ │ │ ├── manage-sell-offer.mdx │ │ │ │ │ │ ├── path-payment-strict-receive.mdx │ │ │ │ │ │ ├── path-payment-strict-send.mdx │ │ │ │ │ │ ├── payment.mdx │ │ │ │ │ │ └── set-options.mdx │ │ │ │ │ │ ├── operations.mdx │ │ │ │ │ │ └── transactions.mdx │ │ │ │ ├── get-all-offers.api.mdx │ │ │ │ ├── get-all-trades.api.mdx │ │ │ │ ├── get-data-by-account-id.api.mdx │ │ │ │ ├── get-effects-by-account-id.api.mdx │ │ │ │ ├── get-offer-by-offer-id.api.mdx │ │ │ │ ├── get-offers-by-account-id.api.mdx │ │ │ │ ├── get-operations-by-account-id.api.mdx │ │ │ │ ├── get-payments-by-account-id.api.mdx │ │ │ │ ├── get-trades-by-account-id.api.mdx │ │ │ │ ├── get-trades-by-offer-id.api.mdx │ │ │ │ ├── get-transactions-by-account-id.api.mdx │ │ │ │ ├── list-all-accounts.api.mdx │ │ │ │ ├── list-all-assets.api.mdx │ │ │ │ ├── list-all-claimable-balances.api.mdx │ │ │ │ ├── list-all-effects.api.mdx │ │ │ │ ├── list-all-ledgers.api.mdx │ │ │ │ ├── list-all-operations.api.mdx │ │ │ │ ├── list-all-payments.api.mdx │ │ │ │ ├── list-all-transactions.api.mdx │ │ │ │ ├── list-liquidity-pools.api.mdx │ │ │ │ ├── list-strict-receive-payment-paths.api.mdx │ │ │ │ ├── list-strict-send-payment-paths.api.mdx │ │ │ │ ├── list-trade-aggregations.api.mdx │ │ │ │ ├── lp-retrieve-related-operations.api.mdx │ │ │ │ ├── lp-retrieve-related-transactions.api.mdx │ │ │ │ ├── resources │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── accounts │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── claimablebalances │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── types.mdx │ │ │ │ │ ├── ledgers │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── liquiditypools │ │ │ │ │ │ └── README.mdx │ │ │ │ │ ├── offers │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── account-merge.mdx │ │ │ │ │ │ │ ├── allow-trust.mdx │ │ │ │ │ │ │ ├── begin-sponsoring-future-reserves.mdx │ │ │ │ │ │ │ ├── bump-sequence.mdx │ │ │ │ │ │ │ ├── buy-offer.mdx │ │ │ │ │ │ │ ├── change-trust.mdx │ │ │ │ │ │ │ ├── claim-claimable-balance.mdx │ │ │ │ │ │ │ ├── create-account.mdx │ │ │ │ │ │ │ ├── create-claimable-balance.mdx │ │ │ │ │ │ │ ├── end-sponsoring-future-reserves.mdx │ │ │ │ │ │ │ ├── extend-footprint-ttl.mdx │ │ │ │ │ │ │ ├── invoke-host-function.mdx │ │ │ │ │ │ │ ├── liquidity-pool-deposit.mdx │ │ │ │ │ │ │ ├── liquidity-pool-withdraw.mdx │ │ │ │ │ │ │ ├── manage-data.mdx │ │ │ │ │ │ │ ├── passive-sell-offer.mdx │ │ │ │ │ │ │ ├── path-payment-strict-receive.mdx │ │ │ │ │ │ │ ├── path-payment-strict-send.mdx │ │ │ │ │ │ │ ├── restore-footprint.mdx │ │ │ │ │ │ │ ├── revoke-sponsorship.mdx │ │ │ │ │ │ │ ├── sell-offer.mdx │ │ │ │ │ │ │ └── set-options.mdx │ │ │ │ │ ├── payments │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── trades │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ │ └── transactions │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── object.mdx │ │ │ │ ├── retrieve-a-claimable-balance.api.mdx │ │ │ │ ├── retrieve-a-ledger.api.mdx │ │ │ │ ├── retrieve-a-ledgers-effects.api.mdx │ │ │ │ ├── retrieve-a-ledgers-operations.api.mdx │ │ │ │ ├── retrieve-a-ledgers-payments.api.mdx │ │ │ │ ├── retrieve-a-ledgers-transactions.api.mdx │ │ │ │ ├── retrieve-a-liquidity-pool.api.mdx │ │ │ │ ├── retrieve-a-transaction.api.mdx │ │ │ │ ├── retrieve-a-transactions-effects.api.mdx │ │ │ │ ├── retrieve-a-transactions-operations.api.mdx │ │ │ │ ├── retrieve-a-transactions-payments.api.mdx │ │ │ │ ├── retrieve-an-account.api.mdx │ │ │ │ ├── retrieve-an-operation.api.mdx │ │ │ │ ├── retrieve-an-operations-effects.api.mdx │ │ │ │ ├── retrieve-an-order-book.api.mdx │ │ │ │ ├── retrieve-fee-stats.api.mdx │ │ │ │ ├── retrieve-related-effects.api.mdx │ │ │ │ ├── retrieve-related-trades.api.mdx │ │ │ │ ├── sidebar.ts │ │ │ │ ├── structure │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── consistency.mdx │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── page-arguments.mdx │ │ │ │ │ ├── rate-limiting.mdx │ │ │ │ │ ├── response-format.mdx │ │ │ │ │ ├── streaming.mdx │ │ │ │ │ └── xdr.mdx │ │ │ │ ├── submit-a-transaction.api.mdx │ │ │ │ └── submit-async-transaction.api.mdx │ │ │ └── providers.mdx │ │ ├── migrate-from-horizon-to-rpc.mdx │ │ └── rpc │ │ │ ├── README.mdx │ │ │ ├── admin-guide │ │ │ ├── README.mdx │ │ │ ├── configuring.mdx │ │ │ ├── data-lake-integration.mdx │ │ │ ├── development.mdx │ │ │ ├── installing.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── prerequisites.mdx │ │ │ └── running.mdx │ │ │ ├── api-reference │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── methods │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── getEvents.mdx │ │ │ │ ├── getFeeStats.mdx │ │ │ │ ├── getHealth.mdx │ │ │ │ ├── getLatestLedger.mdx │ │ │ │ ├── getLedgerEntries.mdx │ │ │ │ ├── getLedgers.mdx │ │ │ │ ├── getNetwork.mdx │ │ │ │ ├── getTransaction.mdx │ │ │ │ ├── getTransactions.mdx │ │ │ │ ├── getVersionInfo.mdx │ │ │ │ ├── sendTransaction.mdx │ │ │ │ └── simulateTransaction.mdx │ │ │ └── structure │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── data-format.mdx │ │ │ │ ├── json-rpc.mdx │ │ │ │ └── pagination.mdx │ │ │ └── providers.mdx │ ├── indexers │ │ ├── README.mdx │ │ ├── build-your-own │ │ │ ├── README.mdx │ │ │ ├── galexie │ │ │ │ ├── README.mdx │ │ │ │ ├── admin_guide │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── configuring.mdx │ │ │ │ │ ├── full-history-exporting.mdx │ │ │ │ │ ├── installing.mdx │ │ │ │ │ ├── monitoring.mdx │ │ │ │ │ ├── prerequisites.mdx │ │ │ │ │ ├── running.mdx │ │ │ │ │ └── setup.mdx │ │ │ │ ├── examples │ │ │ │ │ ├── README.mdx │ │ │ │ │ └── gcs-export.mdx │ │ │ │ └── providers.mdx │ │ │ ├── ingest-sdk │ │ │ │ ├── README.mdx │ │ │ │ ├── developer_guide │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ ├── ledgerbackends │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── bufferedstoragebackend.mdx │ │ │ │ │ │ ├── captivecore.mdx │ │ │ │ │ │ └── rpcledgerbackend.mdx │ │ │ │ │ ├── ledgerreaders.mdx │ │ │ │ │ └── prerequisites.mdx │ │ │ │ └── examples │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── changes.mdx │ │ │ │ │ ├── ledger_entry_statistics.mdx │ │ │ │ │ └── transaction_statistics.mdx │ │ │ ├── processors │ │ │ │ ├── README.mdx │ │ │ │ └── token-transfer-processor │ │ │ │ │ ├── README.mdx │ │ │ │ │ └── examples │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── event_stats.mdx │ │ │ │ │ └── filter_events.mdx │ │ │ └── tutorials │ │ │ │ └── README.mdx │ │ └── indexer-providers │ │ │ └── indexer-providers.mdx │ └── oracles │ │ ├── README.mdx │ │ └── oracle-providers.mdx ├── learn │ ├── fundamentals │ │ ├── README.mdx │ │ ├── anchors.mdx │ │ ├── contract-development │ │ │ ├── README.mdx │ │ │ ├── authorization.mdx │ │ │ ├── contract-interactions │ │ │ │ ├── README.mdx │ │ │ │ ├── cross-contract.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── stellar-transaction.mdx │ │ │ │ ├── tests.mdx │ │ │ │ └── transaction-simulation.mdx │ │ │ ├── contract-lifecycle.mdx │ │ │ ├── environment-concepts.mdx │ │ │ ├── errors-and-debugging │ │ │ │ ├── README.mdx │ │ │ │ ├── debugging-errors.mdx │ │ │ │ ├── debugging.mdx │ │ │ │ └── errors.mdx │ │ │ ├── overview.mdx │ │ │ ├── rust-dialect.mdx │ │ │ ├── storage │ │ │ │ ├── README.mdx │ │ │ │ ├── persisting-data.mdx │ │ │ │ └── state-archival.mdx │ │ │ ├── transaction-lifecycle.mdx │ │ │ └── types │ │ │ │ ├── README.mdx │ │ │ │ ├── built-in-types.mdx │ │ │ │ ├── custom-types.mdx │ │ │ │ └── fully-typed-contracts.mdx │ │ ├── data-format │ │ │ ├── README.mdx │ │ │ ├── xdr-json.mdx │ │ │ └── xdr.mdx │ │ ├── fees-resource-limits-metering.mdx │ │ ├── liquidity-on-stellar-sdex-liquidity-pools.mdx │ │ ├── lumens.mdx │ │ ├── stellar-consensus-protocol.mdx │ │ ├── stellar-data-structures │ │ │ ├── README.mdx │ │ │ ├── accounts.mdx │ │ │ ├── assets.mdx │ │ │ ├── contracts.mdx │ │ │ ├── events.mdx │ │ │ └── ledgers.mdx │ │ ├── stellar-ecosystem-proposals.mdx │ │ ├── stellar-stack.mdx │ │ └── transactions │ │ │ ├── README.mdx │ │ │ ├── list-of-operations.mdx │ │ │ ├── operations-and-transactions.mdx │ │ │ ├── signatures-multisig.mdx │ │ │ └── transaction-lifecycle.mdx │ ├── glossary.mdx │ ├── interactive │ │ ├── README.mdx │ │ ├── dapp-world.mdx │ │ ├── fca00c.mdx │ │ └── quest.mdx │ └── migrate │ │ ├── README.mdx │ │ ├── cosmos.mdx │ │ ├── evm │ │ ├── README.mdx │ │ ├── introduction-to-solidity-and-rust.mdx │ │ ├── smart-contract-deployment.mdx │ │ ├── solidity-and-rust-advanced-concepts.mdx │ │ ├── solidity-and-rust-basics.mdx │ │ └── solidity-support-via-solang.mdx │ │ ├── near.mdx │ │ └── solana.mdx ├── networks │ ├── README.mdx │ ├── resource-limits-fees.mdx │ └── software-versions.mdx ├── platforms │ ├── README.mdx │ ├── anchor-platform │ │ ├── CONTRIBUTING.md │ │ ├── README.mdx │ │ ├── admin-guide │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── architecture.mdx │ │ │ ├── assets-and-client-wallets.mdx │ │ │ ├── component │ │ │ │ ├── observer │ │ │ │ │ └── observer.mdx │ │ │ │ ├── rpc │ │ │ │ │ ├── error.mdx │ │ │ │ │ ├── request.mdx │ │ │ │ │ ├── response.mdx │ │ │ │ │ └── rpc.mdx │ │ │ │ └── security │ │ │ │ │ ├── api_key.mdx │ │ │ │ │ ├── jwt.mdx │ │ │ │ │ └── security.mdx │ │ │ ├── events │ │ │ │ ├── README.mdx │ │ │ │ ├── delivery.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── integration.mdx │ │ │ └── getting-started.mdx │ │ ├── api-reference │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── callbacks │ │ │ │ ├── README.mdx │ │ │ │ ├── del-customer.api.mdx │ │ │ │ ├── get-customer.api.mdx │ │ │ │ ├── get-rates.api.mdx │ │ │ │ ├── post-event.api.mdx │ │ │ │ └── put-customer.api.mdx │ │ │ └── platform │ │ │ │ ├── README.mdx │ │ │ │ ├── rpc │ │ │ │ ├── README.mdx │ │ │ │ ├── anchor-platform.openrpc.json │ │ │ │ ├── methods │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── do_stellar_payment.mdx │ │ │ │ │ ├── do_stellar_refund.mdx │ │ │ │ │ ├── get_transaction.mdx │ │ │ │ │ ├── get_transactions.mdx │ │ │ │ │ ├── notify_amounts_updated.mdx │ │ │ │ │ ├── notify_customer_info_updated.mdx │ │ │ │ │ ├── notify_interactive_flow_completed.mdx │ │ │ │ │ ├── notify_offchain_funds_available.mdx │ │ │ │ │ ├── notify_offchain_funds_pending.mdx │ │ │ │ │ ├── notify_offchain_funds_received.mdx │ │ │ │ │ ├── notify_offchain_funds_sent.mdx │ │ │ │ │ ├── notify_onchain_funds_received.mdx │ │ │ │ │ ├── notify_onchain_funds_sent.mdx │ │ │ │ │ ├── notify_refund_pending.mdx │ │ │ │ │ ├── notify_refund_sent.mdx │ │ │ │ │ ├── notify_transaction_error.mdx │ │ │ │ │ ├── notify_transaction_expired.mdx │ │ │ │ │ ├── notify_transaction_on_hold.mdx │ │ │ │ │ ├── notify_transaction_recovery.mdx │ │ │ │ │ ├── notify_trust_set.mdx │ │ │ │ │ ├── request_offchain_funds.mdx │ │ │ │ │ ├── request_onchain_funds.mdx │ │ │ │ │ └── request_trust.mdx │ │ │ │ └── overview.mdx │ │ │ │ └── transactions │ │ │ │ ├── README.mdx │ │ │ │ ├── get-transaction.api.mdx │ │ │ │ └── get-transactions.api.mdx │ │ └── sep-guide │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── sep1 │ │ │ └── README.mdx │ │ │ ├── sep10 │ │ │ └── README.mdx │ │ │ ├── sep24 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── example.mdx │ │ │ ├── faq.mdx │ │ │ ├── getting-started.mdx │ │ │ ├── integration.mdx │ │ │ └── setting-up-production-server.mdx │ │ │ ├── sep31 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ │ ├── sep45 │ │ │ └── README.mdx │ │ │ └── sep6 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ └── stellar-disbursement-platform │ │ ├── README.mdx │ │ ├── admin-guide │ │ ├── advanced-configration.mdx │ │ ├── cli-manual.mdx │ │ ├── configuring-sdp.mdx │ │ ├── deploy-the-sdp.mdx │ │ ├── design-and-architecture.mdx │ │ ├── getting-started.mdx │ │ ├── making-your-wallet-sdp-ready.mdx │ │ ├── monitoring.mdx │ │ ├── overview.mdx │ │ ├── security.mdx │ │ └── user-interface │ │ │ ├── README.mdx │ │ │ ├── analytics.mdx │ │ │ ├── circle-configuration.mdx │ │ │ ├── dashboard-home.mdx │ │ │ ├── disbursements.mdx │ │ │ ├── payments.mdx │ │ │ ├── receivers.mdx │ │ │ └── wallets.mdx │ │ └── api-reference │ │ ├── _category_.json │ │ ├── admin.tag.mdx │ │ ├── api-keys.tag.mdx │ │ ├── authenticate-mfa.api.mdx │ │ ├── authentication.tag.mdx │ │ ├── balances.tag.mdx │ │ ├── bridge-integration.tag.mdx │ │ ├── create-api-key.api.mdx │ │ ├── create-asset.api.mdx │ │ ├── create-direct-payment.api.mdx │ │ ├── create-disbursement.api.mdx │ │ ├── create-receiver.api.mdx │ │ ├── create-tenant.api.mdx │ │ ├── create-user.api.mdx │ │ ├── create-wallet.api.mdx │ │ ├── default-tenant.api.mdx │ │ ├── delete-a-disbursement.api.mdx │ │ ├── delete-api-key.api.mdx │ │ ├── delete-asset.api.mdx │ │ ├── disbursements.tag.mdx │ │ ├── download-disbursement-instructions.api.mdx │ │ ├── export-disbursements.api.mdx │ │ ├── export-payments-csv.api.mdx │ │ ├── export-receivers-csv.api.mdx │ │ ├── forgot-password.api.mdx │ │ ├── get-all-assets.api.mdx │ │ ├── get-all-roles.api.mdx │ │ ├── get-all-tenants.api.mdx │ │ ├── get-all-users.api.mdx │ │ ├── get-all-wallets.api.mdx │ │ ├── get-api-key.api.mdx │ │ ├── get-bridge-integration.api.mdx │ │ ├── get-organization-circle-balances.api.mdx │ │ ├── get-organization-info.api.mdx │ │ ├── get-organization-logo.api.mdx │ │ ├── get-profile.api.mdx │ │ ├── list-all-disbursement-receivers.api.mdx │ │ ├── list-all-disbursements.api.mdx │ │ ├── list-all-payments.api.mdx │ │ ├── list-all-receivers.api.mdx │ │ ├── list-api-keys.api.mdx │ │ ├── log-in.api.mdx │ │ ├── organization.tag.mdx │ │ ├── patch-organization-circle.api.mdx │ │ ├── payments.tag.mdx │ │ ├── profile.tag.mdx │ │ ├── provide-signed-challenge-transaction.api.mdx │ │ ├── receivers.tag.mdx │ │ ├── refresh-token.api.mdx │ │ ├── registration.tag.mdx │ │ ├── request-challenge-transaction.api.mdx │ │ ├── request-registration-url.api.mdx │ │ ├── reset-password.api.mdx │ │ ├── retrieve-a-disbursement.api.mdx │ │ ├── retrieve-a-payment.api.mdx │ │ ├── retrieve-a-receiver.api.mdx │ │ ├── retrieve-a-tenant.api.mdx │ │ ├── retrieve-all-statistics.api.mdx │ │ ├── retrieve-disbursement-statistics.api.mdx │ │ ├── retrieve-stellar-info-file.api.mdx │ │ ├── send-one-time-passcode.api.mdx │ │ ├── sidebar.ts │ │ ├── soft-delete-a-tenant.api.mdx │ │ ├── start-wallet-registration.api.mdx │ │ ├── statistics.tag.mdx │ │ ├── update-a-disbursement-status.api.mdx │ │ ├── update-a-tenant.api.mdx │ │ ├── update-api-key.api.mdx │ │ ├── update-bridge-integration.api.mdx │ │ ├── update-organization-profile.api.mdx │ │ ├── update-receiver.api.mdx │ │ ├── update-user-activation-status.api.mdx │ │ ├── update-user-profile.api.mdx │ │ ├── update-user-role.api.mdx │ │ ├── update-wallet.api.mdx │ │ ├── upload-disbursement-instructions.api.mdx │ │ ├── users.tag.mdx │ │ └── verify-receiver-registration.api.mdx ├── tokens │ ├── README.mdx │ ├── anatomy-of-an-asset.mdx │ ├── control-asset-access.mdx │ ├── how-to-issue-an-asset.mdx │ ├── publishing-asset-info.mdx │ ├── quickstart.mdx │ ├── stellar-asset-contract.mdx │ └── token-interface.mdx ├── tools │ ├── README.mdx │ ├── cli │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── cookbook │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── asset-management.mdx │ │ │ ├── contract-build-meta.mdx │ │ │ ├── contract-lifecycle.mdx │ │ │ ├── deploy-contract.mdx │ │ │ ├── deploy-stellar-asset-contract.mdx │ │ │ ├── extend-contract-instance.mdx │ │ │ ├── extend-contract-storage.mdx │ │ │ ├── extend-contract-wasm.mdx │ │ │ ├── payments-and-assets.mdx │ │ │ ├── restore-contract-instance.mdx │ │ │ ├── restore-contract-storage.mdx │ │ │ ├── stellar-keys.mdx │ │ │ ├── tx-new-create-claimable-balance.mdx │ │ │ ├── tx-new.mdx │ │ │ ├── tx-op-add.mdx │ │ │ ├── tx-sign.mdx │ │ │ ├── upload-deploy.mdx │ │ │ └── upload-wasm.mdx │ │ ├── install-cli.mdx │ │ ├── plugins-list.mdx │ │ ├── plugins.mdx │ │ └── stellar-cli.mdx │ ├── developer-tools │ │ ├── IDEs.mdx │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── ai-bot.mdx │ │ ├── analytics-platforms.mdx │ │ ├── anchor-tools.mdx │ │ ├── asset-tools.mdx │ │ ├── block-explorers.mdx │ │ ├── jupyter-notebooks.mdx │ │ ├── network-insights.mdx │ │ ├── network-status.mdx │ │ ├── node-operator-tools.mdx │ │ ├── security-tools.mdx │ │ └── wallets.mdx │ ├── infra-tools │ │ ├── README.mdx │ │ └── cross-chain.mdx │ ├── lab │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── account.mdx │ │ ├── api-explorer │ │ │ ├── README.mdx │ │ │ ├── horizon-endpoint.mdx │ │ │ └── rpc-methods.mdx │ │ ├── quickstart-with-lab.mdx │ │ ├── saved │ │ │ ├── README.mdx │ │ │ ├── keypairs.mdx │ │ │ ├── requests.mdx │ │ │ └── transactions.mdx │ │ ├── smart-contracts │ │ │ ├── README.mdx │ │ │ ├── contract-explorer.mdx │ │ │ ├── smart-contract-list.mdx │ │ │ └── upload-deploy-contract.mdx │ │ ├── transactions.mdx │ │ └── view-xdr │ │ │ ├── README.mdx │ │ │ ├── diff-xdr.mdx │ │ │ ├── json-to-xdr.mdx │ │ │ └── xdr-to-json.mdx │ ├── openzeppelin-contracts.mdx │ ├── quickstart │ │ ├── README.mdx │ │ ├── advanced-usage │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── container.mdx │ │ │ ├── operation-modes.mdx │ │ │ ├── ports.mdx │ │ │ ├── run-command-examples.mdx │ │ │ └── service-options.mdx │ │ ├── cloud │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── digitalocean.mdx │ │ │ └── fly.io.mdx │ │ ├── debugging │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── diagnostic-events.mdx │ │ │ └── viewing-logs.mdx │ │ ├── explorer.mdx │ │ ├── faucet.mdx │ │ ├── getting-started │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── connect-stellar-lab.mdx │ │ │ └── deploy-smart-contract.mdx │ │ └── network-modes.mdx │ ├── ramps │ │ ├── README.mdx │ │ └── moneygram.mdx │ ├── scaffold-stellar.mdx │ └── sdks │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── build-your-own.mdx │ │ ├── client-sdks.mdx │ │ └── contract-sdks.mdx └── validators │ ├── README.mdx │ ├── admin-guide │ ├── README.mdx │ ├── _category_.json │ ├── advanced.mdx │ ├── commands.mdx │ ├── configuring.mdx │ ├── environment-preparation.mdx │ ├── installation.mdx │ ├── logging.mdx │ ├── maintenance.mdx │ ├── monitoring.mdx │ ├── network-upgrades.mdx │ ├── prerequisites.mdx │ ├── publishing-history-archives.mdx │ ├── running-node.mdx │ └── soroban-settings.mdx │ └── tier-1-orgs.mdx ├── docusaurus.config.ts ├── eslint.config.mjs ├── i18n ├── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs-ap │ │ └── current.json │ ├── docusaurus-plugin-content-docs-sdp │ │ └── current.json │ ├── docusaurus-plugin-content-docs │ │ └── current.json │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json └── es │ ├── code.json │ ├── docusaurus-plugin-content-blog │ ├── 2024-01-18.mdx │ ├── 2024-01-26.mdx │ ├── 2024-02-01.mdx │ ├── 2024-02-09.mdx │ ├── 2024-02-15.mdx │ ├── 2024-02-22.mdx │ ├── 2024-02-29.mdx │ ├── 2024-03-07.mdx │ ├── 2024-03-14.mdx │ ├── 2024-03-21.mdx │ ├── 2024-03-28.mdx │ ├── 2024-04-04.mdx │ ├── 2024-04-11.mdx │ ├── 2024-04-18.mdx │ ├── 2024-04-25.mdx │ ├── 2024-05-02.mdx │ ├── 2024-05-09.mdx │ ├── 2024-06-13.mdx │ ├── 2024-06-20.mdx │ ├── 2024-06-27.mdx │ ├── 2024-07-11.mdx │ ├── 2024-07-18.mdx │ ├── 2024-07-25.mdx │ ├── 2024-08-01.mdx │ ├── 2024-08-08.mdx │ ├── 2024-08-15.mdx │ ├── 2024-08-22.mdx │ ├── 2024-08-29.mdx │ ├── 2024-09-05.mdx │ ├── 2024-09-12.mdx │ ├── 2024-09-19.mdx │ ├── 2024-09-26.mdx │ ├── 2024-10-24.mdx │ ├── 2024-11-14.mdx │ ├── 2024-12-05.mdx │ ├── 2024-12-12.mdx │ ├── 2024-12-19.mdx │ ├── 2025-01-16.mdx │ ├── 2025-01-23.mdx │ ├── 2025-01-30.mdx │ ├── 2025-02-06.mdx │ ├── 2025-02-13.mdx │ ├── 2025-02-20.mdx │ ├── 2025-02-27.mdx │ ├── 2025-03-06.mdx │ ├── 2025-03-27.mdx │ ├── 2025-04-03.mdx │ ├── 2025-04-10.mdx │ ├── 2025-04-17.mdx │ ├── 2025-05-01.mdx │ ├── 2025-05-22.mdx │ ├── 2025-07-10.mdx │ ├── 2025-07-17.mdx │ ├── 2025-07-24.mdx │ ├── 2025-08-07.mdx │ ├── 2025-09-25.mdx │ ├── 2025-10-02.mdx │ ├── 2025-10-09.mdx │ ├── 2025-10-16.mdx │ ├── 2025-10-23.mdx │ ├── 2025-10-30.mdx │ ├── 2025-11-06.mdx │ ├── authors.yml │ └── options.json │ ├── docusaurus-plugin-content-docs-ap │ ├── current.json │ └── current │ │ ├── CONTRIBUTING.md │ │ ├── README.mdx │ │ ├── admin-guide │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── architecture.mdx │ │ ├── assets-and-client-wallets.mdx │ │ ├── component │ │ │ ├── observer │ │ │ │ └── observer.mdx │ │ │ ├── rpc │ │ │ │ ├── error.mdx │ │ │ │ ├── request.mdx │ │ │ │ ├── response.mdx │ │ │ │ └── rpc.mdx │ │ │ └── security │ │ │ │ ├── api_key.mdx │ │ │ │ ├── jwt.mdx │ │ │ │ └── security.mdx │ │ ├── custody-services │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ └── fireblocks │ │ │ │ ├── README.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ └── example.mdx │ │ ├── events │ │ │ ├── README.mdx │ │ │ ├── delivery.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ ├── getting-started.mdx │ │ ├── overview.mdx │ │ ├── sep1 │ │ │ └── README.mdx │ │ ├── sep10 │ │ │ └── README.mdx │ │ ├── sep24 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── example.mdx │ │ │ ├── faq.mdx │ │ │ ├── getting-started.mdx │ │ │ ├── integration.mdx │ │ │ └── setting-up-production-server.mdx │ │ ├── sep31 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ ├── sep45 │ │ │ └── README.mdx │ │ └── sep6 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ ├── api-reference │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── callbacks │ │ │ ├── README.mdx │ │ │ ├── del-customer.api.mdx │ │ │ ├── get-customer.api.mdx │ │ │ ├── get-rates.api.mdx │ │ │ ├── post-event.api.mdx │ │ │ ├── put-customer.api.mdx │ │ │ └── versions.json │ │ ├── custody │ │ │ ├── README.mdx │ │ │ ├── create-custody-transaction.api.mdx │ │ │ ├── generate-unique-address.api.mdx │ │ │ ├── send-payment.api.mdx │ │ │ ├── send-refund.api.mdx │ │ │ └── versions.json │ │ └── platform │ │ │ ├── README.mdx │ │ │ ├── rpc │ │ │ ├── README.mdx │ │ │ ├── anchor-platform.openrpc.json │ │ │ ├── methods │ │ │ │ ├── README.mdx │ │ │ │ ├── do_stellar_payment.mdx │ │ │ │ ├── do_stellar_refund.mdx │ │ │ │ ├── get_transaction.mdx │ │ │ │ ├── get_transactions.mdx │ │ │ │ ├── notify_amounts_updated.mdx │ │ │ │ ├── notify_customer_info_updated.mdx │ │ │ │ ├── notify_interactive_flow_completed.mdx │ │ │ │ ├── notify_offchain_funds_available.mdx │ │ │ │ ├── notify_offchain_funds_pending.mdx │ │ │ │ ├── notify_offchain_funds_received.mdx │ │ │ │ ├── notify_offchain_funds_sent.mdx │ │ │ │ ├── notify_onchain_funds_received.mdx │ │ │ │ ├── notify_onchain_funds_sent.mdx │ │ │ │ ├── notify_refund_pending.mdx │ │ │ │ ├── notify_refund_sent.mdx │ │ │ │ ├── notify_transaction_error.mdx │ │ │ │ ├── notify_transaction_expired.mdx │ │ │ │ ├── notify_transaction_on_hold.mdx │ │ │ │ ├── notify_transaction_recovery.mdx │ │ │ │ ├── notify_trust_set.mdx │ │ │ │ ├── request_offchain_funds.mdx │ │ │ │ ├── request_onchain_funds.mdx │ │ │ │ └── request_trust.mdx │ │ │ └── overview.mdx │ │ │ └── transactions │ │ │ ├── README.mdx │ │ │ ├── get-transaction.api.mdx │ │ │ ├── get-transactions.api.mdx │ │ │ └── versions.json │ │ ├── assets │ │ ├── SEP24-state-diagram.png │ │ ├── anchor-platform-architecture-1.png │ │ ├── anchor-platform-architecture-2.png │ │ ├── anchor-platform-sep24-demo-wallet-widget.png │ │ ├── anchor-platform-sep24-demo-wallet.png │ │ ├── anchor-platform-sep31-demo-wallet-widget.png │ │ ├── sep24-deposit-flow-diagram.png │ │ ├── sep24-withdrawal-flow-diagram.png │ │ ├── sep31-transition-diagram.png │ │ ├── sep6-deposit-flow-diagram.png │ │ ├── sep6-withdrawal-flow-diagram.png │ │ ├── sequence_diagram_sep24_deposit_job.png │ │ ├── sequence_diagram_sep24_deposit_webhook.png │ │ ├── sequence_diagram_sep24_withdrawal_job.png │ │ ├── sequence_diagram_sep24_withdrawal_webhook.png │ │ ├── sequence_diagram_sep31_receive_job.png │ │ └── sequence_diagram_sep31_receive_webhook.png │ │ ├── sep-guide │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── sep1 │ │ │ └── README.mdx │ │ ├── sep10 │ │ │ └── README.mdx │ │ ├── sep24 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── example.mdx │ │ │ ├── faq.mdx │ │ │ ├── getting-started.mdx │ │ │ ├── integration.mdx │ │ │ └── setting-up-production-server.mdx │ │ ├── sep31 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ ├── sep45 │ │ │ └── README.mdx │ │ └── sep6 │ │ │ ├── README.mdx │ │ │ ├── configuration.mdx │ │ │ ├── getting-started.mdx │ │ │ └── integration.mdx │ │ └── whats-new.mdx │ ├── docusaurus-plugin-content-docs-sdp │ ├── current.json │ └── current │ │ ├── README.mdx │ │ ├── admin-guide │ │ ├── advanced-configration.mdx │ │ ├── anchor-platform-integration-points.mdx │ │ ├── cli-manual.mdx │ │ ├── configuring-sdp.mdx │ │ ├── deploy-the-sdp.mdx │ │ ├── design-and-architecture.mdx │ │ ├── getting-started.mdx │ │ ├── making-your-wallet-sdp-ready.mdx │ │ ├── monitoring.mdx │ │ ├── overview.mdx │ │ ├── secure-operation-manual.mdx │ │ ├── security.mdx │ │ ├── single-tenant-to-multi-tenant-migration.mdx │ │ ├── tenant-provisioning.mdx │ │ └── user-interface │ │ │ ├── README.mdx │ │ │ ├── analytics.mdx │ │ │ ├── circle-configuration.mdx │ │ │ ├── dashboard-home.mdx │ │ │ ├── disbursements.mdx │ │ │ ├── payments.mdx │ │ │ ├── receivers.mdx │ │ │ └── wallets.mdx │ │ └── api-reference │ │ ├── _category_.json │ │ ├── admin.tag.mdx │ │ ├── api-keys.tag.mdx │ │ ├── authenticate-mfa.api.mdx │ │ ├── authentication.tag.mdx │ │ ├── balances.tag.mdx │ │ ├── bridge-integration.tag.mdx │ │ ├── create-api-key.api.mdx │ │ ├── create-asset.api.mdx │ │ ├── create-direct-payment.api.mdx │ │ ├── create-disbursement.api.mdx │ │ ├── create-receiver.api.mdx │ │ ├── create-tenant.api.mdx │ │ ├── create-user.api.mdx │ │ ├── create-wallet.api.mdx │ │ ├── default-tenant.api.mdx │ │ ├── delete-a-disbursement.api.mdx │ │ ├── delete-api-key.api.mdx │ │ ├── delete-asset.api.mdx │ │ ├── disbursements.tag.mdx │ │ ├── download-disbursement-instructions.api.mdx │ │ ├── export-disbursements.api.mdx │ │ ├── export-payments-csv.api.mdx │ │ ├── export-receivers-csv.api.mdx │ │ ├── forgot-password.api.mdx │ │ ├── get-all-assets.api.mdx │ │ ├── get-all-roles.api.mdx │ │ ├── get-all-tenants.api.mdx │ │ ├── get-all-users.api.mdx │ │ ├── get-all-wallets.api.mdx │ │ ├── get-api-key.api.mdx │ │ ├── get-bridge-integration.api.mdx │ │ ├── get-organization-circle-balances.api.mdx │ │ ├── get-organization-info.api.mdx │ │ ├── get-organization-logo.api.mdx │ │ ├── get-profile.api.mdx │ │ ├── list-all-disbursement-receivers.api.mdx │ │ ├── list-all-disbursements.api.mdx │ │ ├── list-all-payments.api.mdx │ │ ├── list-all-receivers.api.mdx │ │ ├── list-api-keys.api.mdx │ │ ├── log-in.api.mdx │ │ ├── organization.tag.mdx │ │ ├── patch-organization-circle.api.mdx │ │ ├── payments.tag.mdx │ │ ├── profile.tag.mdx │ │ ├── provide-signed-challenge-transaction.api.mdx │ │ ├── receivers.tag.mdx │ │ ├── refresh-token.api.mdx │ │ ├── registration.tag.mdx │ │ ├── request-challenge-transaction.api.mdx │ │ ├── request-registration-url.api.mdx │ │ ├── reset-password.api.mdx │ │ ├── retrieve-a-disbursement.api.mdx │ │ ├── retrieve-a-payment.api.mdx │ │ ├── retrieve-a-receiver.api.mdx │ │ ├── retrieve-a-tenant.api.mdx │ │ ├── retrieve-all-statistics.api.mdx │ │ ├── retrieve-disbursement-statistics.api.mdx │ │ ├── retrieve-stellar-info-file.api.mdx │ │ ├── send-one-time-passcode.api.mdx │ │ ├── sidebar.ts │ │ ├── soft-delete-a-tenant.api.mdx │ │ ├── start-wallet-registration.api.mdx │ │ ├── statistics.tag.mdx │ │ ├── update-a-disbursement-status.api.mdx │ │ ├── update-a-tenant.api.mdx │ │ ├── update-api-key.api.mdx │ │ ├── update-bridge-integration.api.mdx │ │ ├── update-organization-profile.api.mdx │ │ ├── update-receiver.api.mdx │ │ ├── update-user-activation-status.api.mdx │ │ ├── update-user-profile.api.mdx │ │ ├── update-user-role.api.mdx │ │ ├── update-wallet.api.mdx │ │ ├── upload-disbursement-instructions.api.mdx │ │ ├── users.tag.mdx │ │ └── verify-receiver-registration.api.mdx │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── README.mdx │ │ ├── build │ │ ├── README.mdx │ │ ├── apps │ │ │ ├── README.mdx │ │ │ ├── application-design-considerations.mdx │ │ │ ├── dapp-frontend.mdx │ │ │ ├── example-application-tutorial │ │ │ │ ├── _category_.json │ │ │ │ ├── account-creation.mdx │ │ │ │ ├── anchor-integration │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── sep1.mdx │ │ │ │ │ ├── sep10.mdx │ │ │ │ │ ├── sep24.mdx │ │ │ │ │ ├── sep6.mdx │ │ │ │ │ └── setup.mdx │ │ │ │ ├── confirmation-modal.mdx │ │ │ │ ├── contacts-list.mdx │ │ │ │ ├── manage-trust.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── path-payment.mdx │ │ │ │ ├── payment.mdx │ │ │ │ └── querying-data.mdx │ │ │ ├── guestbook │ │ │ │ ├── README.mdx │ │ │ │ ├── bindings.mdx │ │ │ │ ├── frontend.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── passkeys-prerequisites.mdx │ │ │ │ ├── setup-passkeys.mdx │ │ │ │ └── smart-contract.mdx │ │ │ ├── ingest-sdk │ │ │ │ ├── _category_.json │ │ │ │ ├── ingestion-pipeline-code.mdx │ │ │ │ └── overview.mdx │ │ │ ├── overview.mdx │ │ │ ├── smart-wallets.mdx │ │ │ ├── swift-payment-app.mdx │ │ │ └── wallet │ │ │ │ ├── README.md │ │ │ │ ├── _category_.json │ │ │ │ ├── component │ │ │ │ ├── dart │ │ │ │ │ ├── configClient.mdx │ │ │ │ │ └── install.mdx │ │ │ │ ├── header.mdx │ │ │ │ ├── kt │ │ │ │ │ ├── configClient.mdx │ │ │ │ │ ├── globalSigner.mdx │ │ │ │ │ ├── httpConfig.mdx │ │ │ │ │ ├── install.mdx │ │ │ │ │ └── watcher.mdx │ │ │ │ ├── swift │ │ │ │ │ ├── globalSigner.mdx │ │ │ │ │ └── install.mdx │ │ │ │ └── ts │ │ │ │ │ ├── allowHttpInfo.mdx │ │ │ │ │ ├── configClient.mdx │ │ │ │ │ ├── createKeypairInfo.mdx │ │ │ │ │ ├── globalSigner.mdx │ │ │ │ │ └── install.mdx │ │ │ │ ├── intro.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── sep10.mdx │ │ │ │ ├── sep24.mdx │ │ │ │ ├── sep30.mdx │ │ │ │ ├── sep38.mdx │ │ │ │ ├── sep6.mdx │ │ │ │ ├── sep7.mdx │ │ │ │ └── stellar.mdx │ │ ├── guides │ │ │ ├── README.mdx │ │ │ ├── archival │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── create-restoration-footprint-js.mdx │ │ │ │ ├── extend-persistent-entry-js.mdx │ │ │ │ ├── restore-contract-js.mdx │ │ │ │ ├── restore-data-js.mdx │ │ │ │ └── test-ttl-extension.mdx │ │ │ ├── auth │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── check-auth-tutorials.mdx │ │ │ │ └── contract-authorization.mdx │ │ │ ├── basics │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── automate-reset-data.mdx │ │ │ │ ├── classic-transition.mdx │ │ │ │ ├── create-account.mdx │ │ │ │ ├── follow-received-payments.mdx │ │ │ │ ├── send-and-receive-payments.mdx │ │ │ │ └── verify-trustlines.mdx │ │ │ ├── cli │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── asset-management.mdx │ │ │ │ ├── contract-lifecycle.mdx │ │ │ │ ├── deploy-contract.mdx │ │ │ │ ├── deploy-stellar-asset-contract.mdx │ │ │ │ ├── extend-contract-instance.mdx │ │ │ │ ├── extend-contract-storage.mdx │ │ │ │ ├── extend-contract-wasm.mdx │ │ │ │ ├── install-deploy.mdx │ │ │ │ ├── install-wasm.mdx │ │ │ │ ├── payments-and-assets.mdx │ │ │ │ ├── restore-contract-instance.mdx │ │ │ │ ├── restore-contract-storage.mdx │ │ │ │ ├── tx-new-create-claimable-balance.mdx │ │ │ │ ├── tx-new.mdx │ │ │ │ ├── tx-op-add.mdx │ │ │ │ └── tx-sign.mdx │ │ │ ├── contract-accounts │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── advanced-patterns.mdx │ │ │ │ ├── examples.mdx │ │ │ │ └── smart-wallets.mdx │ │ │ ├── conventions │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── check-auth-tutorials.mdx │ │ │ │ ├── cross-contract.mdx │ │ │ │ ├── deploy-contract.mdx │ │ │ │ ├── deploy-sac-with-code.mdx │ │ │ │ ├── error-enum.mdx │ │ │ │ ├── extending-wasm-ttl.mdx │ │ │ │ ├── upgrading-contracts.mdx │ │ │ │ ├── wasm-metadata.mdx │ │ │ │ ├── work-contractspec-js.mdx │ │ │ │ └── workspace.mdx │ │ │ ├── conversions │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── address-conversions.mdx │ │ │ │ ├── address-to-bytesn.mdx │ │ │ │ ├── address-to-id.mdx │ │ │ │ ├── bytes-conversions.mdx │ │ │ │ ├── id-to-address.mdx │ │ │ │ ├── scval-conversions.mdx │ │ │ │ └── string-conversions.mdx │ │ │ ├── dapps │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── docker.mdx │ │ │ │ ├── frontend-guide.mdx │ │ │ │ ├── initialization.mdx │ │ │ │ ├── react.mdx │ │ │ │ ├── soroban-contract-init-template.mdx │ │ │ │ ├── state-archival.mdx │ │ │ │ └── working-with-contract-specs.mdx │ │ │ ├── events │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── consume.mdx │ │ │ │ ├── ingest.mdx │ │ │ │ └── publish.mdx │ │ │ ├── fees │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── analyzing-smart-contract-cost.mdx │ │ │ │ └── cost-analysis.mdx │ │ │ ├── freighter │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── connect-testnet.mdx │ │ │ │ ├── enable-soroban-tokens.mdx │ │ │ │ ├── integrate-freighter-react.mdx │ │ │ │ ├── prompt-to-sign-tx.mdx │ │ │ │ ├── send-token-payments.mdx │ │ │ │ ├── sign-auth-entries.mdx │ │ │ │ └── sign-soroban-xdrs.mdx │ │ │ ├── rpc │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── generate-ledger-keys-python.mdx │ │ │ │ ├── retrieve-contract-code-js.mdx │ │ │ │ ├── retrieve-contract-code-python.mdx │ │ │ │ ├── self-deploy-rpc.mdx │ │ │ │ └── use-public-rpc.mdx │ │ │ ├── storage │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── choose-type.mdx │ │ │ │ ├── choosing-the-right-storage.mdx │ │ │ │ ├── use-instance.mdx │ │ │ │ ├── use-persistent.mdx │ │ │ │ └── use-temporary.mdx │ │ │ ├── testing │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── code-coverage.mdx │ │ │ │ ├── differential-tests-with-test-snapshots.mdx │ │ │ │ ├── differential-tests.mdx │ │ │ │ ├── fork-testing.mdx │ │ │ │ ├── fuzzing.mdx │ │ │ │ ├── integration-tests.mdx │ │ │ │ ├── ledger-snapshot-testing.mdx │ │ │ │ ├── mocking.mdx │ │ │ │ ├── mutation-testing.mdx │ │ │ │ ├── test-contract-auth.mdx │ │ │ │ ├── test-contract-events.mdx │ │ │ │ └── unit-tests.mdx │ │ │ ├── tokens │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── custom-sac-admin.mdx │ │ │ │ ├── deploying-a-sac.mdx │ │ │ │ └── stellar-asset-contract.mdx │ │ │ └── transactions │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── channel-accounts.mdx │ │ │ │ ├── claimable-balances.mdx │ │ │ │ ├── clawbacks.mdx │ │ │ │ ├── create-account.mdx │ │ │ │ ├── fee-bump-transactions.mdx │ │ │ │ ├── install-deploy-contract-with-code.mdx │ │ │ │ ├── install-wasm-bytecode.mdx │ │ │ │ ├── invoke-contract-tx-sdk.mdx │ │ │ │ ├── path-payments.mdx │ │ │ │ ├── pooled-accounts-muxed-accounts-memos.mdx │ │ │ │ ├── send-and-receive-c-accounts.mdx │ │ │ │ ├── send-and-receive-payments.mdx │ │ │ │ ├── simulateTransaction-Deep-Dive.mdx │ │ │ │ ├── sponsored-reserves.mdx │ │ │ │ ├── submit-transaction-wait-js.mdx │ │ │ │ └── upload-wasm-bytecode.mdx │ │ ├── security-docs │ │ │ ├── README.mdx │ │ │ ├── securing-web-based-projects.mdx │ │ │ └── threat-modeling │ │ │ │ ├── README.mdx │ │ │ │ ├── STRIDE-template.mdx │ │ │ │ ├── pizza-restaurant-example.mdx │ │ │ │ ├── threat-modeling-description.mdx │ │ │ │ └── threat-modeling-how-to.mdx │ │ └── smart-contracts │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── example-contracts │ │ │ ├── README.mdx │ │ │ ├── TEMPLATE.mdx │ │ │ ├── alloc.mdx │ │ │ ├── atomic-multi-swap.mdx │ │ │ ├── atomic-swap.mdx │ │ │ ├── auth.mdx │ │ │ ├── bls-signature.mdx │ │ │ ├── complex-account.mdx │ │ │ ├── cross-contract-call.mdx │ │ │ ├── custom-account.mdx │ │ │ ├── custom-types.mdx │ │ │ ├── deployer.mdx │ │ │ ├── errors.mdx │ │ │ ├── events.mdx │ │ │ ├── fungible-token.mdx │ │ │ ├── fuzzing.mdx │ │ │ ├── liquidity-pool.mdx │ │ │ ├── logging.mdx │ │ │ ├── mint-lock.mdx │ │ │ ├── non-fungible-token.mdx │ │ │ ├── simple-account.mdx │ │ │ ├── single-offer-sale.mdx │ │ │ ├── storage.mdx │ │ │ ├── timelock.mdx │ │ │ ├── tokens.mdx │ │ │ ├── upgradeable-contract.mdx │ │ │ └── workspace.mdx │ │ │ ├── getting-started │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── deploy-increment-contract.mdx │ │ │ ├── deploy-to-testnet.mdx │ │ │ ├── hello-world-frontend.mdx │ │ │ ├── hello-world.mdx │ │ │ ├── setup.mdx │ │ │ └── storing-data.mdx │ │ │ └── overview.mdx │ │ ├── data │ │ ├── README.mdx │ │ ├── READ_FIRST.md │ │ ├── analytics │ │ │ ├── README.mdx │ │ │ ├── analytics-providers │ │ │ │ └── analytics-providers.mdx │ │ │ └── hubble │ │ │ │ ├── README.mdx │ │ │ │ ├── analyst-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── connecting.mdx │ │ │ │ ├── creating-visualizations.mdx │ │ │ │ ├── history-vs-state-tables.mdx │ │ │ │ ├── optimizing-queries.mdx │ │ │ │ ├── queries-for-horizon-like-data.mdx │ │ │ │ └── viewing-metadata.mdx │ │ │ │ ├── data-catalog │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── data-dictionary │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── accounts.mdx │ │ │ │ │ ├── bronze │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── account-signers.mdx │ │ │ │ │ │ ├── accounts.mdx │ │ │ │ │ │ ├── claimable-balances.mdx │ │ │ │ │ │ ├── config-settings.mdx │ │ │ │ │ │ ├── contract-code.mdx │ │ │ │ │ │ ├── contract-data.mdx │ │ │ │ │ │ ├── evicted-keys.mdx │ │ │ │ │ │ ├── history-assets.mdx │ │ │ │ │ │ ├── history-contract-events.mdx │ │ │ │ │ │ ├── history-effects.mdx │ │ │ │ │ │ ├── history-ledgers.mdx │ │ │ │ │ │ ├── history-operations.mdx │ │ │ │ │ │ ├── history-trades.mdx │ │ │ │ │ │ ├── history-transactions.mdx │ │ │ │ │ │ ├── liquidity-pools.mdx │ │ │ │ │ │ ├── offers.mdx │ │ │ │ │ │ ├── restored-key.mdx │ │ │ │ │ │ ├── trustlines.mdx │ │ │ │ │ │ └── ttl.mdx │ │ │ │ │ ├── claimable-balances.mdx │ │ │ │ │ ├── contract-code.mdx │ │ │ │ │ ├── contract-data.mdx │ │ │ │ │ ├── enriched-history-operations.mdx │ │ │ │ │ ├── gold │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── asset-balances-daily-agg.mdx │ │ │ │ │ │ ├── fee-stats-agg.mdx │ │ │ │ │ │ ├── trade-agg.mdx │ │ │ │ │ │ └── tvl-agg.mdx │ │ │ │ │ ├── history-assets.mdx │ │ │ │ │ ├── history-contract-events.mdx │ │ │ │ │ ├── history-effects.mdx │ │ │ │ │ ├── history-ledgers.mdx │ │ │ │ │ ├── history-operations.mdx │ │ │ │ │ ├── history-trades.mdx │ │ │ │ │ ├── history-transactions.mdx │ │ │ │ │ ├── liquidity-pools.mdx │ │ │ │ │ ├── offers.mdx │ │ │ │ │ ├── silver │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── account-signers-current.mdx │ │ │ │ │ │ ├── accounts-current.mdx │ │ │ │ │ │ ├── accounts-snapshot.mdx │ │ │ │ │ │ ├── claimable-balances-current.mdx │ │ │ │ │ │ ├── config-settings-current.mdx │ │ │ │ │ │ ├── contract-code-current.mdx │ │ │ │ │ │ ├── contract-data-current.mdx │ │ │ │ │ │ ├── contract-data-snapshot.mdx │ │ │ │ │ │ ├── enriched-history-operations-soroban.mdx │ │ │ │ │ │ ├── enriched-history-operations.mdx │ │ │ │ │ │ ├── evicted-keys-snapshot.mdx │ │ │ │ │ │ ├── liquidity-pools-current.mdx │ │ │ │ │ │ ├── liquidity-pools-snapshot.mdx │ │ │ │ │ │ ├── offers-current.mdx │ │ │ │ │ │ ├── token-transfers-raw.mdx │ │ │ │ │ │ ├── trustlines-current.mdx │ │ │ │ │ │ ├── trustlines-snapshot.mdx │ │ │ │ │ │ └── ttl-current.mdx │ │ │ │ │ ├── trustlines.mdx │ │ │ │ │ └── ttl.mdx │ │ │ │ ├── data-lineage.mdx │ │ │ │ └── data-model-diagram.mdx │ │ │ │ └── developer-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── backfill │ │ │ │ ├── JS-UDF.mdx │ │ │ │ ├── README.mdx │ │ │ │ └── data-import.mdx │ │ │ │ ├── connecting-to-bigquery │ │ │ │ └── README.mdx │ │ │ │ ├── data-curation │ │ │ │ ├── README.mdx │ │ │ │ ├── architecture.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── overview.mdx │ │ │ │ ├── scheduling-and-orchestration │ │ │ │ ├── README.mdx │ │ │ │ ├── architecture.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── overview.mdx │ │ │ │ ├── source-system-ingestion │ │ │ │ ├── README.mdx │ │ │ │ ├── architecture.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── overview.mdx │ │ │ │ └── visualization │ │ │ │ ├── README.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── overview.mdx │ │ ├── apis │ │ │ ├── README.mdx │ │ │ ├── api-providers.mdx │ │ │ ├── horizon │ │ │ │ ├── README.mdx │ │ │ │ ├── admin-guide │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── configuring.mdx │ │ │ │ │ ├── ingestion-filtering.mdx │ │ │ │ │ ├── ingestion.mdx │ │ │ │ │ ├── installing.mdx │ │ │ │ │ ├── monitoring.mdx │ │ │ │ │ ├── overview.mdx │ │ │ │ │ ├── prerequisites.mdx │ │ │ │ │ ├── running.mdx │ │ │ │ │ ├── scaling.mdx │ │ │ │ │ └── upgrading.mdx │ │ │ │ ├── api-reference │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── aggregations │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── fee-stats │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── order-books │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── paths │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ └── trade-aggregations │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── cb-retrieve-related-operations.api.mdx │ │ │ │ │ ├── cb-retrieve-related-transactions.api.mdx │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── error-handling.mdx │ │ │ │ │ │ ├── http-status-codes │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── horizon-specific │ │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ │ ├── before-history.mdx │ │ │ │ │ │ │ │ ├── stale-history.mdx │ │ │ │ │ │ │ │ ├── timeout.mdx │ │ │ │ │ │ │ │ ├── transaction-failed.mdx │ │ │ │ │ │ │ │ └── transaction-malformed.mdx │ │ │ │ │ │ │ └── standard.mdx │ │ │ │ │ │ ├── response.mdx │ │ │ │ │ │ └── result-codes │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── operation-specific │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── account-merge.mdx │ │ │ │ │ │ │ ├── allow-trust.mdx │ │ │ │ │ │ │ ├── bump-sequence.mdx │ │ │ │ │ │ │ ├── change-trust.mdx │ │ │ │ │ │ │ ├── create-account.mdx │ │ │ │ │ │ │ ├── create-passive-sell-offer.mdx │ │ │ │ │ │ │ ├── manage-buy-offer.mdx │ │ │ │ │ │ │ ├── manage-data.mdx │ │ │ │ │ │ │ ├── manage-sell-offer.mdx │ │ │ │ │ │ │ ├── path-payment-strict-receive.mdx │ │ │ │ │ │ │ ├── path-payment-strict-send.mdx │ │ │ │ │ │ │ ├── payment.mdx │ │ │ │ │ │ │ └── set-options.mdx │ │ │ │ │ │ │ ├── operations.mdx │ │ │ │ │ │ │ └── transactions.mdx │ │ │ │ │ ├── get-all-offers.api.mdx │ │ │ │ │ ├── get-all-trades.api.mdx │ │ │ │ │ ├── get-data-by-account-id.api.mdx │ │ │ │ │ ├── get-effects-by-account-id.api.mdx │ │ │ │ │ ├── get-offer-by-offer-id.api.mdx │ │ │ │ │ ├── get-offers-by-account-id.api.mdx │ │ │ │ │ ├── get-operations-by-account-id.api.mdx │ │ │ │ │ ├── get-payments-by-account-id.api.mdx │ │ │ │ │ ├── get-trades-by-account-id.api.mdx │ │ │ │ │ ├── get-trades-by-offer-id.api.mdx │ │ │ │ │ ├── get-transactions-by-account-id.api.mdx │ │ │ │ │ ├── list-all-accounts.api.mdx │ │ │ │ │ ├── list-all-assets.api.mdx │ │ │ │ │ ├── list-all-claimable-balances.api.mdx │ │ │ │ │ ├── list-all-effects.api.mdx │ │ │ │ │ ├── list-all-ledgers.api.mdx │ │ │ │ │ ├── list-all-operations.api.mdx │ │ │ │ │ ├── list-all-payments.api.mdx │ │ │ │ │ ├── list-all-transactions.api.mdx │ │ │ │ │ ├── list-liquidity-pools.api.mdx │ │ │ │ │ ├── list-strict-receive-payment-paths.api.mdx │ │ │ │ │ ├── list-strict-send-payment-paths.api.mdx │ │ │ │ │ ├── list-trade-aggregations.api.mdx │ │ │ │ │ ├── lp-retrieve-related-operations.api.mdx │ │ │ │ │ ├── lp-retrieve-related-transactions.api.mdx │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── _category_.json │ │ │ │ │ │ ├── accounts │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── claimablebalances │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── effects │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── types.mdx │ │ │ │ │ │ ├── ledgers │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── liquiditypools │ │ │ │ │ │ │ └── README.mdx │ │ │ │ │ │ ├── offers │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object │ │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ │ ├── account-merge.mdx │ │ │ │ │ │ │ │ ├── allow-trust.mdx │ │ │ │ │ │ │ │ ├── begin-sponsoring-future-reserves.mdx │ │ │ │ │ │ │ │ ├── bump-sequence.mdx │ │ │ │ │ │ │ │ ├── buy-offer.mdx │ │ │ │ │ │ │ │ ├── change-trust.mdx │ │ │ │ │ │ │ │ ├── claim-claimable-balance.mdx │ │ │ │ │ │ │ │ ├── create-account.mdx │ │ │ │ │ │ │ │ ├── create-claimable-balance.mdx │ │ │ │ │ │ │ │ ├── end-sponsoring-future-reserves.mdx │ │ │ │ │ │ │ │ ├── extend-footprint-ttl.mdx │ │ │ │ │ │ │ │ ├── invoke-host-function.mdx │ │ │ │ │ │ │ │ ├── liquidity-pool-deposit.mdx │ │ │ │ │ │ │ │ ├── liquidity-pool-withdraw.mdx │ │ │ │ │ │ │ │ ├── manage-data.mdx │ │ │ │ │ │ │ │ ├── passive-sell-offer.mdx │ │ │ │ │ │ │ │ ├── path-payment-strict-receive.mdx │ │ │ │ │ │ │ │ ├── path-payment-strict-send.mdx │ │ │ │ │ │ │ │ ├── restore-footprint.mdx │ │ │ │ │ │ │ │ ├── revoke-sponsorship.mdx │ │ │ │ │ │ │ │ ├── sell-offer.mdx │ │ │ │ │ │ │ │ └── set-options.mdx │ │ │ │ │ │ ├── payments │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ ├── trades │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ │ └── transactions │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── object.mdx │ │ │ │ │ ├── retrieve-a-claimable-balance.api.mdx │ │ │ │ │ ├── retrieve-a-ledger.api.mdx │ │ │ │ │ ├── retrieve-a-ledgers-effects.api.mdx │ │ │ │ │ ├── retrieve-a-ledgers-operations.api.mdx │ │ │ │ │ ├── retrieve-a-ledgers-payments.api.mdx │ │ │ │ │ ├── retrieve-a-ledgers-transactions.api.mdx │ │ │ │ │ ├── retrieve-a-liquidity-pool.api.mdx │ │ │ │ │ ├── retrieve-a-transaction.api.mdx │ │ │ │ │ ├── retrieve-a-transactions-effects.api.mdx │ │ │ │ │ ├── retrieve-a-transactions-operations.api.mdx │ │ │ │ │ ├── retrieve-a-transactions-payments.api.mdx │ │ │ │ │ ├── retrieve-an-account.api.mdx │ │ │ │ │ ├── retrieve-an-operation.api.mdx │ │ │ │ │ ├── retrieve-an-operations-effects.api.mdx │ │ │ │ │ ├── retrieve-an-order-book.api.mdx │ │ │ │ │ ├── retrieve-fee-stats.api.mdx │ │ │ │ │ ├── retrieve-related-effects.api.mdx │ │ │ │ │ ├── retrieve-related-trades.api.mdx │ │ │ │ │ ├── sidebar.ts │ │ │ │ │ ├── structure │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── consistency.mdx │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ └── page-arguments.mdx │ │ │ │ │ │ ├── rate-limiting.mdx │ │ │ │ │ │ ├── response-format.mdx │ │ │ │ │ │ ├── streaming.mdx │ │ │ │ │ │ └── xdr.mdx │ │ │ │ │ ├── submit-a-transaction.api.mdx │ │ │ │ │ └── submit-async-transaction.api.mdx │ │ │ │ └── providers.mdx │ │ │ ├── migrate-from-horizon-to-rpc.mdx │ │ │ ├── migrate-from-horizon-to-rpc │ │ │ │ └── migrate-from-horizon-to-rpc.mdx │ │ │ └── rpc │ │ │ │ ├── README.mdx │ │ │ │ ├── admin-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── configuring.mdx │ │ │ │ ├── data-lake-integration.mdx │ │ │ │ ├── development.mdx │ │ │ │ ├── installing.mdx │ │ │ │ ├── monitoring.mdx │ │ │ │ ├── prerequisites.mdx │ │ │ │ └── running.mdx │ │ │ │ ├── api-reference │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── methods │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── getEvents.mdx │ │ │ │ │ ├── getFeeStats.mdx │ │ │ │ │ ├── getHealth.mdx │ │ │ │ │ ├── getLatestLedger.mdx │ │ │ │ │ ├── getLedgerEntries.mdx │ │ │ │ │ ├── getLedgers.mdx │ │ │ │ │ ├── getNetwork.mdx │ │ │ │ │ ├── getTransaction.mdx │ │ │ │ │ ├── getTransactions.mdx │ │ │ │ │ ├── getVersionInfo.mdx │ │ │ │ │ ├── sendTransaction.mdx │ │ │ │ │ └── simulateTransaction.mdx │ │ │ │ └── structure │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── data-format.mdx │ │ │ │ │ ├── json-rpc.mdx │ │ │ │ │ └── pagination.mdx │ │ │ │ └── providers.mdx │ │ ├── indexers │ │ │ ├── README.mdx │ │ │ ├── build-your-own │ │ │ │ ├── README.mdx │ │ │ │ ├── galexie │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── admin_guide │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── _category_.json │ │ │ │ │ │ ├── configuring.mdx │ │ │ │ │ │ ├── full-history-exporting.mdx │ │ │ │ │ │ ├── installing.mdx │ │ │ │ │ │ ├── monitoring.mdx │ │ │ │ │ │ ├── prerequisites.mdx │ │ │ │ │ │ ├── running.mdx │ │ │ │ │ │ └── setup.mdx │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── gcs-export.mdx │ │ │ │ │ └── providers.mdx │ │ │ │ ├── ingest-sdk │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── developer_guide │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── architecture.mdx │ │ │ │ │ │ ├── ledgerbackends │ │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ │ ├── bufferedstoragebackend.mdx │ │ │ │ │ │ │ ├── captivecore.mdx │ │ │ │ │ │ │ └── rpcledgerbackend.mdx │ │ │ │ │ │ ├── ledgerreaders.mdx │ │ │ │ │ │ └── prerequisites.mdx │ │ │ │ │ └── examples │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── changes.mdx │ │ │ │ │ │ ├── ledger_entry_statistics.mdx │ │ │ │ │ │ └── transaction_statistics.mdx │ │ │ │ ├── processors │ │ │ │ │ ├── README.mdx │ │ │ │ │ └── token-transfer-processor │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ └── examples │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── event_stats.mdx │ │ │ │ │ │ └── filter_events.mdx │ │ │ │ └── tutorials │ │ │ │ │ └── README.mdx │ │ │ └── indexer-providers │ │ │ │ └── indexer-providers.mdx │ │ └── oracles │ │ │ ├── README.mdx │ │ │ └── oracle-providers.mdx │ │ ├── learn │ │ ├── encyclopedia │ │ │ ├── README.mdx │ │ │ ├── network-configuration │ │ │ │ ├── README.mdx │ │ │ │ ├── federation.mdx │ │ │ │ ├── inflation.mdx │ │ │ │ ├── ledger-headers.mdx │ │ │ │ └── network-passphrases.mdx │ │ │ ├── sdex │ │ │ │ ├── README.mdx │ │ │ │ └── liquidity-on-stellar-sdex-liquidity-pools.mdx │ │ │ └── transactions-specialized │ │ │ │ ├── README.mdx │ │ │ │ ├── channel-accounts.mdx │ │ │ │ ├── claimable-balances.mdx │ │ │ │ ├── clawbacks.mdx │ │ │ │ ├── fee-bump-transactions.mdx │ │ │ │ ├── memos.mdx │ │ │ │ ├── path-payments.mdx │ │ │ │ ├── pooled-accounts-muxed-accounts-memos.mdx │ │ │ │ └── sponsored-reserves.mdx │ │ ├── fundamentals │ │ │ ├── README.mdx │ │ │ ├── anchors.mdx │ │ │ ├── contract-development │ │ │ │ ├── README.mdx │ │ │ │ ├── authorization.mdx │ │ │ │ ├── contract-interactions │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── cross-contract.mdx │ │ │ │ │ ├── overview.mdx │ │ │ │ │ ├── stellar-transaction.mdx │ │ │ │ │ ├── tests.mdx │ │ │ │ │ └── transaction-simulation.mdx │ │ │ │ ├── contract-lifecycle.mdx │ │ │ │ ├── environment-concepts.mdx │ │ │ │ ├── errors-and-debugging │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── debugging-errors.mdx │ │ │ │ │ ├── debugging.mdx │ │ │ │ │ └── errors.mdx │ │ │ │ ├── events.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── rust-dialect.mdx │ │ │ │ ├── storage │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── persisting-data.mdx │ │ │ │ │ └── state-archival.mdx │ │ │ │ ├── transaction-lifecycle.mdx │ │ │ │ └── types │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── built-in-types.mdx │ │ │ │ │ ├── custom-types.mdx │ │ │ │ │ └── fully-typed-contracts.mdx │ │ │ ├── data-format │ │ │ │ ├── README.mdx │ │ │ │ ├── xdr-json.mdx │ │ │ │ └── xdr.mdx │ │ │ ├── fees-resource-limits-metering.mdx │ │ │ ├── liquidity-on-stellar-sdex-liquidity-pools.mdx │ │ │ ├── lumens.mdx │ │ │ ├── networks.mdx │ │ │ ├── stellar-consensus-protocol.mdx │ │ │ ├── stellar-data-structures │ │ │ │ ├── README.mdx │ │ │ │ ├── accounts.mdx │ │ │ │ ├── assets.mdx │ │ │ │ ├── contracts.mdx │ │ │ │ ├── events.mdx │ │ │ │ └── ledgers.mdx │ │ │ ├── stellar-ecosystem-proposals.mdx │ │ │ ├── stellar-stack.mdx │ │ │ └── transactions │ │ │ │ ├── README.mdx │ │ │ │ ├── list-of-operations.mdx │ │ │ │ ├── operations-and-transactions.mdx │ │ │ │ ├── signatures-multisig.mdx │ │ │ │ └── transaction-lifecycle.mdx │ │ ├── glossary.mdx │ │ ├── interactive │ │ │ ├── README.mdx │ │ │ ├── dapp-world.mdx │ │ │ ├── fca00c.mdx │ │ │ └── quest.mdx │ │ └── migrate │ │ │ ├── README.mdx │ │ │ ├── cosmos.mdx │ │ │ ├── evm │ │ │ ├── README.mdx │ │ │ ├── introduction-to-solidity-and-rust.mdx │ │ │ ├── smart-contract-deployment.mdx │ │ │ ├── solidity-and-rust-advanced-concepts.mdx │ │ │ ├── solidity-and-rust-basics.mdx │ │ │ └── solidity-support-via-solang.mdx │ │ │ ├── near.mdx │ │ │ └── solana.mdx │ │ ├── networks │ │ ├── README.mdx │ │ ├── resource-limits-fees.mdx │ │ └── software-versions.mdx │ │ ├── platforms │ │ ├── README.mdx │ │ ├── anchor-platform │ │ │ ├── CONTRIBUTING.md │ │ │ ├── README.mdx │ │ │ ├── admin-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── architecture.mdx │ │ │ │ ├── assets-and-client-wallets.mdx │ │ │ │ ├── component │ │ │ │ │ ├── observer │ │ │ │ │ │ └── observer.mdx │ │ │ │ │ ├── rpc │ │ │ │ │ │ ├── error.mdx │ │ │ │ │ │ ├── request.mdx │ │ │ │ │ │ ├── response.mdx │ │ │ │ │ │ └── rpc.mdx │ │ │ │ │ └── security │ │ │ │ │ │ ├── api_key.mdx │ │ │ │ │ │ ├── jwt.mdx │ │ │ │ │ │ └── security.mdx │ │ │ │ ├── events │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── delivery.mdx │ │ │ │ │ ├── getting-started.mdx │ │ │ │ │ └── integration.mdx │ │ │ │ └── getting-started.mdx │ │ │ ├── api-reference │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── callbacks │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── del-customer.api.mdx │ │ │ │ │ ├── get-customer.api.mdx │ │ │ │ │ ├── get-rates.api.mdx │ │ │ │ │ ├── post-event.api.mdx │ │ │ │ │ └── put-customer.api.mdx │ │ │ │ └── platform │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── rpc │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── anchor-platform.openrpc.json │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── README.mdx │ │ │ │ │ │ ├── do_stellar_payment.mdx │ │ │ │ │ │ ├── do_stellar_refund.mdx │ │ │ │ │ │ ├── get_transaction.mdx │ │ │ │ │ │ ├── get_transactions.mdx │ │ │ │ │ │ ├── notify_amounts_updated.mdx │ │ │ │ │ │ ├── notify_customer_info_updated.mdx │ │ │ │ │ │ ├── notify_interactive_flow_completed.mdx │ │ │ │ │ │ ├── notify_offchain_funds_available.mdx │ │ │ │ │ │ ├── notify_offchain_funds_pending.mdx │ │ │ │ │ │ ├── notify_offchain_funds_received.mdx │ │ │ │ │ │ ├── notify_offchain_funds_sent.mdx │ │ │ │ │ │ ├── notify_onchain_funds_received.mdx │ │ │ │ │ │ ├── notify_onchain_funds_sent.mdx │ │ │ │ │ │ ├── notify_refund_pending.mdx │ │ │ │ │ │ ├── notify_refund_sent.mdx │ │ │ │ │ │ ├── notify_transaction_error.mdx │ │ │ │ │ │ ├── notify_transaction_expired.mdx │ │ │ │ │ │ ├── notify_transaction_on_hold.mdx │ │ │ │ │ │ ├── notify_transaction_recovery.mdx │ │ │ │ │ │ ├── notify_trust_set.mdx │ │ │ │ │ │ ├── request_offchain_funds.mdx │ │ │ │ │ │ ├── request_onchain_funds.mdx │ │ │ │ │ │ └── request_trust.mdx │ │ │ │ │ └── overview.mdx │ │ │ │ │ └── transactions │ │ │ │ │ ├── README.mdx │ │ │ │ │ ├── get-transaction.api.mdx │ │ │ │ │ └── get-transactions.api.mdx │ │ │ └── sep-guide │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── sep1 │ │ │ │ └── README.mdx │ │ │ │ ├── sep10 │ │ │ │ └── README.mdx │ │ │ │ ├── sep24 │ │ │ │ ├── README.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── example.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ ├── integration.mdx │ │ │ │ └── setting-up-production-server.mdx │ │ │ │ ├── sep31 │ │ │ │ ├── README.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── integration.mdx │ │ │ │ ├── sep45 │ │ │ │ └── README.mdx │ │ │ │ └── sep6 │ │ │ │ ├── README.mdx │ │ │ │ ├── configuration.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── integration.mdx │ │ └── stellar-disbursement-platform │ │ │ ├── README.mdx │ │ │ ├── admin-guide │ │ │ ├── advanced-configration.mdx │ │ │ ├── cli-manual.mdx │ │ │ ├── configuring-sdp.mdx │ │ │ ├── deploy-the-sdp.mdx │ │ │ ├── design-and-architecture.mdx │ │ │ ├── getting-started.mdx │ │ │ ├── making-your-wallet-sdp-ready.mdx │ │ │ ├── monitoring.mdx │ │ │ ├── overview.mdx │ │ │ ├── security.mdx │ │ │ └── user-interface │ │ │ │ ├── README.mdx │ │ │ │ ├── analytics.mdx │ │ │ │ ├── circle-configuration.mdx │ │ │ │ ├── dashboard-home.mdx │ │ │ │ ├── disbursements.mdx │ │ │ │ ├── payments.mdx │ │ │ │ ├── receivers.mdx │ │ │ │ └── wallets.mdx │ │ │ └── api-reference │ │ │ ├── _category_.json │ │ │ ├── admin.tag.mdx │ │ │ ├── api-keys.tag.mdx │ │ │ ├── authenticate-mfa.api.mdx │ │ │ ├── authentication.tag.mdx │ │ │ ├── balances.tag.mdx │ │ │ ├── bridge-integration.tag.mdx │ │ │ ├── create-api-key.api.mdx │ │ │ ├── create-asset.api.mdx │ │ │ ├── create-direct-payment.api.mdx │ │ │ ├── create-disbursement.api.mdx │ │ │ ├── create-receiver.api.mdx │ │ │ ├── create-tenant.api.mdx │ │ │ ├── create-user.api.mdx │ │ │ ├── create-wallet.api.mdx │ │ │ ├── default-tenant.api.mdx │ │ │ ├── delete-a-disbursement.api.mdx │ │ │ ├── delete-api-key.api.mdx │ │ │ ├── delete-asset.api.mdx │ │ │ ├── disbursements.tag.mdx │ │ │ ├── download-disbursement-instructions.api.mdx │ │ │ ├── export-disbursements.api.mdx │ │ │ ├── export-payments-csv.api.mdx │ │ │ ├── export-receivers-csv.api.mdx │ │ │ ├── forgot-password.api.mdx │ │ │ ├── get-all-assets.api.mdx │ │ │ ├── get-all-roles.api.mdx │ │ │ ├── get-all-tenants.api.mdx │ │ │ ├── get-all-users.api.mdx │ │ │ ├── get-all-wallets.api.mdx │ │ │ ├── get-api-key.api.mdx │ │ │ ├── get-bridge-integration.api.mdx │ │ │ ├── get-organization-circle-balances.api.mdx │ │ │ ├── get-organization-info.api.mdx │ │ │ ├── get-organization-logo.api.mdx │ │ │ ├── get-profile.api.mdx │ │ │ ├── list-all-disbursement-receivers.api.mdx │ │ │ ├── list-all-disbursements.api.mdx │ │ │ ├── list-all-payments.api.mdx │ │ │ ├── list-all-receivers.api.mdx │ │ │ ├── list-api-keys.api.mdx │ │ │ ├── log-in.api.mdx │ │ │ ├── organization.tag.mdx │ │ │ ├── patch-organization-circle.api.mdx │ │ │ ├── payments.tag.mdx │ │ │ ├── profile.tag.mdx │ │ │ ├── provide-signed-challenge-transaction.api.mdx │ │ │ ├── receivers.tag.mdx │ │ │ ├── refresh-token.api.mdx │ │ │ ├── registration.tag.mdx │ │ │ ├── request-challenge-transaction.api.mdx │ │ │ ├── request-registration-url.api.mdx │ │ │ ├── reset-password.api.mdx │ │ │ ├── retrieve-a-disbursement.api.mdx │ │ │ ├── retrieve-a-payment.api.mdx │ │ │ ├── retrieve-a-receiver.api.mdx │ │ │ ├── retrieve-a-tenant.api.mdx │ │ │ ├── retrieve-all-statistics.api.mdx │ │ │ ├── retrieve-disbursement-statistics.api.mdx │ │ │ ├── retrieve-stellar-info-file.api.mdx │ │ │ ├── send-one-time-passcode.api.mdx │ │ │ ├── sidebar.ts │ │ │ ├── soft-delete-a-tenant.api.mdx │ │ │ ├── start-wallet-registration.api.mdx │ │ │ ├── statistics.tag.mdx │ │ │ ├── update-a-disbursement-status.api.mdx │ │ │ ├── update-a-tenant.api.mdx │ │ │ ├── update-api-key.api.mdx │ │ │ ├── update-bridge-integration.api.mdx │ │ │ ├── update-organization-profile.api.mdx │ │ │ ├── update-receiver.api.mdx │ │ │ ├── update-user-activation-status.api.mdx │ │ │ ├── update-user-profile.api.mdx │ │ │ ├── update-user-role.api.mdx │ │ │ ├── update-wallet.api.mdx │ │ │ ├── upload-disbursement-instructions.api.mdx │ │ │ ├── users.tag.mdx │ │ │ └── verify-receiver-registration.api.mdx │ │ ├── tokens │ │ ├── README.mdx │ │ ├── anatomy-of-an-asset.mdx │ │ ├── control-asset-access.mdx │ │ ├── how-to-issue-an-asset.mdx │ │ ├── publishing-asset-info.mdx │ │ ├── quickstart.mdx │ │ ├── stellar-asset-contract.mdx │ │ └── token-interface.mdx │ │ ├── tools │ │ ├── README.mdx │ │ ├── cli │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── cookbook │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── asset-management.mdx │ │ │ │ ├── contract-build-meta.mdx │ │ │ │ ├── contract-lifecycle.mdx │ │ │ │ ├── deploy-contract.mdx │ │ │ │ ├── deploy-stellar-asset-contract.mdx │ │ │ │ ├── extend-contract-instance.mdx │ │ │ │ ├── extend-contract-storage.mdx │ │ │ │ ├── extend-contract-wasm.mdx │ │ │ │ ├── install-deploy.mdx │ │ │ │ ├── install-wasm.mdx │ │ │ │ ├── payments-and-assets.mdx │ │ │ │ ├── restore-contract-instance.mdx │ │ │ │ ├── restore-contract-storage.mdx │ │ │ │ ├── stellar-keys.mdx │ │ │ │ ├── tx-new-create-claimable-balance.mdx │ │ │ │ ├── tx-new.mdx │ │ │ │ ├── tx-op-add.mdx │ │ │ │ ├── tx-sign.mdx │ │ │ │ ├── upload-deploy.mdx │ │ │ │ └── upload-wasm.mdx │ │ │ ├── install-cli.mdx │ │ │ ├── plugins-list.mdx │ │ │ ├── plugins.mdx │ │ │ └── stellar-cli.mdx │ │ ├── developer-tools │ │ │ ├── IDEs.mdx │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── ai-bot.mdx │ │ │ ├── analytics-platforms.mdx │ │ │ ├── anchor-tools.mdx │ │ │ ├── asset-tools.mdx │ │ │ ├── block-explorers.mdx │ │ │ ├── jupyter-notebooks.mdx │ │ │ ├── network-insights.mdx │ │ │ ├── network-status.mdx │ │ │ ├── node-operator-tools.mdx │ │ │ ├── openzeppelin-contracts.mdx │ │ │ ├── openzepplin-contracts.mdx │ │ │ ├── scaffold-stellar.mdx │ │ │ ├── security-tools.mdx │ │ │ └── wallets.mdx │ │ ├── infra-tools │ │ │ ├── README.mdx │ │ │ └── cross-chain.mdx │ │ ├── lab │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── account.mdx │ │ │ ├── api-explorer │ │ │ │ ├── README.mdx │ │ │ │ ├── horizon-endpoint.mdx │ │ │ │ └── rpc-methods.mdx │ │ │ ├── quickstart-with-lab.mdx │ │ │ ├── saved │ │ │ │ ├── README.mdx │ │ │ │ ├── keypairs.mdx │ │ │ │ ├── requests.mdx │ │ │ │ └── transactions.mdx │ │ │ ├── smart-contracts │ │ │ │ ├── README.mdx │ │ │ │ ├── contract-explorer.mdx │ │ │ │ ├── smart-contract-list.mdx │ │ │ │ └── upload-deploy-contract.mdx │ │ │ ├── transactions.mdx │ │ │ └── view-xdr │ │ │ │ ├── README.mdx │ │ │ │ ├── diff-xdr.mdx │ │ │ │ ├── json-to-xdr.mdx │ │ │ │ └── xdr-to-json.mdx │ │ ├── openzeppelin-contracts.mdx │ │ ├── quickstart │ │ │ ├── README.mdx │ │ │ ├── advanced-usage │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── container.mdx │ │ │ │ ├── operation-modes.mdx │ │ │ │ ├── ports.mdx │ │ │ │ ├── run-command-examples.mdx │ │ │ │ └── service-options.mdx │ │ │ ├── cloud │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── digitalocean.mdx │ │ │ │ └── fly.io.mdx │ │ │ ├── debugging │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── diagnostic-events.mdx │ │ │ │ └── viewing-logs.mdx │ │ │ ├── explorer.mdx │ │ │ ├── faucet.mdx │ │ │ ├── getting-started │ │ │ │ ├── README.mdx │ │ │ │ ├── _category_.json │ │ │ │ ├── connect-stellar-lab.mdx │ │ │ │ └── deploy-smart-contract.mdx │ │ │ └── network-modes.mdx │ │ ├── ramps │ │ │ ├── README.mdx │ │ │ └── moneygram.mdx │ │ ├── scaffold-stellar.mdx │ │ └── sdks │ │ │ ├── README.mdx │ │ │ ├── _category_.json │ │ │ ├── build-your-own.mdx │ │ │ ├── client-sdks.mdx │ │ │ └── contract-sdks.mdx │ │ └── validators │ │ ├── README.mdx │ │ ├── admin-guide │ │ ├── README.mdx │ │ ├── _category_.json │ │ ├── advanced.mdx │ │ ├── commands.mdx │ │ ├── configuring.mdx │ │ ├── environment-preparation.mdx │ │ ├── installation.mdx │ │ ├── logging.mdx │ │ ├── maintenance.mdx │ │ ├── monitoring.mdx │ │ ├── network-upgrades.mdx │ │ ├── prerequisites.mdx │ │ ├── publishing-history-archives.mdx │ │ ├── running-node.mdx │ │ └── soroban-settings.mdx │ │ └── tier-1-orgs.mdx │ ├── docusaurus-plugin-content-pages │ ├── index.mdx │ └── platforms.mdx │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── meeting-notes ├── 2024-01-18.mdx ├── 2024-01-26.mdx ├── 2024-02-01.mdx ├── 2024-02-09.mdx ├── 2024-02-15.mdx ├── 2024-02-22.mdx ├── 2024-02-29.mdx ├── 2024-03-07.mdx ├── 2024-03-14.mdx ├── 2024-03-21.mdx ├── 2024-03-28.mdx ├── 2024-04-04.mdx ├── 2024-04-11.mdx ├── 2024-04-18.mdx ├── 2024-04-25.mdx ├── 2024-05-02.mdx ├── 2024-05-09.mdx ├── 2024-06-13.mdx ├── 2024-06-20.mdx ├── 2024-06-27.mdx ├── 2024-07-11.mdx ├── 2024-07-18.mdx ├── 2024-07-25.mdx ├── 2024-08-01.mdx ├── 2024-08-08.mdx ├── 2024-08-15.mdx ├── 2024-08-22.mdx ├── 2024-08-29.mdx ├── 2024-09-05.mdx ├── 2024-09-12.mdx ├── 2024-09-19.mdx ├── 2024-09-26.mdx ├── 2024-10-24.mdx ├── 2024-11-14.mdx ├── 2024-12-05.mdx ├── 2024-12-12.mdx ├── 2024-12-19.mdx ├── 2025-01-16.mdx ├── 2025-01-23.mdx ├── 2025-01-30.mdx ├── 2025-02-06.mdx ├── 2025-02-13.mdx ├── 2025-02-20.mdx ├── 2025-02-27.mdx ├── 2025-03-06.mdx ├── 2025-03-27.mdx ├── 2025-04-03.mdx ├── 2025-04-10.mdx ├── 2025-04-17.mdx ├── 2025-05-01.mdx ├── 2025-05-22.mdx ├── 2025-07-10.mdx ├── 2025-07-17.mdx ├── 2025-07-24.mdx ├── 2025-08-07.mdx ├── 2025-09-25.mdx ├── 2025-10-02.mdx ├── 2025-10-09.mdx ├── 2025-10-16.mdx ├── 2025-10-23.mdx ├── 2025-10-30.mdx ├── 2025-11-06.mdx └── authors.yml ├── nginx ├── includes │ └── redirects.conf └── nginx.conf ├── openapi ├── anchor-platform │ ├── bundled-callbacks.yaml │ ├── bundled-platform.yaml │ ├── examples.yaml │ ├── main-callbacks.yaml │ ├── main-platform.yaml │ └── schemas.yaml ├── horizon │ ├── README.md │ ├── bundled.yml │ ├── components │ │ ├── endpoints │ │ │ ├── accounts.yml │ │ │ ├── assets.yml │ │ │ ├── claimableBalances.yml │ │ │ ├── effects.yml │ │ │ ├── feeStats.yml │ │ │ ├── ledgers.yml │ │ │ ├── liquidityPools.yml │ │ │ ├── offers.yml │ │ │ ├── operations.yml │ │ │ ├── orderBooks.yml │ │ │ ├── paths.yml │ │ │ ├── payments.yml │ │ │ ├── tradeAggregations.yml │ │ │ ├── trades.yml │ │ │ └── transactions.yml │ │ ├── examples │ │ │ └── responses │ │ │ │ ├── Accounts │ │ │ │ ├── ListAllAccounts.yml │ │ │ │ ├── RetrieveAnAccount.yml │ │ │ │ ├── RetrieveAnAccountsData.yml │ │ │ │ ├── RetrieveAnAccountsEffects.yml │ │ │ │ ├── RetrieveAnAccountsOffers.yml │ │ │ │ ├── RetrieveAnAccountsOperations.yml │ │ │ │ ├── RetrieveAnAccountsPayments.yml │ │ │ │ ├── RetrieveAnAccountsTrades.yml │ │ │ │ └── RetrieveAnAccountsTransactions.yml │ │ │ │ ├── Assets │ │ │ │ └── ListAllAssets.yml │ │ │ │ ├── ClaimableBalances │ │ │ │ ├── CBRetrieveRelatedOperations.yml │ │ │ │ ├── CBRetrieveRelatedTransactions.yml │ │ │ │ ├── ListAllClaimableBalances.yml │ │ │ │ └── RetrieveAClaimableBalance.yml │ │ │ │ ├── Effects │ │ │ │ └── ListAllEffects.yml │ │ │ │ ├── FeeStats │ │ │ │ └── RetrieveFeeStats.yml │ │ │ │ ├── Ledgers │ │ │ │ ├── ListAllLedgers.yml │ │ │ │ ├── RetrieveALedger.yml │ │ │ │ ├── RetrieveALedgersEffects.yml │ │ │ │ ├── RetrieveALedgersOperations.yml │ │ │ │ ├── RetrieveALedgersPayments.yml │ │ │ │ └── RetrieveALedgersTransactions.yml │ │ │ │ ├── LiqudityPools │ │ │ │ ├── LPRetrieveRelatedOperations.yml │ │ │ │ ├── LPRetrieveRelatedTransactions.yml │ │ │ │ ├── ListLiquidityPools.yml │ │ │ │ ├── RetrieveALiquidityPool.yml │ │ │ │ ├── RetrieveRelatedEffects.yml │ │ │ │ └── RetrieveRelatedTrades.yml │ │ │ │ ├── Offers │ │ │ │ ├── GetAllOffers.yml │ │ │ │ ├── GetOfferByOfferId.yml │ │ │ │ └── GetTradesByOfferId.yml │ │ │ │ ├── Operations │ │ │ │ ├── ListAllOperations.yml │ │ │ │ ├── ListAllPayments.yml │ │ │ │ ├── RetrieveAnOperation.yml │ │ │ │ └── RetrieveAnOperationsEffects.yml │ │ │ │ ├── OrderBooks │ │ │ │ └── RetrieveAnOrderBook.yml │ │ │ │ ├── Paths │ │ │ │ ├── ListStrictReceivePaymentPaths.yml │ │ │ │ └── ListStrictSendPaymentPaths.yml │ │ │ │ ├── TradeAggregations │ │ │ │ └── ListTradeAggregations.yml │ │ │ │ ├── Trades │ │ │ │ └── GetAllTrades.yml │ │ │ │ └── Transactions │ │ │ │ ├── ListAllTransactions.yml │ │ │ │ ├── RetrieveATransaction.yml │ │ │ │ ├── RetrieveATransactionsEffects.yml │ │ │ │ ├── RetrieveATransactionsOperations.yml │ │ │ │ ├── RetrieveATransactionsPayments.yml │ │ │ │ └── SubmitaTransaction.yml │ │ ├── instance_variables.yml │ │ ├── parameters.yml │ │ └── schemas │ │ │ ├── accountMergeSchema.yml │ │ │ ├── accountSchema.yml │ │ │ ├── allowTrustSchema.yml │ │ │ ├── assetSchema.yml │ │ │ ├── asyncTransactionSubmissionSchema.yml │ │ │ ├── balanceSchema.yml │ │ │ ├── baseAssetSchema.yml │ │ │ ├── beginSponsoringFutureReservesSchema.yml │ │ │ ├── bumpSequenceSchema.yml │ │ │ ├── changeTrustSchema.yml │ │ │ ├── claimClaimableBalanceSchema.yml │ │ │ ├── claimableBalanceSchema.yml │ │ │ ├── createAccountSchema.yml │ │ │ ├── createClaimableBalanceSchema.yml │ │ │ ├── createPassiveSellOfferSchema.yml │ │ │ ├── effectsSchema.yml │ │ │ ├── endSponsoringFutureReservesSchema.yml │ │ │ ├── feeStatsSchema.yml │ │ │ ├── invokeHostFunctionSchema.yml │ │ │ ├── ledgerSchema.yml │ │ │ ├── linksSchema.yml │ │ │ ├── liquidityPool.yml │ │ │ ├── liquidityPoolDepositSchema.yml │ │ │ ├── liquidityPoolWithdrawSchema.yml │ │ │ ├── manageBuyOfferSchema.yml │ │ │ ├── manageDataSchema.yml │ │ │ ├── manageSellOfferSchema.yml │ │ │ ├── offerSchema.yml │ │ │ ├── operationSchema.yml │ │ │ ├── orderBook.yml │ │ │ ├── path.yml │ │ │ ├── pathPaymentStrictReceiveSchema.yml │ │ │ ├── pathPaymentStrictSendSchema.yml │ │ │ ├── paymentSchema.yml │ │ │ ├── revokeSponsorshipSchema.yml │ │ │ ├── setOptionsSchema.yml │ │ │ ├── tradeAggregationSchema.yml │ │ │ ├── tradeSchema.yml │ │ │ ├── transactionSchema.yml │ │ │ └── transactionTransactionSchema.yml │ └── main.yml └── stellar-disbursement-platform │ ├── bundled.yaml │ └── main.yaml ├── openrpc ├── README.md ├── scripts │ ├── build.mjs │ └── validate.mjs └── src │ ├── anchor-platform │ ├── contentDescriptors │ │ ├── account.json │ │ ├── amount.json │ │ ├── customer.json │ │ ├── datetime.json │ │ ├── fee.json │ │ ├── instructions.json │ │ ├── memo.json │ │ ├── message.json │ │ ├── query.json │ │ ├── refund.json │ │ └── transaction_id.json │ ├── examples │ │ ├── account.json │ │ ├── amount.json │ │ ├── customer.json │ │ ├── datetime.json │ │ ├── fee.json │ │ ├── instructions.json │ │ ├── message.json │ │ ├── platform_transaction.json │ │ ├── query.json │ │ ├── refund.json │ │ ├── response.json │ │ └── transaction_id.json │ ├── methods │ │ ├── do_stellar_payment.json │ │ ├── do_stellar_refund.json │ │ ├── get_transaction.json │ │ ├── get_transactions.json │ │ ├── notify_amounts_updated.json │ │ ├── notify_customer_info_updated.json │ │ ├── notify_interactive_flow_completed.json │ │ ├── notify_offchain_funds_available.json │ │ ├── notify_offchain_funds_pending.json │ │ ├── notify_offchain_funds_received.json │ │ ├── notify_offchain_funds_sent.json │ │ ├── notify_onchain_funds_received.json │ │ ├── notify_onchain_funds_sent.json │ │ ├── notify_refund_pending.json │ │ ├── notify_refund_sent.json │ │ ├── notify_transaction_error.json │ │ ├── notify_transaction_expired.json │ │ ├── notify_transaction_on_hold.json │ │ ├── notify_transaction_recovery.json │ │ ├── notify_trust_set.json │ │ ├── request_offchain_funds.json │ │ ├── request_onchain_funds.json │ │ └── request_trust.json │ └── schemas │ │ ├── account.json │ │ ├── amount.json │ │ ├── customer.json │ │ ├── datetime.json │ │ ├── fee.json │ │ ├── memo.json │ │ ├── message.json │ │ ├── platform_transaction.json │ │ ├── query.json │ │ ├── quote.json │ │ ├── refund.json │ │ ├── response.json │ │ ├── stellar_transaction.json │ │ └── transaction.json │ └── stellar-rpc │ ├── contentDescriptors │ ├── EndLedger.json │ ├── EventFilters.json │ ├── Format.json │ ├── LedgerKeys.json │ ├── Pagination.json │ ├── ResourceConfig.json │ ├── StartLedger.json │ ├── Transaction.json │ └── TransactionHash.json │ ├── examplePairingObjects │ ├── EventsPairs.json │ ├── GetLedgersPairs.json │ ├── GetTransactionPairs.json │ ├── GetTransactionsPairs.json │ ├── LedgerEntriesPairs.json │ ├── NetworkPairs.json │ ├── SendTransactionPairs.json │ └── SimulationPairs.json │ ├── examples │ ├── Events.json │ ├── LedgerEntries.json │ ├── Ledgers.json │ ├── Simulations.json │ └── Transactions.json │ ├── methods │ ├── getEvents.json │ ├── getFeeStats.json │ ├── getHealth.json │ ├── getLatestLedger.json │ ├── getLedgerEntries.json │ ├── getLedgers.json │ ├── getNetwork.json │ ├── getTransaction.json │ ├── getTransactions.json │ ├── getVersionInfo.json │ ├── sendTransaction.json │ └── simulateTransaction.json │ └── schemas │ ├── ContractIds.json │ ├── Cursor.json │ ├── Event.json │ ├── EventFilters.json │ ├── FeeDistribution.json │ ├── Format.json │ ├── Hash.json │ ├── LedgerCloseTime.json │ ├── LedgerEntries.json │ ├── LedgerSequence.json │ ├── Ledgers.json │ ├── NetworkConfig.json │ ├── Pagination.json │ ├── ResourceConfig.json │ ├── Transaction.json │ ├── TransactionEvents.json │ └── Transactions.json ├── package.json ├── patches └── @stoplight+json-schema-viewer+4.16.4.patch ├── readme-imgs ├── alert.png └── code-example.png ├── redocly.yaml ├── routes.txt ├── scripts ├── copyIgnoredFiles.mjs ├── fix_cli_links.sh ├── fix_translations.sh ├── stellar_cli.mjs └── stellar_cli_plugins.mjs ├── src ├── components │ ├── Alert.js │ ├── AttributeTable │ │ ├── ListItem │ │ │ ├── index.js │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.js │ │ └── styles.module.scss │ ├── CodeExample.js │ ├── Endpoint.js │ ├── EndpointsTable.js │ ├── ExampleResponse │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Homepage │ │ ├── DeveloperResources │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── NavigatingTheDocs │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── PathfindingTable │ │ │ ├── PathfindingRow │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── WayfindingBoxes │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── LanguageButtons.tsx │ ├── LanguageSpecific.tsx │ ├── MethodTable │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── ReaderFeedback │ │ └── index.tsx │ ├── RedirectPage.js │ ├── RpcMethod.tsx │ ├── SepBadge.tsx │ ├── StellarCliGitHubVersion.tsx │ ├── StellarCliVersion.tsx │ ├── StellarCliWingetVersion.tsx │ ├── WalletCodeExample.tsx │ ├── WalletGuideWarn.tsx │ ├── WrapperApiReference.js │ └── YouTube.js ├── css │ └── custom.scss ├── helpers │ ├── getPlatform.ts │ ├── getShell.ts │ ├── getStellarCliLatestReleaseUrl.ts │ ├── index.js │ └── stellarCli.ts ├── pages │ └── index.mdx ├── plugins │ ├── analytics-module │ │ └── index.ts │ └── route-export │ │ └── index.ts ├── sidebar-generator.js ├── template.mustache └── theme │ ├── AnnouncementBar │ └── index.tsx │ ├── ApiExplorer │ └── index.tsx │ ├── DocCardList │ └── index.tsx │ ├── DocItem │ └── Footer │ │ └── index.tsx │ ├── DocSidebar │ └── index.tsx │ ├── MDXComponents.ts │ └── NotFound │ ├── Content │ ├── index.tsx │ └── styles.module.scss │ └── index.tsx ├── static ├── .nojekyll ├── assets │ ├── SDP │ │ ├── SDP1.png │ │ ├── SDP10.png │ │ ├── SDP11.png │ │ ├── SDP12.png │ │ ├── SDP13.png │ │ ├── SDP14.1.png │ │ ├── SDP14.2.png │ │ ├── SDP15.png │ │ ├── SDP16.png │ │ ├── SDP17.png │ │ ├── SDP18.png │ │ ├── SDP19.png │ │ ├── SDP2-2.png │ │ ├── SDP2.png │ │ ├── SDP20.png │ │ ├── SDP20x.png │ │ ├── SDP21.png │ │ ├── SDP22.png │ │ ├── SDP23.png │ │ ├── SDP24.png │ │ ├── SDP25.png │ │ ├── SDP26.png │ │ ├── SDP27.png │ │ ├── SDP28.png │ │ ├── SDP29.png │ │ ├── SDP3.png │ │ ├── SDP30.png │ │ ├── SDP31.png │ │ ├── SDP32.png │ │ ├── SDP33.png │ │ ├── SDP34.png │ │ ├── SDP35.png │ │ ├── SDP36.png │ │ ├── SDP37.png │ │ ├── SDP38.png │ │ ├── SDP39.png │ │ ├── SDP4.png │ │ ├── SDP40.png │ │ ├── SDP41.png │ │ ├── SDP42.png │ │ ├── SDP43.png │ │ ├── SDP44.png │ │ ├── SDP5.png │ │ ├── SDP6.png │ │ ├── SDP7.png │ │ ├── SDP8.png │ │ └── SDP9.png │ ├── ap │ │ ├── SEP24-state-diagram.png │ │ ├── anchor-platform-architecture-1.png │ │ ├── anchor-platform-architecture-2.png │ │ ├── anchor-platform-sep24-demo-wallet-widget.png │ │ ├── anchor-platform-sep24-demo-wallet.png │ │ ├── anchor-platform-sep31-demo-wallet-widget.png │ │ ├── sep24-deposit-flow-diagram.png │ │ ├── sep24-withdrawal-flow-diagram.png │ │ ├── sep31-transition-diagram.png │ │ ├── sep6-deposit-flow-diagram.png │ │ ├── sep6-withdrawal-flow-diagram.png │ │ ├── sequence_diagram_sep24_deposit_job.png │ │ ├── sequence_diagram_sep24_deposit_webhook.png │ │ ├── sequence_diagram_sep24_withdrawal_job.png │ │ ├── sequence_diagram_sep24_withdrawal_webhook.png │ │ ├── sequence_diagram_sep31_receive_job.png │ │ └── sequence_diagram_sep31_receive_webhook.png │ ├── api │ │ ├── indexer │ │ │ ├── goldsky1.png │ │ │ ├── goldsky2.png │ │ │ └── goldsky3.png │ │ └── rpc │ │ │ ├── getevents.jpg │ │ │ ├── getfeestats.png │ │ │ ├── gethealth.png │ │ │ ├── getlatestledger.png │ │ │ ├── getledgerentries-01.gif │ │ │ ├── getledgerentries-02.gif │ │ │ ├── getledgers.gif │ │ │ ├── getnetwork.png │ │ │ ├── gettransaction.gif │ │ │ ├── gettransactions.png │ │ │ ├── getversioninfo.png │ │ │ ├── sendtransaction.gif │ │ │ └── simulatetransaction.gif │ ├── basic-pay │ │ ├── add-assets.png │ │ ├── add-contact.png │ │ ├── auth_valid.png │ │ ├── authenticate.png │ │ ├── confirm-pincode.png │ │ ├── display-assets.png │ │ ├── fees.png │ │ ├── funded-account.png │ │ ├── kyc_accepted.png │ │ ├── path-payment.png │ │ ├── payment.png │ │ ├── public-and-private-keys.png │ │ ├── sep24_transfers.png │ │ ├── sep6_deposit_withdraw.png │ │ ├── sep6_kyc.png │ │ └── sep6_transfer_details.png │ ├── clawback │ │ └── example1.png │ ├── contract │ │ ├── contract-info-meta.png │ │ └── contract-info-spec.png │ ├── dev-tools │ │ ├── jupyter-notebooks.png │ │ ├── openzeppelin-contract-wizard.png │ │ └── stellar-wallet-kit.gif │ ├── diagrams │ │ ├── environment-concepts.png │ │ ├── soroban_fees.png │ │ ├── stellar-stack-diagram.png │ │ ├── stellar-tech-stack.png │ │ └── validator_complete.png │ ├── galexie │ │ └── galexie-architecture.png │ ├── guestbook │ │ ├── frontend.png │ │ ├── github_template.png │ │ └── mercury_token.png │ ├── horizon-scaling │ │ ├── Topology-ingestion-isolation.png │ │ ├── Topology-multiple.png │ │ ├── Topology-single.png │ │ └── Topology-txsub.png │ ├── ingest-sdk │ │ ├── architecture.png │ │ ├── bufferedstoragebackend_architecture.png │ │ └── cdp_pipelines.png │ ├── lab │ │ ├── horizon-assets-usdc-response.png │ │ ├── horizon-assets-usdc.png │ │ ├── horizon-assets.png │ │ ├── horizon-endpoints.png │ │ ├── horizon-payments-response.png │ │ ├── horizon-payments.png │ │ ├── horizon-save-modal.png │ │ ├── horizon-save.png │ │ ├── horizon-share.png │ │ ├── lab-account-create.png │ │ ├── lab-account-fund.png │ │ ├── lab-account-saved-manual.png │ │ ├── lab-account-saved-usage-public.png │ │ ├── lab-account-saved-usage-secret.png │ │ ├── lab-account-saved.png │ │ ├── lab-already-uploaded.gif │ │ ├── lab-contract-explorer-build.png │ │ ├── lab-contract-explorer-info.png │ │ ├── lab-contract-explorer-invoke.gif │ │ ├── lab-contract-explorer-source.png │ │ ├── lab-contract-explorer-spec.png │ │ ├── lab-contract-explorer-storage.png │ │ ├── lab-contract-explorer-version.png │ │ ├── lab-contract-explorer.png │ │ ├── lab-custom-network.png │ │ ├── lab-deploy-contract.gif │ │ ├── lab-horizon-saved-requests.png │ │ ├── lab-horizon-view-docs.png │ │ ├── lab-rpc-methods-saved.png │ │ ├── lab-single-account-response.png │ │ ├── lab-single-account.png │ │ ├── lab-smart-contract-list.png │ │ ├── lab-transactions-build.png │ │ ├── lab-transactions-ops.png │ │ ├── lab-transactions-response-error.png │ │ ├── lab-transactions-response-success.png │ │ ├── lab-transactions-saved.png │ │ ├── lab-upload-contract.gif │ │ ├── lab-upload-deploy-page.png │ │ ├── lab-xdr-diff-dropdown.png │ │ ├── lab-xdr-diff-filled.png │ │ ├── lab-xdr-diff.png │ │ ├── lab-xdr-from-json-dropdown.png │ │ ├── lab-xdr-from-json-filled.png │ │ ├── lab-xdr-from-json.png │ │ ├── lab-xdr-to-json-dropdown.png │ │ ├── lab-xdr-to-json-filled.png │ │ ├── lab-xdr-to-json.png │ │ ├── lab.png │ │ ├── restore-footprint.gif │ │ ├── rpc-methods-item.png │ │ ├── stellar-lab-restore.png │ │ └── xdr-json-lab.png │ ├── mgi │ │ ├── wallet-mgi-architecture-1.png │ │ └── wallet-mgi-architecture-2.png │ ├── quickstart │ │ └── stellar_lab_screenshot.png │ └── security │ │ └── threat-modeling.png ├── definitions │ ├── sep6_24_31_status_transition_diagrams.drawio │ ├── sequence_diagram_sep24_deposit_job.txt │ ├── sequence_diagram_sep24_deposit_webhook.txt │ ├── sequence_diagram_sep24_withdrawal_job.txt │ ├── sequence_diagram_sep24_withdrawal_webhook.txt │ ├── sequence_diagram_sep31_receive_job.txt │ └── sequence_diagram_sep31_receive_webhook.txt ├── icons │ ├── access-data.png │ ├── build-applications.png │ ├── contract.png │ ├── dev-tools.png │ ├── issue-assets.png │ ├── stellar-101.png │ ├── thumbs-down.svg │ └── thumbs-up.svg ├── img │ ├── docusaurus │ │ ├── dev-docs-preview.png │ │ ├── favicon-96x96.png │ │ ├── flutter-dark.png │ │ ├── flutter.png │ │ ├── kt-dark.png │ │ ├── kt.png │ │ ├── stellar-logo-dark.svg │ │ ├── stellar-logo.svg │ │ ├── swift-dark.png │ │ ├── swift.png │ │ └── ts.png │ ├── hubble │ │ ├── add-column-chart.png │ │ ├── add-contract-data.png │ │ ├── add-custom-query.png │ │ ├── add-pie-chart.png │ │ ├── add-quick-filter.png │ │ ├── airflow_dag_toggle.png │ │ ├── bq-connector.png │ │ ├── click_add_data.png │ │ ├── column-chart-config.png │ │ ├── create-data-source.png │ │ ├── create-report.png │ │ ├── data_model_diagram.png │ │ ├── dbt_enriched_base_tables.png │ │ ├── expired-entry-column-chart.png │ │ ├── filter-contract.png │ │ ├── filtered-report.png │ │ ├── history_table_export.png │ │ ├── hubble_visualization_final.png │ │ ├── hubble_visualizatoin_demo.gif │ │ ├── persistent-only.png │ │ ├── pie-config.png │ │ ├── pie-contract-data.png │ │ ├── pie_chart_durability.png │ │ ├── select-data-sources.png │ │ ├── state_table_export.png │ │ ├── stellar_dbt_architecture.png │ │ ├── stellar_etl_airflow_architecture.png │ │ ├── stellar_etl_architecture.png │ │ └── stellar_overall_architecture.png │ └── migrating │ │ ├── counter.png │ │ ├── deploy-counter.png │ │ ├── deployed-contracts.png │ │ ├── increment.png │ │ └── vault-project.png ├── llms.txt ├── robots.txt └── stellar-rpc.openrpc.json ├── tsconfig.json └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post_attach_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.devcontainer/post_attach_start.sh -------------------------------------------------------------------------------- /.devcontainer/restart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | kill -9 $(lsof -t -i:3000) 5 | ./post_attach_start.sh 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-routes-removal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/check-routes-removal.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-download-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/crowdin-download-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-manual-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/crowdin-manual-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/crowdin-upload-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CROWDIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/CROWDIN.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/README.md -------------------------------------------------------------------------------- /config/anchorPlatform.sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/anchorPlatform.sidebar.ts -------------------------------------------------------------------------------- /config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/constants.ts -------------------------------------------------------------------------------- /config/disbursementPlatform.sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/disbursementPlatform.sidebar.ts -------------------------------------------------------------------------------- /config/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/sidebars.ts -------------------------------------------------------------------------------- /config/theme/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/theme/footer.ts -------------------------------------------------------------------------------- /config/theme/headTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/theme/headTags.ts -------------------------------------------------------------------------------- /config/theme/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/config/theme/navbar.ts -------------------------------------------------------------------------------- /crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/crowdin.yaml -------------------------------------------------------------------------------- /docs/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/README.mdx -------------------------------------------------------------------------------- /docs/build/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/README.mdx -------------------------------------------------------------------------------- /docs/build/apps/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/README.mdx -------------------------------------------------------------------------------- /docs/build/apps/application-design-considerations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/application-design-considerations.mdx -------------------------------------------------------------------------------- /docs/build/apps/dapp-frontend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/dapp-frontend.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/README.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/bindings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/bindings.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/frontend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/frontend.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/overview.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/passkeys-prerequisites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/passkeys-prerequisites.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/setup-passkeys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/setup-passkeys.mdx -------------------------------------------------------------------------------- /docs/build/apps/guestbook/smart-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/guestbook/smart-contract.mdx -------------------------------------------------------------------------------- /docs/build/apps/ingest-sdk/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/ingest-sdk/README.mdx -------------------------------------------------------------------------------- /docs/build/apps/ingest-sdk/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/ingest-sdk/overview.mdx -------------------------------------------------------------------------------- /docs/build/apps/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/overview.mdx -------------------------------------------------------------------------------- /docs/build/apps/swift-payment-app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/swift-payment-app.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/build/apps/wallet/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/README.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/dart/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/dart/install.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/header.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/header.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/kt/configClient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/kt/configClient.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/kt/globalSigner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/kt/globalSigner.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/kt/httpConfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/kt/httpConfig.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/kt/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/kt/install.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/kt/watcher.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/kt/watcher.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/swift/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/swift/install.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/ts/allowHttpInfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/ts/allowHttpInfo.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/ts/configClient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/ts/configClient.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/ts/globalSigner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/ts/globalSigner.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/component/ts/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/component/ts/install.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/intro.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/overview.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep10.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep24.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep24.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep30.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep30.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep38.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep38.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep6.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/sep7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/sep7.mdx -------------------------------------------------------------------------------- /docs/build/apps/wallet/stellar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/apps/wallet/stellar.mdx -------------------------------------------------------------------------------- /docs/build/guides/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/archival/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/archival/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/archival/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/archival/restore-contract-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/archival/restore-contract-js.mdx -------------------------------------------------------------------------------- /docs/build/guides/archival/restore-data-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/archival/restore-data-js.mdx -------------------------------------------------------------------------------- /docs/build/guides/archival/test-ttl-extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/archival/test-ttl-extension.mdx -------------------------------------------------------------------------------- /docs/build/guides/auth/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/auth/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/auth/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } -------------------------------------------------------------------------------- /docs/build/guides/auth/check-auth-tutorials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/auth/check-auth-tutorials.mdx -------------------------------------------------------------------------------- /docs/build/guides/auth/contract-authorization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/auth/contract-authorization.mdx -------------------------------------------------------------------------------- /docs/build/guides/basics/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/basics/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/basics/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } -------------------------------------------------------------------------------- /docs/build/guides/basics/automate-reset-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/basics/automate-reset-data.mdx -------------------------------------------------------------------------------- /docs/build/guides/basics/classic-transition.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/basics/classic-transition.mdx -------------------------------------------------------------------------------- /docs/build/guides/basics/verify-trustlines.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/basics/verify-trustlines.mdx -------------------------------------------------------------------------------- /docs/build/guides/contract-accounts/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/contract-accounts/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/contract-accounts/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/contract-accounts/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/contract-accounts/examples.mdx -------------------------------------------------------------------------------- /docs/build/guides/contract-accounts/smart-wallets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/contract-accounts/smart-wallets.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/conventions/cross-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/cross-contract.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/deploy-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/deploy-contract.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/error-enum.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/error-enum.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/extending-wasm-ttl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/extending-wasm-ttl.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/upgrading-contracts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/upgrading-contracts.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/wasm-metadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/wasm-metadata.mdx -------------------------------------------------------------------------------- /docs/build/guides/conventions/workspace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conventions/workspace.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/conversions/address-conversions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/address-conversions.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/address-to-bytesn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/address-to-bytesn.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/address-to-id.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/address-to-id.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/bytes-conversions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/bytes-conversions.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/id-to-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/id-to-address.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/scval-conversions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/scval-conversions.mdx -------------------------------------------------------------------------------- /docs/build/guides/conversions/string-conversions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/conversions/string-conversions.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/dapps/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/docker.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/frontend-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/frontend-guide.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/initialization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/initialization.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/react.mdx -------------------------------------------------------------------------------- /docs/build/guides/dapps/state-archival.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/dapps/state-archival.mdx -------------------------------------------------------------------------------- /docs/build/guides/events/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/events/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/events/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/events/consume.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/events/consume.mdx -------------------------------------------------------------------------------- /docs/build/guides/events/ingest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/events/ingest.mdx -------------------------------------------------------------------------------- /docs/build/guides/events/publish.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/events/publish.mdx -------------------------------------------------------------------------------- /docs/build/guides/fees/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/fees/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/fees/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/fees/cost-analysis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/fees/cost-analysis.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/freighter/connect-testnet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/connect-testnet.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/enable-soroban-tokens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/enable-soroban-tokens.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/prompt-to-sign-tx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/prompt-to-sign-tx.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/send-token-payments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/send-token-payments.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/sign-auth-entries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/sign-auth-entries.mdx -------------------------------------------------------------------------------- /docs/build/guides/freighter/sign-soroban-xdrs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/freighter/sign-soroban-xdrs.mdx -------------------------------------------------------------------------------- /docs/build/guides/rpc/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/rpc/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/rpc/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/rpc/generate-ledger-keys-python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/rpc/generate-ledger-keys-python.mdx -------------------------------------------------------------------------------- /docs/build/guides/rpc/retrieve-contract-code-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/rpc/retrieve-contract-code-js.mdx -------------------------------------------------------------------------------- /docs/build/guides/rpc/self-deploy-rpc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/rpc/self-deploy-rpc.mdx -------------------------------------------------------------------------------- /docs/build/guides/rpc/use-public-rpc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/rpc/use-public-rpc.mdx -------------------------------------------------------------------------------- /docs/build/guides/storage/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/storage/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/storage/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/storage/choose-type.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/storage/choose-type.mdx -------------------------------------------------------------------------------- /docs/build/guides/storage/use-instance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/storage/use-instance.mdx -------------------------------------------------------------------------------- /docs/build/guides/storage/use-persistent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/storage/use-persistent.mdx -------------------------------------------------------------------------------- /docs/build/guides/storage/use-temporary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/storage/use-temporary.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/testing/code-coverage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/code-coverage.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/differential-tests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/differential-tests.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/fork-testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/fork-testing.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/fuzzing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/fuzzing.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/integration-tests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/integration-tests.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/ledger-snapshot-testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/ledger-snapshot-testing.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/mocking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/mocking.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/mutation-testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/mutation-testing.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/test-contract-auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/test-contract-auth.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/test-contract-events.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/test-contract-events.mdx -------------------------------------------------------------------------------- /docs/build/guides/testing/unit-tests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/testing/unit-tests.mdx -------------------------------------------------------------------------------- /docs/build/guides/tokens/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/tokens/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/tokens/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/tokens/custom-sac-admin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/tokens/custom-sac-admin.mdx -------------------------------------------------------------------------------- /docs/build/guides/tokens/deploying-a-sac.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/tokens/deploying-a-sac.mdx -------------------------------------------------------------------------------- /docs/build/guides/tokens/stellar-asset-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/tokens/stellar-asset-contract.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/README.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/guides/transactions/channel-accounts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/channel-accounts.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/claimable-balances.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/claimable-balances.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/clawbacks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/clawbacks.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/create-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/create-account.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/path-payments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/path-payments.mdx -------------------------------------------------------------------------------- /docs/build/guides/transactions/sponsored-reserves.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/guides/transactions/sponsored-reserves.mdx -------------------------------------------------------------------------------- /docs/build/security-docs/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/security-docs/README.mdx -------------------------------------------------------------------------------- /docs/build/security-docs/threat-modeling/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/security-docs/threat-modeling/README.mdx -------------------------------------------------------------------------------- /docs/build/smart-contracts/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/smart-contracts/README.mdx -------------------------------------------------------------------------------- /docs/build/smart-contracts/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/smart-contracts/example-contracts/auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/smart-contracts/example-contracts/auth.mdx -------------------------------------------------------------------------------- /docs/build/smart-contracts/getting-started/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/smart-contracts/getting-started/README.mdx -------------------------------------------------------------------------------- /docs/build/smart-contracts/getting-started/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/build/smart-contracts/getting-started/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/smart-contracts/getting-started/setup.mdx -------------------------------------------------------------------------------- /docs/build/smart-contracts/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/build/smart-contracts/overview.mdx -------------------------------------------------------------------------------- /docs/data/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/data/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/README.mdx -------------------------------------------------------------------------------- /docs/data/analytics/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/analytics/README.mdx -------------------------------------------------------------------------------- /docs/data/analytics/hubble/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/analytics/hubble/README.mdx -------------------------------------------------------------------------------- /docs/data/analytics/hubble/analyst-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/analytics/hubble/analyst-guide/README.mdx -------------------------------------------------------------------------------- /docs/data/analytics/hubble/analyst-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/analytics/hubble/data-catalog/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/analytics/hubble/data-catalog/README.mdx -------------------------------------------------------------------------------- /docs/data/analytics/hubble/data-catalog/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/analytics/hubble/developer-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/analytics/hubble/developer-guide/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/configuring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/configuring.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/ingestion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/ingestion.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/installing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/installing.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/monitoring.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/overview.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/prerequisites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/prerequisites.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/running.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/running.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/scaling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/scaling.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/admin-guide/upgrading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/admin-guide/upgrading.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/api-reference/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/api-reference/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/horizon/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/apis/horizon/api-reference/resources/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/apis/horizon/api-reference/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/api-reference/sidebar.ts -------------------------------------------------------------------------------- /docs/data/apis/horizon/providers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/horizon/providers.mdx -------------------------------------------------------------------------------- /docs/data/apis/migrate-from-horizon-to-rpc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/migrate-from-horizon-to-rpc.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/configuring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/configuring.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/development.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/installing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/installing.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/monitoring.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/prerequisites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/prerequisites.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/admin-guide/running.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/admin-guide/running.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/api-reference/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/api-reference/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/apis/rpc/api-reference/methods/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/api-reference/methods/README.mdx -------------------------------------------------------------------------------- /docs/data/apis/rpc/api-reference/methods/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/apis/rpc/providers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/apis/rpc/providers.mdx -------------------------------------------------------------------------------- /docs/data/indexers/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/indexers/README.mdx -------------------------------------------------------------------------------- /docs/data/indexers/build-your-own/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/indexers/build-your-own/README.mdx -------------------------------------------------------------------------------- /docs/data/indexers/build-your-own/galexie/admin_guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/data/oracles/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/oracles/README.mdx -------------------------------------------------------------------------------- /docs/data/oracles/oracle-providers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/data/oracles/oracle-providers.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/README.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/anchors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/anchors.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/data-format/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/data-format/README.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/data-format/xdr-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/data-format/xdr-json.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/data-format/xdr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/data-format/xdr.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/lumens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/lumens.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/stellar-stack.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/stellar-stack.mdx -------------------------------------------------------------------------------- /docs/learn/fundamentals/transactions/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/fundamentals/transactions/README.mdx -------------------------------------------------------------------------------- /docs/learn/glossary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/glossary.mdx -------------------------------------------------------------------------------- /docs/learn/interactive/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/interactive/README.mdx -------------------------------------------------------------------------------- /docs/learn/interactive/dapp-world.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/interactive/dapp-world.mdx -------------------------------------------------------------------------------- /docs/learn/interactive/fca00c.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/interactive/fca00c.mdx -------------------------------------------------------------------------------- /docs/learn/interactive/quest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/interactive/quest.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/README.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/cosmos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/cosmos.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/evm/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/evm/README.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/evm/solidity-and-rust-basics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/evm/solidity-and-rust-basics.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/near.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/near.mdx -------------------------------------------------------------------------------- /docs/learn/migrate/solana.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/learn/migrate/solana.mdx -------------------------------------------------------------------------------- /docs/networks/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/networks/README.mdx -------------------------------------------------------------------------------- /docs/networks/resource-limits-fees.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/networks/resource-limits-fees.mdx -------------------------------------------------------------------------------- /docs/networks/software-versions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/networks/software-versions.mdx -------------------------------------------------------------------------------- /docs/platforms/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/platforms/README.mdx -------------------------------------------------------------------------------- /docs/platforms/anchor-platform/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/platforms/anchor-platform/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/platforms/anchor-platform/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/platforms/anchor-platform/README.mdx -------------------------------------------------------------------------------- /docs/platforms/anchor-platform/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/platforms/anchor-platform/sep-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/platforms/anchor-platform/sep-guide/README.mdx -------------------------------------------------------------------------------- /docs/platforms/stellar-disbursement-platform/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/tokens/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/README.mdx -------------------------------------------------------------------------------- /docs/tokens/anatomy-of-an-asset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/anatomy-of-an-asset.mdx -------------------------------------------------------------------------------- /docs/tokens/control-asset-access.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/control-asset-access.mdx -------------------------------------------------------------------------------- /docs/tokens/how-to-issue-an-asset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/how-to-issue-an-asset.mdx -------------------------------------------------------------------------------- /docs/tokens/publishing-asset-info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/publishing-asset-info.mdx -------------------------------------------------------------------------------- /docs/tokens/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/quickstart.mdx -------------------------------------------------------------------------------- /docs/tokens/stellar-asset-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/stellar-asset-contract.mdx -------------------------------------------------------------------------------- /docs/tokens/token-interface.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tokens/token-interface.mdx -------------------------------------------------------------------------------- /docs/tools/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/README.mdx -------------------------------------------------------------------------------- /docs/tools/cli/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/README.mdx -------------------------------------------------------------------------------- /docs/tools/cli/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/README.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/asset-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/asset-management.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/contract-build-meta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/contract-build-meta.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/contract-lifecycle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/contract-lifecycle.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/deploy-contract.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/deploy-contract.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/extend-contract-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/extend-contract-storage.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/extend-contract-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/extend-contract-wasm.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/payments-and-assets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/payments-and-assets.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/stellar-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/stellar-keys.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/tx-new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/tx-new.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/tx-op-add.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/tx-op-add.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/tx-sign.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/tx-sign.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/upload-deploy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/upload-deploy.mdx -------------------------------------------------------------------------------- /docs/tools/cli/cookbook/upload-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/cookbook/upload-wasm.mdx -------------------------------------------------------------------------------- /docs/tools/cli/install-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/install-cli.mdx -------------------------------------------------------------------------------- /docs/tools/cli/plugins-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/plugins-list.mdx -------------------------------------------------------------------------------- /docs/tools/cli/plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/plugins.mdx -------------------------------------------------------------------------------- /docs/tools/cli/stellar-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/cli/stellar-cli.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/IDEs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/IDEs.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/README.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/tools/developer-tools/ai-bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/ai-bot.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/analytics-platforms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/analytics-platforms.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/anchor-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/anchor-tools.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/asset-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/asset-tools.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/block-explorers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/block-explorers.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/jupyter-notebooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/jupyter-notebooks.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/network-insights.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/network-insights.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/network-status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/network-status.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/node-operator-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/node-operator-tools.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/security-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/security-tools.mdx -------------------------------------------------------------------------------- /docs/tools/developer-tools/wallets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/developer-tools/wallets.mdx -------------------------------------------------------------------------------- /docs/tools/infra-tools/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/infra-tools/README.mdx -------------------------------------------------------------------------------- /docs/tools/infra-tools/cross-chain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/infra-tools/cross-chain.mdx -------------------------------------------------------------------------------- /docs/tools/lab/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/README.mdx -------------------------------------------------------------------------------- /docs/tools/lab/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/tools/lab/account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/account.mdx -------------------------------------------------------------------------------- /docs/tools/lab/api-explorer/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/api-explorer/README.mdx -------------------------------------------------------------------------------- /docs/tools/lab/api-explorer/horizon-endpoint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/api-explorer/horizon-endpoint.mdx -------------------------------------------------------------------------------- /docs/tools/lab/api-explorer/rpc-methods.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/api-explorer/rpc-methods.mdx -------------------------------------------------------------------------------- /docs/tools/lab/quickstart-with-lab.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/quickstart-with-lab.mdx -------------------------------------------------------------------------------- /docs/tools/lab/saved/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/saved/README.mdx -------------------------------------------------------------------------------- /docs/tools/lab/saved/keypairs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/saved/keypairs.mdx -------------------------------------------------------------------------------- /docs/tools/lab/saved/requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/saved/requests.mdx -------------------------------------------------------------------------------- /docs/tools/lab/saved/transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/saved/transactions.mdx -------------------------------------------------------------------------------- /docs/tools/lab/smart-contracts/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/smart-contracts/README.mdx -------------------------------------------------------------------------------- /docs/tools/lab/transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/transactions.mdx -------------------------------------------------------------------------------- /docs/tools/lab/view-xdr/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/view-xdr/README.mdx -------------------------------------------------------------------------------- /docs/tools/lab/view-xdr/diff-xdr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/view-xdr/diff-xdr.mdx -------------------------------------------------------------------------------- /docs/tools/lab/view-xdr/json-to-xdr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/view-xdr/json-to-xdr.mdx -------------------------------------------------------------------------------- /docs/tools/lab/view-xdr/xdr-to-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/lab/view-xdr/xdr-to-json.mdx -------------------------------------------------------------------------------- /docs/tools/openzeppelin-contracts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/openzeppelin-contracts.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/README.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/advanced-usage/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/advanced-usage/README.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/advanced-usage/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /docs/tools/quickstart/advanced-usage/container.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/advanced-usage/container.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/advanced-usage/ports.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/advanced-usage/ports.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/cloud/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/cloud/README.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/cloud/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /docs/tools/quickstart/cloud/digitalocean.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/cloud/digitalocean.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/cloud/fly.io.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/cloud/fly.io.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/debugging/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/debugging/README.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/debugging/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /docs/tools/quickstart/debugging/viewing-logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/debugging/viewing-logs.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/explorer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/explorer.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/faucet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/faucet.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/getting-started/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/getting-started/README.mdx -------------------------------------------------------------------------------- /docs/tools/quickstart/getting-started/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /docs/tools/quickstart/network-modes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/quickstart/network-modes.mdx -------------------------------------------------------------------------------- /docs/tools/ramps/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/ramps/README.mdx -------------------------------------------------------------------------------- /docs/tools/ramps/moneygram.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/ramps/moneygram.mdx -------------------------------------------------------------------------------- /docs/tools/scaffold-stellar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/scaffold-stellar.mdx -------------------------------------------------------------------------------- /docs/tools/sdks/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/sdks/README.mdx -------------------------------------------------------------------------------- /docs/tools/sdks/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/tools/sdks/build-your-own.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/sdks/build-your-own.mdx -------------------------------------------------------------------------------- /docs/tools/sdks/client-sdks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/sdks/client-sdks.mdx -------------------------------------------------------------------------------- /docs/tools/sdks/contract-sdks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/tools/sdks/contract-sdks.mdx -------------------------------------------------------------------------------- /docs/validators/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/README.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/README.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /docs/validators/admin-guide/advanced.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/advanced.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/commands.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/configuring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/configuring.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/installation.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/logging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/logging.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/maintenance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/maintenance.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/monitoring.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/network-upgrades.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/network-upgrades.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/prerequisites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/prerequisites.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/running-node.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/running-node.mdx -------------------------------------------------------------------------------- /docs/validators/admin-guide/soroban-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/admin-guide/soroban-settings.mdx -------------------------------------------------------------------------------- /docs/validators/tier-1-orgs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docs/validators/tier-1-orgs.mdx -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/en/code.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/en/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/en/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/en/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/en/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /i18n/es/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/code.json -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-plugin-content-blog/authors.yml -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs-ap/current/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs-sdp/current/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/archival/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/auth/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/basics/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/cli/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/contract-accounts/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/conventions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/conversions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/dapps/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/events/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/fees/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/freighter/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/rpc/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/storage/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/testing/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/tokens/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/guides/transactions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/smart-contracts/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/build/smart-contracts/getting-started/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/analytics/hubble/analyst-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/analytics/hubble/data-catalog/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/apis/horizon/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/apis/horizon/api-reference/resources/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/apis/rpc/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/apis/rpc/api-reference/methods/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/data/indexers/build-your-own/galexie/admin_guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/platforms/anchor-platform/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/platforms/stellar-disbursement-platform/api-reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/cli/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/cli/cookbook/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/developer-tools/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/lab/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/quickstart/advanced-usage/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/quickstart/cloud/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/quickstart/debugging/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/quickstart/getting-started/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": true 3 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/tools/sdks/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/validators/admin-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-plugin-content-pages/index.mdx -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/i18n/es/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /meeting-notes/2024-01-18.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-01-18.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-01-26.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-01-26.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-02-01.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-02-01.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-02-09.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-02-09.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-02-15.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-02-15.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-02-22.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-02-22.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-02-29.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-02-29.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-03-07.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-03-07.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-03-14.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-03-14.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-03-21.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-03-21.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-03-28.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-03-28.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-04-04.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-04-04.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-04-11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-04-11.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-04-18.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-04-18.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-04-25.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-04-25.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-05-02.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-05-02.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-05-09.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-05-09.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-06-13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-06-13.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-06-20.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-06-20.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-06-27.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-06-27.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-07-11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-07-11.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-07-18.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-07-18.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-07-25.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-07-25.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-08-01.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-08-01.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-08-08.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-08-08.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-08-15.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-08-15.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-08-22.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-08-22.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-08-29.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-08-29.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-09-05.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-09-05.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-09-12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-09-12.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-09-19.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-09-19.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-09-26.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-09-26.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-10-24.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-10-24.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-11-14.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-11-14.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-12-05.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-12-05.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-12-12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-12-12.mdx -------------------------------------------------------------------------------- /meeting-notes/2024-12-19.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2024-12-19.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-01-16.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-01-16.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-01-23.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-01-23.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-01-30.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-01-30.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-02-06.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-02-06.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-02-13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-02-13.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-02-20.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-02-20.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-02-27.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-02-27.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-03-06.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-03-06.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-03-27.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-03-27.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-04-03.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-04-03.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-04-10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-04-10.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-04-17.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-04-17.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-05-01.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-05-01.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-05-22.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-05-22.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-07-10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-07-10.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-07-17.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-07-17.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-07-24.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-07-24.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-08-07.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-08-07.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-09-25.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-09-25.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-10-02.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-10-02.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-10-09.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-10-09.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-10-16.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-10-16.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-10-23.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-10-23.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-10-30.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-10-30.mdx -------------------------------------------------------------------------------- /meeting-notes/2025-11-06.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/2025-11-06.mdx -------------------------------------------------------------------------------- /meeting-notes/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/meeting-notes/authors.yml -------------------------------------------------------------------------------- /nginx/includes/redirects.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/nginx/includes/redirects.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /openapi/anchor-platform/bundled-callbacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/bundled-callbacks.yaml -------------------------------------------------------------------------------- /openapi/anchor-platform/bundled-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/bundled-platform.yaml -------------------------------------------------------------------------------- /openapi/anchor-platform/examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/examples.yaml -------------------------------------------------------------------------------- /openapi/anchor-platform/main-callbacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/main-callbacks.yaml -------------------------------------------------------------------------------- /openapi/anchor-platform/main-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/main-platform.yaml -------------------------------------------------------------------------------- /openapi/anchor-platform/schemas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/anchor-platform/schemas.yaml -------------------------------------------------------------------------------- /openapi/horizon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/README.md -------------------------------------------------------------------------------- /openapi/horizon/bundled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/bundled.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/accounts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/accounts.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/assets.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/effects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/effects.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/feeStats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/feeStats.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/ledgers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/ledgers.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/offers.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/operations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/operations.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/orderBooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/orderBooks.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/paths.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/payments.yml -------------------------------------------------------------------------------- /openapi/horizon/components/endpoints/trades.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/endpoints/trades.yml -------------------------------------------------------------------------------- /openapi/horizon/components/instance_variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/instance_variables.yml -------------------------------------------------------------------------------- /openapi/horizon/components/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/parameters.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/assetSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/assetSchema.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/ledgerSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/ledgerSchema.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/linksSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/linksSchema.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/offerSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/offerSchema.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/orderBook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/orderBook.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/path.yml -------------------------------------------------------------------------------- /openapi/horizon/components/schemas/tradeSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/components/schemas/tradeSchema.yml -------------------------------------------------------------------------------- /openapi/horizon/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/horizon/main.yml -------------------------------------------------------------------------------- /openapi/stellar-disbursement-platform/bundled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/stellar-disbursement-platform/bundled.yaml -------------------------------------------------------------------------------- /openapi/stellar-disbursement-platform/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openapi/stellar-disbursement-platform/main.yaml -------------------------------------------------------------------------------- /openrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/README.md -------------------------------------------------------------------------------- /openrpc/scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/scripts/build.mjs -------------------------------------------------------------------------------- /openrpc/scripts/validate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/scripts/validate.mjs -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/account.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/amount.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/customer.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/datetime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/datetime.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/fee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/fee.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/message.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/query.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/refund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/refund.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/examples/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/examples/response.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/account.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/amount.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/customer.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/datetime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/datetime.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/fee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/fee.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/memo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/memo.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/message.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/query.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/quote.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/refund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/refund.json -------------------------------------------------------------------------------- /openrpc/src/anchor-platform/schemas/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/anchor-platform/schemas/response.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/examples/Events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/examples/Events.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/examples/LedgerEntries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/examples/LedgerEntries.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/examples/Ledgers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/examples/Ledgers.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/examples/Simulations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/examples/Simulations.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/examples/Transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/examples/Transactions.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getEvents.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getFeeStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getFeeStats.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getHealth.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getLedgers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getLedgers.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getNetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getNetwork.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getTransaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getTransaction.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/methods/getVersionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/methods/getVersionInfo.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/ContractIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/ContractIds.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Cursor.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Event.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/EventFilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/EventFilters.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Format.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Hash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Hash.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/LedgerEntries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/LedgerEntries.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/LedgerSequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/LedgerSequence.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Ledgers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Ledgers.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/NetworkConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/NetworkConfig.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Pagination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Pagination.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/ResourceConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/ResourceConfig.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Transaction.json -------------------------------------------------------------------------------- /openrpc/src/stellar-rpc/schemas/Transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/openrpc/src/stellar-rpc/schemas/Transactions.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/package.json -------------------------------------------------------------------------------- /patches/@stoplight+json-schema-viewer+4.16.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/patches/@stoplight+json-schema-viewer+4.16.4.patch -------------------------------------------------------------------------------- /readme-imgs/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/readme-imgs/alert.png -------------------------------------------------------------------------------- /readme-imgs/code-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/readme-imgs/code-example.png -------------------------------------------------------------------------------- /redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/redocly.yaml -------------------------------------------------------------------------------- /routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/routes.txt -------------------------------------------------------------------------------- /scripts/copyIgnoredFiles.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/scripts/copyIgnoredFiles.mjs -------------------------------------------------------------------------------- /scripts/fix_cli_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/scripts/fix_cli_links.sh -------------------------------------------------------------------------------- /scripts/fix_translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/scripts/fix_translations.sh -------------------------------------------------------------------------------- /scripts/stellar_cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/scripts/stellar_cli.mjs -------------------------------------------------------------------------------- /scripts/stellar_cli_plugins.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/scripts/stellar_cli_plugins.mjs -------------------------------------------------------------------------------- /src/components/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/Alert.js -------------------------------------------------------------------------------- /src/components/AttributeTable/ListItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/AttributeTable/ListItem/index.js -------------------------------------------------------------------------------- /src/components/AttributeTable/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/AttributeTable/ListItem/index.tsx -------------------------------------------------------------------------------- /src/components/AttributeTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/AttributeTable/index.js -------------------------------------------------------------------------------- /src/components/AttributeTable/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/AttributeTable/styles.module.scss -------------------------------------------------------------------------------- /src/components/CodeExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/CodeExample.js -------------------------------------------------------------------------------- /src/components/Endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/Endpoint.js -------------------------------------------------------------------------------- /src/components/EndpointsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/EndpointsTable.js -------------------------------------------------------------------------------- /src/components/ExampleResponse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/ExampleResponse/index.tsx -------------------------------------------------------------------------------- /src/components/ExampleResponse/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/ExampleResponse/styles.module.scss -------------------------------------------------------------------------------- /src/components/Homepage/NavigatingTheDocs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/Homepage/NavigatingTheDocs/index.tsx -------------------------------------------------------------------------------- /src/components/Homepage/PathfindingTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/Homepage/PathfindingTable/index.tsx -------------------------------------------------------------------------------- /src/components/Homepage/WayfindingBoxes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/Homepage/WayfindingBoxes/index.tsx -------------------------------------------------------------------------------- /src/components/LanguageButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/LanguageButtons.tsx -------------------------------------------------------------------------------- /src/components/LanguageSpecific.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/LanguageSpecific.tsx -------------------------------------------------------------------------------- /src/components/MethodTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/MethodTable/index.tsx -------------------------------------------------------------------------------- /src/components/MethodTable/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/MethodTable/styles.module.scss -------------------------------------------------------------------------------- /src/components/ReaderFeedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/ReaderFeedback/index.tsx -------------------------------------------------------------------------------- /src/components/RedirectPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/RedirectPage.js -------------------------------------------------------------------------------- /src/components/RpcMethod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/RpcMethod.tsx -------------------------------------------------------------------------------- /src/components/SepBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/SepBadge.tsx -------------------------------------------------------------------------------- /src/components/StellarCliGitHubVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/StellarCliGitHubVersion.tsx -------------------------------------------------------------------------------- /src/components/StellarCliVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/StellarCliVersion.tsx -------------------------------------------------------------------------------- /src/components/StellarCliWingetVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/StellarCliWingetVersion.tsx -------------------------------------------------------------------------------- /src/components/WalletCodeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/WalletCodeExample.tsx -------------------------------------------------------------------------------- /src/components/WalletGuideWarn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/WalletGuideWarn.tsx -------------------------------------------------------------------------------- /src/components/WrapperApiReference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/WrapperApiReference.js -------------------------------------------------------------------------------- /src/components/YouTube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/components/YouTube.js -------------------------------------------------------------------------------- /src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/css/custom.scss -------------------------------------------------------------------------------- /src/helpers/getPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/helpers/getPlatform.ts -------------------------------------------------------------------------------- /src/helpers/getShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/helpers/getShell.ts -------------------------------------------------------------------------------- /src/helpers/getStellarCliLatestReleaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/helpers/getStellarCliLatestReleaseUrl.ts -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/helpers/stellarCli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/helpers/stellarCli.ts -------------------------------------------------------------------------------- /src/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/pages/index.mdx -------------------------------------------------------------------------------- /src/plugins/analytics-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/plugins/analytics-module/index.ts -------------------------------------------------------------------------------- /src/plugins/route-export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/plugins/route-export/index.ts -------------------------------------------------------------------------------- /src/sidebar-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/sidebar-generator.js -------------------------------------------------------------------------------- /src/template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/template.mustache -------------------------------------------------------------------------------- /src/theme/AnnouncementBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/AnnouncementBar/index.tsx -------------------------------------------------------------------------------- /src/theme/ApiExplorer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/ApiExplorer/index.tsx -------------------------------------------------------------------------------- /src/theme/DocCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/DocCardList/index.tsx -------------------------------------------------------------------------------- /src/theme/DocItem/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/DocItem/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/DocSidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/DocSidebar/index.tsx -------------------------------------------------------------------------------- /src/theme/MDXComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/MDXComponents.ts -------------------------------------------------------------------------------- /src/theme/NotFound/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/NotFound/Content/index.tsx -------------------------------------------------------------------------------- /src/theme/NotFound/Content/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/NotFound/Content/styles.module.scss -------------------------------------------------------------------------------- /src/theme/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/src/theme/NotFound/index.tsx -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/SDP/SDP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP1.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP10.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP11.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP12.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP13.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP14.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP14.1.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP14.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP14.2.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP15.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP16.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP17.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP18.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP19.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP2-2.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP2.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP20.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP20x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP20x.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP21.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP22.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP23.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP24.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP25.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP26.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP27.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP28.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP29.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP3.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP30.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP31.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP32.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP33.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP34.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP35.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP36.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP37.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP38.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP39.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP4.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP40.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP41.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP42.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP43.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP44.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP5.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP6.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP7.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP8.png -------------------------------------------------------------------------------- /static/assets/SDP/SDP9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/SDP/SDP9.png -------------------------------------------------------------------------------- /static/assets/ap/SEP24-state-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/SEP24-state-diagram.png -------------------------------------------------------------------------------- /static/assets/ap/anchor-platform-architecture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/anchor-platform-architecture-1.png -------------------------------------------------------------------------------- /static/assets/ap/anchor-platform-architecture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/anchor-platform-architecture-2.png -------------------------------------------------------------------------------- /static/assets/ap/sep24-deposit-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/sep24-deposit-flow-diagram.png -------------------------------------------------------------------------------- /static/assets/ap/sep24-withdrawal-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/sep24-withdrawal-flow-diagram.png -------------------------------------------------------------------------------- /static/assets/ap/sep31-transition-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/sep31-transition-diagram.png -------------------------------------------------------------------------------- /static/assets/ap/sep6-deposit-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/sep6-deposit-flow-diagram.png -------------------------------------------------------------------------------- /static/assets/ap/sep6-withdrawal-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ap/sep6-withdrawal-flow-diagram.png -------------------------------------------------------------------------------- /static/assets/api/indexer/goldsky1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/indexer/goldsky1.png -------------------------------------------------------------------------------- /static/assets/api/indexer/goldsky2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/indexer/goldsky2.png -------------------------------------------------------------------------------- /static/assets/api/indexer/goldsky3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/indexer/goldsky3.png -------------------------------------------------------------------------------- /static/assets/api/rpc/getevents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getevents.jpg -------------------------------------------------------------------------------- /static/assets/api/rpc/getfeestats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getfeestats.png -------------------------------------------------------------------------------- /static/assets/api/rpc/gethealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/gethealth.png -------------------------------------------------------------------------------- /static/assets/api/rpc/getlatestledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getlatestledger.png -------------------------------------------------------------------------------- /static/assets/api/rpc/getledgerentries-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getledgerentries-01.gif -------------------------------------------------------------------------------- /static/assets/api/rpc/getledgerentries-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getledgerentries-02.gif -------------------------------------------------------------------------------- /static/assets/api/rpc/getledgers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getledgers.gif -------------------------------------------------------------------------------- /static/assets/api/rpc/getnetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getnetwork.png -------------------------------------------------------------------------------- /static/assets/api/rpc/gettransaction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/gettransaction.gif -------------------------------------------------------------------------------- /static/assets/api/rpc/gettransactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/gettransactions.png -------------------------------------------------------------------------------- /static/assets/api/rpc/getversioninfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/getversioninfo.png -------------------------------------------------------------------------------- /static/assets/api/rpc/sendtransaction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/sendtransaction.gif -------------------------------------------------------------------------------- /static/assets/api/rpc/simulatetransaction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/api/rpc/simulatetransaction.gif -------------------------------------------------------------------------------- /static/assets/basic-pay/add-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/add-assets.png -------------------------------------------------------------------------------- /static/assets/basic-pay/add-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/add-contact.png -------------------------------------------------------------------------------- /static/assets/basic-pay/auth_valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/auth_valid.png -------------------------------------------------------------------------------- /static/assets/basic-pay/authenticate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/authenticate.png -------------------------------------------------------------------------------- /static/assets/basic-pay/confirm-pincode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/confirm-pincode.png -------------------------------------------------------------------------------- /static/assets/basic-pay/display-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/display-assets.png -------------------------------------------------------------------------------- /static/assets/basic-pay/fees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/fees.png -------------------------------------------------------------------------------- /static/assets/basic-pay/funded-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/funded-account.png -------------------------------------------------------------------------------- /static/assets/basic-pay/kyc_accepted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/kyc_accepted.png -------------------------------------------------------------------------------- /static/assets/basic-pay/path-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/path-payment.png -------------------------------------------------------------------------------- /static/assets/basic-pay/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/payment.png -------------------------------------------------------------------------------- /static/assets/basic-pay/public-and-private-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/public-and-private-keys.png -------------------------------------------------------------------------------- /static/assets/basic-pay/sep24_transfers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/sep24_transfers.png -------------------------------------------------------------------------------- /static/assets/basic-pay/sep6_deposit_withdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/sep6_deposit_withdraw.png -------------------------------------------------------------------------------- /static/assets/basic-pay/sep6_kyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/sep6_kyc.png -------------------------------------------------------------------------------- /static/assets/basic-pay/sep6_transfer_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/basic-pay/sep6_transfer_details.png -------------------------------------------------------------------------------- /static/assets/clawback/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/clawback/example1.png -------------------------------------------------------------------------------- /static/assets/contract/contract-info-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/contract/contract-info-meta.png -------------------------------------------------------------------------------- /static/assets/contract/contract-info-spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/contract/contract-info-spec.png -------------------------------------------------------------------------------- /static/assets/dev-tools/jupyter-notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/dev-tools/jupyter-notebooks.png -------------------------------------------------------------------------------- /static/assets/dev-tools/stellar-wallet-kit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/dev-tools/stellar-wallet-kit.gif -------------------------------------------------------------------------------- /static/assets/diagrams/environment-concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/diagrams/environment-concepts.png -------------------------------------------------------------------------------- /static/assets/diagrams/soroban_fees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/diagrams/soroban_fees.png -------------------------------------------------------------------------------- /static/assets/diagrams/stellar-stack-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/diagrams/stellar-stack-diagram.png -------------------------------------------------------------------------------- /static/assets/diagrams/stellar-tech-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/diagrams/stellar-tech-stack.png -------------------------------------------------------------------------------- /static/assets/diagrams/validator_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/diagrams/validator_complete.png -------------------------------------------------------------------------------- /static/assets/galexie/galexie-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/galexie/galexie-architecture.png -------------------------------------------------------------------------------- /static/assets/guestbook/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/guestbook/frontend.png -------------------------------------------------------------------------------- /static/assets/guestbook/github_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/guestbook/github_template.png -------------------------------------------------------------------------------- /static/assets/guestbook/mercury_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/guestbook/mercury_token.png -------------------------------------------------------------------------------- /static/assets/horizon-scaling/Topology-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/horizon-scaling/Topology-multiple.png -------------------------------------------------------------------------------- /static/assets/horizon-scaling/Topology-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/horizon-scaling/Topology-single.png -------------------------------------------------------------------------------- /static/assets/horizon-scaling/Topology-txsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/horizon-scaling/Topology-txsub.png -------------------------------------------------------------------------------- /static/assets/ingest-sdk/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ingest-sdk/architecture.png -------------------------------------------------------------------------------- /static/assets/ingest-sdk/cdp_pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/ingest-sdk/cdp_pipelines.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-assets-usdc-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-assets-usdc-response.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-assets-usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-assets-usdc.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-assets.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-endpoints.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-payments-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-payments-response.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-payments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-payments.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-save-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-save-modal.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-save.png -------------------------------------------------------------------------------- /static/assets/lab/horizon-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/horizon-share.png -------------------------------------------------------------------------------- /static/assets/lab/lab-account-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-account-create.png -------------------------------------------------------------------------------- /static/assets/lab/lab-account-fund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-account-fund.png -------------------------------------------------------------------------------- /static/assets/lab/lab-account-saved-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-account-saved-manual.png -------------------------------------------------------------------------------- /static/assets/lab/lab-account-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-account-saved.png -------------------------------------------------------------------------------- /static/assets/lab/lab-already-uploaded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-already-uploaded.gif -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-build.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-info.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-invoke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-invoke.gif -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-source.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-spec.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-storage.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer-version.png -------------------------------------------------------------------------------- /static/assets/lab/lab-contract-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-contract-explorer.png -------------------------------------------------------------------------------- /static/assets/lab/lab-custom-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-custom-network.png -------------------------------------------------------------------------------- /static/assets/lab/lab-deploy-contract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-deploy-contract.gif -------------------------------------------------------------------------------- /static/assets/lab/lab-horizon-saved-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-horizon-saved-requests.png -------------------------------------------------------------------------------- /static/assets/lab/lab-horizon-view-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-horizon-view-docs.png -------------------------------------------------------------------------------- /static/assets/lab/lab-rpc-methods-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-rpc-methods-saved.png -------------------------------------------------------------------------------- /static/assets/lab/lab-single-account-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-single-account-response.png -------------------------------------------------------------------------------- /static/assets/lab/lab-single-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-single-account.png -------------------------------------------------------------------------------- /static/assets/lab/lab-smart-contract-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-smart-contract-list.png -------------------------------------------------------------------------------- /static/assets/lab/lab-transactions-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-transactions-build.png -------------------------------------------------------------------------------- /static/assets/lab/lab-transactions-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-transactions-ops.png -------------------------------------------------------------------------------- /static/assets/lab/lab-transactions-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-transactions-saved.png -------------------------------------------------------------------------------- /static/assets/lab/lab-upload-contract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-upload-contract.gif -------------------------------------------------------------------------------- /static/assets/lab/lab-upload-deploy-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-upload-deploy-page.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-diff-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-diff-dropdown.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-diff-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-diff-filled.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-diff.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-from-json-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-from-json-dropdown.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-from-json-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-from-json-filled.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-from-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-from-json.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-to-json-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-to-json-dropdown.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-to-json-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-to-json-filled.png -------------------------------------------------------------------------------- /static/assets/lab/lab-xdr-to-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab-xdr-to-json.png -------------------------------------------------------------------------------- /static/assets/lab/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/lab.png -------------------------------------------------------------------------------- /static/assets/lab/restore-footprint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/restore-footprint.gif -------------------------------------------------------------------------------- /static/assets/lab/rpc-methods-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/rpc-methods-item.png -------------------------------------------------------------------------------- /static/assets/lab/stellar-lab-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/stellar-lab-restore.png -------------------------------------------------------------------------------- /static/assets/lab/xdr-json-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/lab/xdr-json-lab.png -------------------------------------------------------------------------------- /static/assets/mgi/wallet-mgi-architecture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/mgi/wallet-mgi-architecture-1.png -------------------------------------------------------------------------------- /static/assets/mgi/wallet-mgi-architecture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/mgi/wallet-mgi-architecture-2.png -------------------------------------------------------------------------------- /static/assets/quickstart/stellar_lab_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/quickstart/stellar_lab_screenshot.png -------------------------------------------------------------------------------- /static/assets/security/threat-modeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/assets/security/threat-modeling.png -------------------------------------------------------------------------------- /static/icons/access-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/access-data.png -------------------------------------------------------------------------------- /static/icons/build-applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/build-applications.png -------------------------------------------------------------------------------- /static/icons/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/contract.png -------------------------------------------------------------------------------- /static/icons/dev-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/dev-tools.png -------------------------------------------------------------------------------- /static/icons/issue-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/issue-assets.png -------------------------------------------------------------------------------- /static/icons/stellar-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/stellar-101.png -------------------------------------------------------------------------------- /static/icons/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/thumbs-down.svg -------------------------------------------------------------------------------- /static/icons/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/icons/thumbs-up.svg -------------------------------------------------------------------------------- /static/img/docusaurus/dev-docs-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/dev-docs-preview.png -------------------------------------------------------------------------------- /static/img/docusaurus/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/favicon-96x96.png -------------------------------------------------------------------------------- /static/img/docusaurus/flutter-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/flutter-dark.png -------------------------------------------------------------------------------- /static/img/docusaurus/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/flutter.png -------------------------------------------------------------------------------- /static/img/docusaurus/kt-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/kt-dark.png -------------------------------------------------------------------------------- /static/img/docusaurus/kt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/kt.png -------------------------------------------------------------------------------- /static/img/docusaurus/stellar-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/stellar-logo-dark.svg -------------------------------------------------------------------------------- /static/img/docusaurus/stellar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/stellar-logo.svg -------------------------------------------------------------------------------- /static/img/docusaurus/swift-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/swift-dark.png -------------------------------------------------------------------------------- /static/img/docusaurus/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/swift.png -------------------------------------------------------------------------------- /static/img/docusaurus/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/docusaurus/ts.png -------------------------------------------------------------------------------- /static/img/hubble/add-column-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/add-column-chart.png -------------------------------------------------------------------------------- /static/img/hubble/add-contract-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/add-contract-data.png -------------------------------------------------------------------------------- /static/img/hubble/add-custom-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/add-custom-query.png -------------------------------------------------------------------------------- /static/img/hubble/add-pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/add-pie-chart.png -------------------------------------------------------------------------------- /static/img/hubble/add-quick-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/add-quick-filter.png -------------------------------------------------------------------------------- /static/img/hubble/airflow_dag_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/airflow_dag_toggle.png -------------------------------------------------------------------------------- /static/img/hubble/bq-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/bq-connector.png -------------------------------------------------------------------------------- /static/img/hubble/click_add_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/click_add_data.png -------------------------------------------------------------------------------- /static/img/hubble/column-chart-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/column-chart-config.png -------------------------------------------------------------------------------- /static/img/hubble/create-data-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/create-data-source.png -------------------------------------------------------------------------------- /static/img/hubble/create-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/create-report.png -------------------------------------------------------------------------------- /static/img/hubble/data_model_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/data_model_diagram.png -------------------------------------------------------------------------------- /static/img/hubble/dbt_enriched_base_tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/dbt_enriched_base_tables.png -------------------------------------------------------------------------------- /static/img/hubble/expired-entry-column-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/expired-entry-column-chart.png -------------------------------------------------------------------------------- /static/img/hubble/filter-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/filter-contract.png -------------------------------------------------------------------------------- /static/img/hubble/filtered-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/filtered-report.png -------------------------------------------------------------------------------- /static/img/hubble/history_table_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/history_table_export.png -------------------------------------------------------------------------------- /static/img/hubble/hubble_visualization_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/hubble_visualization_final.png -------------------------------------------------------------------------------- /static/img/hubble/hubble_visualizatoin_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/hubble_visualizatoin_demo.gif -------------------------------------------------------------------------------- /static/img/hubble/persistent-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/persistent-only.png -------------------------------------------------------------------------------- /static/img/hubble/pie-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/pie-config.png -------------------------------------------------------------------------------- /static/img/hubble/pie-contract-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/pie-contract-data.png -------------------------------------------------------------------------------- /static/img/hubble/pie_chart_durability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/pie_chart_durability.png -------------------------------------------------------------------------------- /static/img/hubble/select-data-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/select-data-sources.png -------------------------------------------------------------------------------- /static/img/hubble/state_table_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/state_table_export.png -------------------------------------------------------------------------------- /static/img/hubble/stellar_dbt_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/stellar_dbt_architecture.png -------------------------------------------------------------------------------- /static/img/hubble/stellar_etl_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/stellar_etl_architecture.png -------------------------------------------------------------------------------- /static/img/hubble/stellar_overall_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/hubble/stellar_overall_architecture.png -------------------------------------------------------------------------------- /static/img/migrating/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/migrating/counter.png -------------------------------------------------------------------------------- /static/img/migrating/deploy-counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/migrating/deploy-counter.png -------------------------------------------------------------------------------- /static/img/migrating/deployed-contracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/migrating/deployed-contracts.png -------------------------------------------------------------------------------- /static/img/migrating/increment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/migrating/increment.png -------------------------------------------------------------------------------- /static/img/migrating/vault-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/img/migrating/vault-project.png -------------------------------------------------------------------------------- /static/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/llms.txt -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/stellar-rpc.openrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/static/stellar-rpc.openrpc.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar/stellar-docs/HEAD/yarn.lock --------------------------------------------------------------------------------