Type alias Bundlerconfig

Bundlerconfig: {
    bundlerUrl: string;
    chainId?: number;
    customChain?: Chain;
    entryPointAddress?: string;
    userOpReceiptIntervals?: {
        [key in number]?: number
    };
    userOpReceiptMaxDurationIntervals?: {
        [key in number]?: number
    };
    userOpWaitForTxHashIntervals?: {
        [key in number]?: number
    };
    userOpWaitForTxHashMaxDurationIntervals?: {
        [key in number]?: number
    };
    viemChain?: Chain;
}

Type declaration

  • bundlerUrl: string
  • Optional chainId?: number
  • Optional customChain?: Chain

    Can be used to optionally override the chain with a custom chain if it doesn't already exist in viems list of supported chains. Alias of viemChain

  • Optional entryPointAddress?: string
  • Optional userOpReceiptIntervals?: {
        [key in number]?: number
    }
  • Optional userOpReceiptMaxDurationIntervals?: {
        [key in number]?: number
    }
  • Optional userOpWaitForTxHashIntervals?: {
        [key in number]?: number
    }
  • Optional userOpWaitForTxHashMaxDurationIntervals?: {
        [key in number]?: number
    }
  • Optional viemChain?: Chain

    Can be used to optionally override the chain with a custom chain if it doesn't already exist in viems list of supported chains. Alias of customChain