Hierarchy (View Summary)

Constructors

Properties

callStatic: {
    contract: ERC20Bytes;
    approve(
        spender: string,
        value: BigNumberish,
        overrides?: Overrides,
        preparedData?: PreparedData,
        ethCallContext?: EthCallContext,
    ): Promise<boolean>;
    transfer(
        to: string,
        value: BigNumberish,
        overrides?: Overrides,
        preparedData?: PreparedData,
        ethCallContext?: EthCallContext,
    ): Promise<boolean>;
    transferFrom(
        from: string,
        to: string,
        value: BigNumberish,
        overrides?: Overrides,
        preparedData?: PreparedData,
        ethCallContext?: EthCallContext,
    ): Promise<boolean>;
} = ...
contract: ERC20Bytes
encodeCall: {
    allowance(
        owner: string,
        spender: string,
        callContext: EthCallContext,
    ): EthCallParam;
    approve(
        spender: string,
        value: BigNumberish,
        callContext: EthCallContext,
    ): EthCallParam;
    balanceOf(who: string, callContext: EthCallContext): EthCallParam;
    decimals(callContext: EthCallContext): EthCallParam;
    name(callContext: EthCallContext): EthCallParam;
    symbol(callContext: EthCallContext): EthCallParam;
    totalSupply(callContext: EthCallContext): EthCallParam;
    transfer(
        to: string,
        value: BigNumberish,
        callContext: EthCallContext,
    ): EthCallParam;
    transferFrom(
        from: string,
        to: string,
        value: BigNumberish,
        callContext: EthCallContext,
    ): EthCallParam;
} = ...

Accessors

Methods

  • Parameters

    Returns Promise<bigint>

  • Parameters

    Returns Promise<bigint>

  • Parameters

    Returns Promise<bigint>

  • Parameters

    Returns Promise<string>

  • Parameters

    Returns Promise<string>

  • Parameters

    Returns Promise<bigint>