Farm Facet

The Farm Facet allows Farmers to perform multiple Beanstalk functions calls in a single transaction using farm calls.

Call Functions

function farm(bytes[] calldata data)
    external
    payable
    withEth
    returns (bytes[] memory results);

Loops through the list of encoded selectors in data and performs a delegateCall on each of them.

ParameterTypeDescription

data

bytes[]

The encoded function data for each of the calls.

Return ValueTypeDescription

results

bytes[]

The return data from each of the calls.

function advancedFarm(AdvancedFarmCall[] calldata data)
    external
    payable
    withEth
    returns (bytes[] memory results);

Execute multiple AdvancedFarmCalls.

ParameterTypeDescription

data

AdvancedFarmCall[]

The encoded function data for each of the calls to make to this contract.

Return ValueTypeDescription

results

bytes[]

The results from each of the calls passed in via data.

View Functions

None.

Events

None.

Last updated