swapExactTokenForTokensTx method

Future<RawEvmTransaction> swapExactTokenForTokensTx({
  1. required BigInt amountIn,
  2. required BigInt amountOutMin,
  3. required List<String> path,
  4. required String to,
  5. required BigInt deadline,
  6. required String sender,
})

Implementation

Future<RawEvmTransaction> swapExactTokenForTokensTx({
  required BigInt amountIn,
  required BigInt amountOutMin,
  required List<String> path,
  required String to,
  required BigInt deadline,
  required String sender,
}) async {
  final function = abi.getFunction("swapExactTokensForTokens")!;

  final result = await buildTransactionForFunction(
    sender: sender,
    function: function
        .addValues(values: [amountIn, amountOutMin, path, to, deadline]),
  );

  return result;
}