func (s *Service) GetCurrentProposals(ctx context.Context, chainID, blockID string) (string, error) {
    req, err := s.Client.NewRequest(ctx, http.MethodGet, "/chains/"+chainID+"/blocks/"+blockID+"/votes/current_proposal", nil)
    if err != nil {
        return "", err
    }