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

Add Hedera's JSON-RPC relay to default network-config.yaml #1658

Merged
merged 3 commits into from
Jan 29, 2024
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/eth-brownie/brownie)

- Add Hedera network integration ([#1658](https://github.com/eth-brownie/brownie/pull/1658))

## [1.19.2](https://github.com/eth-brownie/brownie/tree/v1.19.2) - 2022-10-16
### Added
- Support for remappings in `from_explorer` ([#1596](https://github.com/eth-brownie/brownie/pull/1596))
Expand Down
19 changes: 18 additions & 1 deletion brownie/data/network-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,23 @@ live:
host: https://api.harmony.one
id: harmony-main
multicall2: "0x3E01dD8a5E1fb3481F0F589056b428Fc308AF0Fb"
- name: Hedera
networks:
- name: Mainnet
chainid: 295
id: hedera-main
host: https://mainnet.hashio.io/api
explorer: https://hashscan.io/mainnet
- name: Testnet
chainid: 296
id: hedera-test
host: https://testnet.hashio.io/api
explorer: https://hashscan.io/testnet
- name: Previewnet
chainid: 297
id: hedera-preview
host: https://previewnet.hashio.io/api
explorer: https://hashscan.io/previewnet
- name: Moonbeam
networks:
- name: Mainnet
Expand All @@ -134,7 +151,7 @@ live:
explorer: https://api-moonbeam.moonscan.io/api
multicall2: "0x1337BedC9D22ecbe766dF105c9623922A27963EC"
- name: Moonbase Alpha
chainid: 1287
chainid: 1287
id: moonbeam-test
host: https://moonbeam-alpha.api.onfinality.io/public
explorer: https://api-moonbase.moonscan.io/api
Expand Down
9 changes: 9 additions & 0 deletions docs/network-management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,17 @@ Native EVM-Compatible Chain Integrations
Brownie natively supports the following collection of EVM-compatible chains:

* Ethereum Classic
* Arbitrum
* Avalanche
* Aurora
* Binance Smart Chain
* Boba
* Fantom Opera
* Harmony
* Hedera
* Moonbeam
* Moonriver
* Optimistic Ethereum
* Polygon Network
* XDai Network

Expand Down