Interface BoostCoreOptionsWithPayload

Boost Core instantiation options when a user intends to deploy a new instance of Boost Core, setting their own registry address and protocol fee receiver.

BoostCoreOptionsWithPayload

interface BoostCoreOptionsWithPayload {
    registryAddress: `0x${string}`;
    protocolFeeReceiver: `0x${string}`;
    config: Config;
    account?: Account;
}

Hierarchy (view full)

Properties

registryAddress: `0x${string}`

The address of a deployed Boost Registry contract.

protocolFeeReceiver: `0x${string}`

The address to send fees.

config: Config

Config

account?: Account

Viem Local Account, required if in a Node environment

Account