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

Upadate Manifest #5

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Stellar/soroban-futurenet-starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package-lock.json
target/
dist/
src/types
# project.yaml
project.yaml

# JetBrains IDE
.idea/
Expand Down
4 changes: 2 additions & 2 deletions Stellar/soroban-futurenet-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ const project: StellarProject = {
* We recommend providing more than one endpoint for improved reliability, performance, and uptime
* Public nodes may be rate limited, which can affect indexing speed
* When developing your project we suggest getting a private API key
* If you use a rate limited endpoint, adjust the --batch-size and --workers parameters
* These settings can be found in your docker-compose.yaml, they will slow indexing but prevent your project being rate limited
*/
endpoint: ["https://horizon-futurenet.stellar.org:443"],
// This is a specific Soroban endpoint
// It is only required when you are using a soroban/EventHandler
sorobanEndpoint: "https://rpc-futurenet.stellar.org",
// Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
// dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary",
},
dataSources: [
{
Expand Down
2 changes: 1 addition & 1 deletion Stellar/soroban-testnet-starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package-lock.json
target/
dist/
src/types
# project.yaml
project.yaml

# JetBrains IDE
.idea/
Expand Down
4 changes: 2 additions & 2 deletions Stellar/soroban-testnet-starter/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ const project: StellarProject = {
* We recommend providing more than one endpoint for improved reliability, performance, and uptime
* Public nodes may be rate limited, which can affect indexing speed
* When developing your project we suggest getting a private API key
* If you use a rate limited endpoint, adjust the --batch-size and --workers parameters
* These settings can be found in your docker-compose.yaml, they will slow indexing but prevent your project being rate limited
*/
endpoint: ["https://horizon-testnet.stellar.org"],
/* This is a specific Soroban endpoint
It is only required when you are using a soroban/EventHandler */
sorobanEndpoint: "https://soroban-testnet.stellar.org",
/* Recommended to provide the HTTP endpoint of a full chain dictionary to speed up processing
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary" */
},
dataSources: [
{
Expand Down
Loading