Contracts.with_address()
Adds a filter to get contracts associated with the given address.
Query Example
from glider import *
def query():
return (
Contracts()
.with_address("0xdbEea69930D24988091b59f73B7898e7b0E9406F")
.exec(1)
)
Example Output

Last updated