You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The structs could be grouped together in something like this
type QueryMsg struct {
FinalityProvider *FinalityProviderQuery `json:"finality_provider,omitempty"`
// Add other query types here as needed
// For example:
// Delegation *DelegationQuery `json:"delegation,omitempty"`
// ValidatorSet *ValidatorSetQuery `json:"validator_set,omitempty"`
}
type QueryResponse struct {
FinalityProvider *FinalityProviderResponse `json:"finality_provider,omitempty"`
// Add other response types here as needed
// For example:
// Delegation *DelegationResponse `json:"delegation,omitempty"`
// ValidatorSet *ValidatorSetResponse `json:"validator_set,omitempty"`
}
type FinalityProviderResponse struct {
// Fields for finality provider response
}
// Define other response structs here
The text was updated successfully, but these errors were encountered:
The structs could be grouped together in something like this
The text was updated successfully, but these errors were encountered: