Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Partner Experience: Update Horizon documentation #249

Merged
merged 34 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a8d6708
Partner Experience: update horizon config/install copy (#162)
sreuland Jun 20, 2023
81ff8c6
Partner Experience: revamp ingestion docs and guidelines (#168)
sreuland Jul 20, 2023
a80de63
Partner Experience: revamp horizon monitoring docs (#198)
sreuland Aug 11, 2023
c665fd1
Partner Experience: update platform server prerequisites (#143) (#170)
urvisavla Aug 14, 2023
c15c98e
Partner Experience: horizon containerized runtime suggestions (#217)
sreuland Sep 1, 2023
5ee9d72
Partner Experience: update the helm horizon working example (#223)
sreuland Sep 11, 2023
7f09ceb
Change TX_SUB_ENABLED to DISABLE_TX_SUB (#237)
aditya1702 Sep 18, 2023
db688cd
Partner Experience: Update Horizon HW spec (#231)
urvisavla Sep 20, 2023
683f668
Partner Experience: horizon upgrade best practices (#241)
sreuland Sep 26, 2023
bd84939
Merge remote-tracking branch 'upstream/main' into port_latest
sreuland Oct 17, 2023
cea848d
#243: fixed api server link
sreuland Oct 17, 2023
cf8b1e9
Merge remote-tracking branch 'upstream/main' into port_latest
sreuland Nov 21, 2023
f910587
clearly state STELLAR_CORE_URL usage in terms of tx sub enabled insta…
sreuland Nov 22, 2023
dadd4f9
#243: review feedback, don't list roles as mutually exclusive
sreuland Nov 28, 2023
440fba8
#243: clean up paraphrased role titles at top of config section
sreuland Nov 28, 2023
580c2e1
#243: include examples of parallel worker configs
sreuland Nov 29, 2023
01763b1
#243: review feedback, parallel worker examples
sreuland Nov 30, 2023
0011c26
Merge branch 'main' into partner_experience
aditya1702 Jan 10, 2024
2c050f4
Update stellar-stack.mdx
aditya1702 Jan 10, 2024
883df10
grammar nits to Overview
briwylde08 Jan 17, 2024
e8eba3b
formatting & grammar to prereqs
briwylde08 Jan 17, 2024
7127215
Grammar in Installation
briwylde08 Jan 17, 2024
93f7377
grammar in Configuration
briwylde08 Jan 17, 2024
9883e9e
Grammar in Running section
briwylde08 Jan 17, 2024
5cf066f
grammar n stuff in Ingestion
briwylde08 Jan 17, 2024
3007221
use 'platform services' phrasing
sreuland Jan 17, 2024
b47b2c1
#243: changed section title header sizes on prereqs
sreuland Jan 17, 2024
cca1fec
#243: changed content per review feedback on installing page
sreuland Jan 17, 2024
0e00bdb
#243: review feedback on configuring page
sreuland Jan 18, 2024
8f823eb
#243: review feedback on configuring page
sreuland Jan 18, 2024
349f968
#243: review feedback on running page
sreuland Jan 18, 2024
2ef1d79
grammar in Monitoring section
briwylde08 Jan 19, 2024
717cb2c
more grammar
briwylde08 Jan 19, 2024
5aebec8
Merge branch 'partner_experience' of https://github.com/stellar/stell…
briwylde08 Jan 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/accessing-data/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_position: 0

## What is Hubble?

Hubble is an open-source, publicly available dataset that provides a complete historical record of the Stellar network. Similar to Horizon, it ingests and presents the data produced by the Stellar network in a format that is easier to consume than the performance-oriented data representations used by Stellar Core. The dataset is hosted on BigQuery–meaning it is suitable for large, analytic workloads, historical data retrieval and complex data aggregation. **Hubble should not be used for real-time data retrieval and cannot submit transactions to the network.** For real time use cases, we recommend [running an API server](/docs/run-api-server).
Hubble is an open-source, publicly available dataset that provides a complete historical record of the Stellar network. Similar to Horizon, it ingests and presents the data produced by the Stellar network in a format that is easier to consume than the performance-oriented data representations used by Stellar Core. The dataset is hosted on BigQuery–meaning it is suitable for large, analytic workloads, historical data retrieval and complex data aggregation. **Hubble should not be used for real-time data retrieval and cannot submit transactions to the network.** For real time use cases, we recommend [running an API server](/docs/run-platform-server).

This guide describes when to use Hubble and how to connect. To view the underlying data structures, queries and examples, use the [Viewing Metadata](/docs/accessing-data/viewing-metadata) and [Optimizing Queries](/docs/accessing-data/optimizing-queries) tutorials.

Expand Down
9 changes: 4 additions & 5 deletions docs/fundamentals-and-concepts/stellar-stack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ Nodes reach consensus using the Stellar Consensus Protocol, which can you can le

Anyone can run a Stellar Core node, but you don’t have to in order to build on Stellar. We recommend you do so if you issue an asset and want to ensure the accuracy of the ledger, if you want to participate in network governance by voting on protocol version, minimum fees, and resource and ledger limits, and/or if you want to contribute to Stellar’s overall health and decentralization. Check out our tutorial on installing, configuring, and maintaining your own node here: [Run a Core Node Tutorial](../run-core-node).

## Horizon API
## Platform Services

Horizon is the client-facing RESTful HTTP API server that allows programmatic access to submit transactions and query the network’s historical data. It acts as the interface for applications that want to access the Stellar network. You can communicate with Horizon using an SDK, a web browser, or with simple command tools like cURL.
Horizon is the client-facing RESTful HTTP API server in the platform layer which allows programmatic access to submit transactions and query the network’s historical data. It acts as the interface for applications that want to access the Stellar network. You can communicate with Horizon using an SDK, a web browser, or with simple command tools like cURL.

You do not need to run your own Horizon instance — when you're getting started, you can use the free SDF Horizon instance to access the network — but it is recommended that you do when you’re ready to launch a finished product. Check out how to do so here: [Run an API Server Tutorial](../run-api-server).
You do not need to run your own Horizon instance — when you're getting started, you can use the free SDF Horizon instance to access the network — but it is recommended that you do when you’re ready to launch a finished product. Check out how to do so here: [Run Platform Services Tutorial](../run-platform-server)

Learn all there is to know about using Horizon in the Horizon [API Reference documentation](https://developers.stellar.org/api).

Expand All @@ -39,8 +39,7 @@ The Soroban CLI is the command line interface to Soroban and can be downloaded [

SDKs simplify some of the work of accessing Horizon and the Soroban RPC by converting the data into friendlier formats and allowing you to program in the language of your choice. Stellar’s SDKs show you how to request data and create and submit transactions. Soroban's SDKs allow you to write smart contracts in Rust and interact with smart contracts in a myriad of other languages.

View Stellar's [SDK library](../tools-and-sdks#sdk-library) to access our SDKs and their documentation.
View Soroban's [SDK library](https://soroban.stellar.org/docs/category/sdks) in the Soroban docs.
View Stellar's [SDK library](../tools-and-sdks#sdk-library) to access our SDKs and their documentation. View Soroban's [SDK library](https://soroban.stellar.org/docs/category/sdks) in the Soroban docs.

## DeFi protocols

Expand Down
147 changes: 0 additions & 147 deletions docs/run-api-server/configuring.mdx

This file was deleted.

24 changes: 0 additions & 24 deletions docs/run-api-server/index.mdx

This file was deleted.

Loading