Interface DescriberRegisitry

interface DescriberRegisitry {
    [internal]: any;
    describer_versions: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
    fallback: null | WrappedFallback;
    filters: {
        ModifyDescriber: TypedContractEvent<ModifyDescriberEvent.InputTuple, ModifyDescriberEvent.OutputTuple, ModifyDescriberEvent.OutputObject>;
        ModifyDescriber(address,string): TypedContractEvent<ModifyDescriberEvent.InputTuple, ModifyDescriberEvent.OutputTuple, ModifyDescriberEvent.OutputObject>;
    };
    getVaultDescribers: TypedContractMethod<[], [CatalystDescriberRegistry.AddressAndVersionStructOutput[]], "view">;
    get_vault_describers: TypedContractMethod<[], [string[]], "view">;
    initBlock: TypedContractMethod<[], [bigint], "view">;
    interface: DescriberRegisitryInterface;
    modifyDescriber: TypedContractMethod<[describer_address: AddressLike, version: string], [void], "nonpayable">;
    owner: TypedContractMethod<[], [string], "view">;
    removeDescriber: TypedContractMethod<[describer_to_remove: AddressLike, version: string], [void], "nonpayable">;
    renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
    runner: null | ContractRunner;
    target: string | Addressable;
    transferOwnership: TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
    addListener(event, listener): Promise<DescriberRegisitry>;
    attach(target): BaseContract;
    connect(runner?): DescriberRegisitry;
    deploymentTransaction(): null | ContractTransactionResponse;
    emit(event, ...args): Promise<boolean>;
    getAddress(): Promise<string>;
    getDeployedCode(): Promise<null | string>;
    getEvent(key): TypedContractEvent<ModifyDescriberEvent.InputTuple, ModifyDescriberEvent.OutputTuple, ModifyDescriberEvent.OutputObject>;
    getFunction<T>(key): T;
    getFunction(nameOrSignature): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
    getFunction(nameOrSignature): TypedContractMethod<[], [CatalystDescriberRegistry.AddressAndVersionStructOutput[]], "view">;
    getFunction(nameOrSignature): TypedContractMethod<[], [string[]], "view">;
    getFunction(nameOrSignature): TypedContractMethod<[], [bigint], "view">;
    getFunction(nameOrSignature): TypedContractMethod<[describer_address: AddressLike, version: string], [void], "nonpayable">;
    getFunction(nameOrSignature): TypedContractMethod<[], [string], "view">;
    getFunction(nameOrSignature): TypedContractMethod<[describer_to_remove: AddressLike, version: string], [void], "nonpayable">;
    getFunction(nameOrSignature): TypedContractMethod<[], [void], "nonpayable">;
    getFunction(nameOrSignature): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
    listenerCount(event?): Promise<number>;
    listeners<TCEvent>(event): Promise<TypedListener<TCEvent>[]>;
    listeners(eventName?): Promise<Listener[]>;
    off(event, listener?): Promise<DescriberRegisitry>;
    on<TCEvent>(event, listener): Promise<DescriberRegisitry>;
    on<TCEvent>(filter, listener): Promise<DescriberRegisitry>;
    once<TCEvent>(event, listener): Promise<DescriberRegisitry>;
    once<TCEvent>(filter, listener): Promise<DescriberRegisitry>;
    queryFilter<TCEvent>(event, fromBlockOrBlockhash?, toBlock?): Promise<TypedEventLog<TCEvent>[]>;
    queryFilter<TCEvent>(filter, fromBlockOrBlockhash?, toBlock?): Promise<TypedEventLog<TCEvent>[]>;
    queryTransaction(hash): Promise<EventLog[]>;
    removeAllListeners<TCEvent>(event?): Promise<DescriberRegisitry>;
    removeListener(event, listener): Promise<DescriberRegisitry>;
    waitForDeployment(): Promise<DescriberRegisitry>;
}

Hierarchy

  • BaseContract
    • DescriberRegisitry

Properties

[internal]: any

@_ignore:

describer_versions: TypedContractMethod<[arg0: BigNumberish], [string], "view">
fallback: null | WrappedFallback

The fallback or receive function if any.

get_vault_describers: TypedContractMethod<[], [string[]], "view">
initBlock: TypedContractMethod<[], [bigint], "view">
modifyDescriber: TypedContractMethod<[describer_address: AddressLike, version: string], [void], "nonpayable">
owner: TypedContractMethod<[], [string], "view">
removeDescriber: TypedContractMethod<[describer_to_remove: AddressLike, version: string], [void], "nonpayable">
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">
runner: null | ContractRunner

The connected runner. This is generally a [[Provider]] or a [[Signer]], which dictates what operations are supported.

For example, a Contract connected to a [[Provider]] may only execute read-only operations.

target: string | Addressable

The target to connect to.

This can be an address, ENS name or any [[Addressable]], such as another contract. To get the resovled address, use the getAddress method.

transferOwnership: TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">

Methods

  • Alias for [on].

    Parameters

    • event: ContractEventName
    • listener: Listener

    Returns Promise<DescriberRegisitry>

  • Return a new Contract instance with the same ABI and runner, but a different %%target%%.

    Parameters

    • target: string | Addressable

    Returns BaseContract

  • Return the transaction used to deploy this contract.

    This is only available if this instance was returned from a [[ContractFactory]].

    Returns null | ContractTransactionResponse

  • Emit an %%event%% calling all listeners with %%args%%.

    Resolves to true if any listeners were called.

    Parameters

    • event: ContractEventName
    • Rest ...args: any[]

    Returns Promise<boolean>

  • Return the resolved address of this Contract.

    Returns Promise<string>

  • Return the deployed bytecode or null if no bytecode is found.

    Returns Promise<null | string>

  • Resolves to the number of listeners of %%event%% or the total number of listeners if unspecified.

    Parameters

    • Optional event: ContractEventName

    Returns Promise<number>

  • Remove the %%listener%% from the listeners for %%event%% or remove all listeners if unspecified.

    Parameters

    • event: ContractEventName
    • Optional listener: Listener

    Returns Promise<DescriberRegisitry>

  • @_ignore:

    Parameters

    • hash: string

    Returns Promise<EventLog[]>

  • Alias for [off].

    Parameters

    • event: ContractEventName
    • listener: Listener

    Returns Promise<DescriberRegisitry>