swapTokenForExactEth method
Implementation
Future<String> swapTokenForExactEth({
required BigInt amountOut,
required BigInt amountInMax,
required List<String> path,
required String to,
required BigInt deadline,
required Uint8List seed,
required String sender,
}) async {
final function = abi.getFunction("swapTokensForExactETH")!;
final result = await interact(
seed: seed,
sender: sender,
function: function
.addValues(values: [amountOut, amountInMax, path, to, deadline]),
);
return result;
}