interface CustomSuperTokenBaseMock {
    callStatic: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<void>;
        callSelfBurn(to, amount, userData, overrides?): Promise<void>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<void>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<BigNumber>;
        initializeProxy(initialAddress, overrides?): Promise<void>;
    };
    estimateGas: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<BigNumber>;
        callSelfBurn(to, amount, userData, overrides?): Promise<BigNumber>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<BigNumber>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<BigNumber>;
        initializeProxy(initialAddress, overrides?): Promise<BigNumber>;
    };
    filters: {};
    functions: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<ContractTransaction>;
        callSelfBurn(to, amount, userData, overrides?): Promise<ContractTransaction>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<ContractTransaction>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<[BigNumber] & {
            slot: BigNumber;
        }>;
        initializeProxy(initialAddress, overrides?): Promise<ContractTransaction>;
    };
    interface: CustomSuperTokenBaseMockInterface;
    off: OnEvent<CustomSuperTokenBaseMock>;
    on: OnEvent<CustomSuperTokenBaseMock>;
    once: OnEvent<CustomSuperTokenBaseMock>;
    populateTransaction: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<PopulatedTransaction>;
        callSelfBurn(to, amount, userData, overrides?): Promise<PopulatedTransaction>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<PopulatedTransaction>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<PopulatedTransaction>;
        initializeProxy(initialAddress, overrides?): Promise<PopulatedTransaction>;
    };
    removeListener: OnEvent<CustomSuperTokenBaseMock>;
    attach(addressOrName): this;
    callSelfApproveFor(account, spender, amount, overrides?): Promise<ContractTransaction>;
    callSelfBurn(to, amount, userData, overrides?): Promise<ContractTransaction>;
    callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<ContractTransaction>;
    connect(signerOrProvider): this;
    deployed(): Promise<CustomSuperTokenBaseMock>;
    getFirstCustomTokenStorageSlot(overrides?): Promise<BigNumber>;
    initializeProxy(initialAddress, overrides?): Promise<ContractTransaction>;
    listeners<TEvent>(eventFilter?): TypedListener<TEvent>[];
    listeners(eventName?): Listener[];
    queryFilter<TEvent>(event, fromBlockOrBlockhash?, toBlock?): Promise<TEvent[]>;
    removeAllListeners<TEvent>(eventFilter): this;
    removeAllListeners(eventName?): this;
}

Hierarchy

  • BaseContract
    • CustomSuperTokenBaseMock

Properties

callStatic: {
    callSelfApproveFor(account, spender, amount, overrides?): Promise<void>;
    callSelfBurn(to, amount, userData, overrides?): Promise<void>;
    callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<void>;
    getFirstCustomTokenStorageSlot(overrides?): Promise<BigNumber>;
    initializeProxy(initialAddress, overrides?): Promise<void>;
}

Type declaration

  • callSelfApproveFor:function
    • Parameters

      • account: string
      • spender: string
      • amount: BigNumberish
      • Optional overrides: CallOverrides

      Returns Promise<void>

  • callSelfBurn:function
    • Parameters

      • to: string
      • amount: BigNumberish
      • userData: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<void>

  • callSelfTransferFrom:function
    • Parameters

      • holder: string
      • spender: string
      • recipient: string
      • amount: BigNumberish
      • Optional overrides: CallOverrides

      Returns Promise<void>

  • getFirstCustomTokenStorageSlot:function
    • Parameters

      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

  • initializeProxy:function
    • Parameters

      • initialAddress: string
      • Optional overrides: CallOverrides

      Returns Promise<void>

estimateGas: {
    callSelfApproveFor(account, spender, amount, overrides?): Promise<BigNumber>;
    callSelfBurn(to, amount, userData, overrides?): Promise<BigNumber>;
    callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<BigNumber>;
    getFirstCustomTokenStorageSlot(overrides?): Promise<BigNumber>;
    initializeProxy(initialAddress, overrides?): Promise<BigNumber>;
}

