Contracts.with_compiler_range_not()
Adds a filter to get contracts whose compilation version isn't in the given range.
Query Example
from glider import *
def query():
contracts = Contracts().with_compiler_range_not("0.8.0", "0.8.11").exec(3)
for contract in contracts:
print(contract.pragmas())
return contractsOutput Example

Last updated