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
chore(network-subgraphs): Sponsorship#minOperators is not nullable (#1004)
Annotated the field as non-nullable in the GraphQL schema. The argument
type for the field is `uint` in the
`SponsorshipFactory#deploySponsorship`, and therefore it can't hold
`null` value:
```solidity
function deploySponsorship(
uint minOperatorCount,
string calldata streamId,
string calldata metadata,
address[] calldata policies,
uint[] calldata policyParams
)
```
0 commit comments