-
Notifications
You must be signed in to change notification settings - Fork 15
Tech 5378 aetherlay rpc endpoints #40
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
@chong-techops the change looks good to me. however you may need to update the aetherlay endpoint to prod once it has been deployed. because these are all for production usage. |
sanbotto
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good, but we should create a ticket or do something to make sure we remember to update chain.techops.live to chain.techops.services once we deployed to prod. I think that the default should be prod since it's gonna be more stable.
| elif chain == "sepolia": | ||
| endpoint = "https://chain.techops.live/eth-sepolia" | ||
| else: | ||
| endpoint = "https://chain.techops.live/eth-{}".format(chain) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably should be:
| endpoint = "https://chain.techops.live/eth-{}".format(chain) | |
| endpoint = "https://chain.techops.live/{}".format(chain) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A ticket has been created for the following update: https://techopsservices.atlassian.net/browse/TECH-5394
Regarding the chain variable, there's no eth- prefix.

No description provided.