Function pool_sync::filter::LiquidityFilter::deploy

source ยท
pub fn deploy<T: Transport + Clone, P: Provider<T, N>, N: Network>(
    provider: P,
    pools: Vec<Address>,
    dexes: Vec<Address>,
    dexIsUniV3: Vec<bool>,
    weth: Address,
    wethInPoolThreshold: U256,
) -> impl Future<Output = Result<LiquidityFilterInstance<T, P, N>>>
Expand description

Deploys this contract using the given provider and constructor arguments, if any.

Returns a new instance of the contract, if the deployment was successful.

For more fine-grained control over the deployment process, use deploy_builder instead.