Adds a filter to get contracts whose compilation version is in the given range.
Last updated 7 days ago
with_compiler_range(lower_bound: str, upper_bound: str) -> Contracts
with_compiler_range(lower_bound: str, upper_bound: str) ->
Contracts
from glider import * def query(): contracts = Contracts().with_compiler_range("0.4.20", "0.4.24").exec(3) for contract in contracts: print(contract.pragmas()) return contracts