Skip to content

Commit

Permalink
Add antelope endpoints (#355)
Browse files Browse the repository at this point in the history
* add antelope endpoints to list of hard-coded networks (thanks, Pinax team!)
  • Loading branch information
YaroShkvorets authored Dec 15, 2023
1 parent 8a5f8ce commit 2cce460
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/release-notes/change-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Client

* Add `--endpoint` flag to `substreams alpha service serve` to specify substreams endpoint to connect to
* Add endpoints for Antelope chains

## v1.2.0

### Client
Expand Down
14 changes: 12 additions & 2 deletions manifest/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,16 @@ var HardcodedEndpoints = map[string]string{
"solana-mainnet": "mainnet.sol.streamingfast.io:443",
"optimism": "optimism.streamingfast.io:443",
"bitcoin": "btc-mainnet.streamingfast.io:443",

//"antelope": "",
"chapel": "chapel.substreams.pinax.network:443",
// antelope chains
"eos": "eos.substreams.pinax.network:443",
"jungle4": "jungle4.substreams.pinax.network:443",
"kylin": "kylin.substreams.pinax.network:443",
"wax": "wax.substreams.pinax.network:443",
"waxtest": "waxtest.substreams.pinax.network:443",
"telos": "telos.substreams.pinax.network:443",
"telostest": "telostest.substreams.pinax.network:443",
"ore": "ore.substreams.pinax.network:443",
"orestage": "orestage.substreams.pinax.network:443",
"ux": "ux.substreams.pinax.network:443",
}

0 comments on commit 2cce460

Please sign in to comment.