Type declaration

  • callSelfApproveFor:function
    • Parameters

      • account: string
      • spender: string
      • amount: BigNumberish
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

  • callSelfBurn:function
    • Parameters

      • to: string
      • amount: BigNumberish
      • userData: BytesLike
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

  • callSelfTransferFrom:function
    • Parameters

      • holder: string
      • spender: string
      • recipient: string
      • amount: BigNumberish
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

  • getFirstCustomTokenStorageSlot:function
    • Parameters

      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

  • initializeProxy:function
    • Parameters

      • initialAddress: string
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

filters: {}

Type declaration

    functions: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<ContractTransaction>;
        callSelfBurn(to, amount, userData, overrides?): Promise<ContractTransaction>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<ContractTransaction>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<[BigNumber] & {
            slot: BigNumber;
        }>;
        initializeProxy(initialAddress, overrides?): Promise<ContractTransaction>;
    }

    Type declaration

    • callSelfApproveFor:function
      • Parameters

        • account: string
        • spender: string
        • amount: BigNumberish
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    • callSelfBurn:function
      • Parameters

        • to: string
        • amount: BigNumberish
        • userData: BytesLike
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    • callSelfTransferFrom:function
      • Parameters

        • holder: string
        • spender: string
        • recipient: string
        • amount: BigNumberish
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    • getFirstCustomTokenStorageSlot:function
      • Parameters

        • Optional overrides: CallOverrides

        Returns Promise<[BigNumber] & {
            slot: BigNumber;
        }>

    • initializeProxy:function
      • Parameters

        • initialAddress: string
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    interface: CustomSuperTokenBaseMockInterface
    populateTransaction: {
        callSelfApproveFor(account, spender, amount, overrides?): Promise<PopulatedTransaction>;
        callSelfBurn(to, amount, userData, overrides?): Promise<PopulatedTransaction>;
        callSelfTransferFrom(holder, spender, recipient, amount, overrides?): Promise<PopulatedTransaction>;
        getFirstCustomTokenStorageSlot(overrides?): Promise<PopulatedTransaction>;
        initializeProxy(initialAddress, overrides?): Promise<PopulatedTransaction>;
    }

    Type declaration

    • callSelfApproveFor:function
      • Parameters

        • account: string
        • spender: string
        • amount: BigNumberish
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    • callSelfBurn:function
      • Parameters

        • to: string
        • amount: BigNumberish
        • userData: BytesLike
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    • callSelfTransferFrom:function
      • Parameters

        • holder: string
        • spender: string
        • recipient: string
        • amount: BigNumberish
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    • getFirstCustomTokenStorageSlot:function
      • Parameters

        • Optional overrides: CallOverrides

        Returns Promise<PopulatedTransaction>

    • initializeProxy:function
      • Parameters

        • initialAddress: string
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    removeListener: OnEvent<CustomSuperTokenBaseMock>

    Methods

    • Parameters

      • addressOrName: string

      Returns this

    • Parameters

      • account: string
      • spender: string
      • amount: BigNumberish
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Parameters

      • to: string
      • amount: BigNumberish
      • userData: BytesLike
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Parameters

      • holder: string
      • spender: string
      • recipient: string
      • amount: BigNumberish
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Parameters

      • signerOrProvider: string | Signer | Provider

      Returns this

    • Returns Promise<CustomSuperTokenBaseMock>

    • Parameters

      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

    • Parameters

      • initialAddress: string
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • Optional eventFilter: TypedEventFilter<TEvent>

      Returns TypedListener<TEvent>[]

    • Parameters

      • Optional eventName: string

      Returns Listener[]

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • event: TypedEventFilter<TEvent>
      • Optional fromBlockOrBlockhash: string | number
      • Optional toBlock: string | number

      Returns Promise<TEvent[]>

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • eventFilter: TypedEventFilter<TEvent>

      Returns this

    • Parameters

      • Optional eventName: string

      Returns this

    Generated using TypeDoc