-
Notifications
You must be signed in to change notification settings - Fork 370
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
Cosmos gas price config #3042
Cosmos gas price config #3042
Conversation
|
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.
Realizing that we'll need to change the typescript SDK too to keep things consistent
I think we need:
- a gas price property like we've done for other cosmos chain metadata properties here https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/metadata/chainMetadataTypes.ts#L168
- add the property to the refine here to make sure it's specified for cosmos chains https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/metadata/chainMetadataTypes.ts#L206
- add the gas prices for the cosmos chains here https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/consts/chainMetadata.ts
4e41e90
to
781cc79
Compare
### Description Adds a cosmos-specific config item for setting the minimum gas price, in the format returned by the `cosmos.base.node.v1beta1.Service/Config` cosmos-sdk grpc endpoint. ### Related issues - Fixes hyperlane-xyz/issues#810 ### Backward compatibility No. Will break existing cosmos configs. ### Testing None yet, will test in e2e
Description
Adds a cosmos-specific config item for setting the minimum gas price, in the format returned by the
cosmos.base.node.v1beta1.Service/Config
cosmos-sdk grpc endpoint.Related issues
Backward compatibility
No. Will break existing cosmos configs.
Testing
None yet, will test in e2e