Functions.modifiers()

Returns the Modifiers object for the modifiers of the function.

modifiers() → Modifiers

Query Example

from glider import *


def query():
    modifiers = (
        Functions()
        .with_name("swapTokens")
        .modifiers()
        .exec(5)
    )
 
    return modifiers

Example Output

Last updated