This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rashad Alston
authored and
Rashad Alston
committed
Sep 18, 2023
1 parent
1b345b0
commit d412e6a
Showing
11 changed files
with
627 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
42 changes: 6 additions & 36 deletions
42
examples/fuel-explorer/fuel-explorer/fuel_explorer.manifest.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,13 @@ | ||
# A namespace is a logical grouping of declared names. Think of the namespace | ||
# as an organization identifier | ||
--- | ||
namespace: fuellabs | ||
|
||
# The identifier field is used to identify the given index. | ||
identifier: explorer | ||
|
||
# The abi option is used to provide a link to the Sway JSON ABI that is generated when you | ||
# build your project. | ||
abi: ~ | ||
|
||
# The particular start block after which you'd like your indexer to start indexing events. | ||
start_block: ~ | ||
|
||
# The particular end block after which you'd like your indexer to stop indexing events. | ||
end_block: ~ | ||
|
||
# The `fuel_client` denotes the address (host, port combination) of the running Fuel client | ||
# that you would like your indexer to index events from. In order to use this per-indexer | ||
# `fuel_client` option, the indexer service at which your indexer is deployed will have to run | ||
# with the `--indexer_net_config` option. | ||
fuel_client: ~ | ||
|
||
# The contract_id specifies which particular contract you would like your index to subscribe to. | ||
contract_id: ~ | ||
|
||
# The graphql_schema field contains the file path that points to the GraphQL schema for the | ||
# given index. | ||
graphql_schema: examples/fuel-explorer/fuel-explorer/schema/fuel_explorer.schema.graphql | ||
|
||
# The module field contains a file path that points to code that will be run as an executor inside | ||
# of the indexer. | ||
# Important: At this time, wasm is the preferred method of execution. | ||
graphql_schema: examples/fuel-explorer/fuel-explorer/schema/fuel_explorer.schema.graphql | ||
module: | ||
wasm: target/wasm32-unknown-unknown/release/fuel_explorer.wasm | ||
|
||
# The report_metrics field contains boolean whether or not to report Prometheus metrics to the | ||
# Fuel backend | ||
report_metrics: true | ||
|
||
# The resumable field contains a boolean that specifies whether or not the indexer should, synchronise | ||
# with the latest block if it has fallen out of sync. | ||
metrics: ~ | ||
contract_id: ~ | ||
start_block: 0 | ||
end_block: 10000 | ||
resumable: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.