🟒
volume.li
Telegram
  • πŸ›ΈIntroduction
  • 🧩Step-by-Step Guide
  • πŸ“ƒSmart contract Interaction
  • πŸ“ΊVideo Demo
  • πŸ’―Benefits of Using Volume.li
  • πŸ‡ΈπŸ‡΄Socials
  • Volume Coin
    • πŸ“„Whitepaper
    • βš™οΈUtility
    • πŸ“¦Delegate Pool
    • πŸ›£οΈRoadmap
  • Website Policy
    • Privacy Policy
Powered by GitBook
On this page
  • Smart contract Address
  • Method of interaction

Smart contract Interaction

Interaction method used by the Smart contract and its address.

PreviousStep-by-Step GuideNextVideo Demo

Last updated 11 months ago

Smart contract Address

0xb657fa9443a2db2990D45e93EbD8152C2B2BeB12

Method of interaction

        const iface = new ethers.Interface([
            "function executeTrades(address token, uint256 iterations, uint256 minAmountOut, address[] buyPath, address[] sellPath)"
        ]);
        const data = iface.encodeFunctionData("executeTrades", [tokenAddress, iterations, minAmountOut, buyPath, sellPath]);

        // Send the transaction
        const tx = await wallet.sendTransaction({
            to: contractAddress,
            data: data,
            value: ethers.parseEther('0.00001') // Example amount of ETH to send
        });

πŸ“ƒ
https://basescan.org/address/0xb657fa9443a2db2990d45e93ebd8152c2b2beb12basescan.org
Deployed address on basescan
Page cover image
GitHub - solspec-dev/trade-volume-generator-on-base-chain: This Script allows you to create trade volume for your Uniswap V2 tokens . This is just a byte sized version of the software which is also available as a Dapp https://volume.liGitHub
Logo