Skip to content
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ make tests
### Changelogs
**0.7**
* Removed references to pysha3 library (and also eip712-struct that required it) and replaced it with other implementation to allow the project to work with Python 3.11
* Updated sentry nodes LCD URL, for each sentry node to use its own service

**0.6.5**
* Removed `k8s` from the list of supported mainnet nodes (`lb` should be used instead)
Expand Down
2 changes: 1 addition & 1 deletion pyinjective/constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def mainnet(cls, node='lb'):
grpc_exchange_endpoint = 'k8s.global.mainnet.exchange.grpc.injective.network:443'
grpc_explorer_endpoint = 'k8s.global.mainnet.explorer.grpc.injective.network:443'
else:
lcd_endpoint='https://lcd.injective.network'
lcd_endpoint=f'http://{node}.injective.network:10337'
tm_websocket_endpoint=f'ws://{node}.injective.network:26657/websocket'
grpc_endpoint=f'{node}.injective.network:9900'
grpc_exchange_endpoint=f'{node}.injective.network:9910'
Expand Down