Contracts.with_name_not()

Adds a filter to get contracts that don't have the given name.

with_name_not(name: str, sensitivity: bool = True) β†’ Contracts

Query Example

from glider import *

def query():
  contracts = Contracts().with_name_not("Context").exec(1)

  return contracts

Output Example

{
    {
        "contract": "0xd705c24267ed3c55458160104994c55c6492dfcf",
        "contract_name": "IERC20"
    }
}

Last updated