Script untuk automasi wrap, swap, dan unwarp token di Rise Testnet menggunakan proxy & multi-akun. pastikan wrap terlebih dahulu, agar tidak kekurangan amount untuk swap
======================================== █████╗ ██╗ ██╗████████╗ ██████╗ ██╔══██╗██║ ██║╚══██╔══╝██╔═══██╗ ███████║██║ ██║ ██║ ██║ ██║ ██╔══██║██║ ██║ ██║ ██║ ██║ ██║ ██║╚██████╔╝ ██║ ╚██████╔╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═════╝ SAT SET [by Chandra]
=== PILIH FITUR YANG INGIN DIJALANKAN ===
- Wrap ETH ke WETH
- Swap WETH ke USDC
- Swap USDC ke WETH
- Unwarp WETH ke ETH
- Cek saldo semua akun
- Jalankan semua fitur otomatis Masukkan pilihan (1-6):
git clone https://github.com/candra304/guspumpRISE.git
cd guspumpRISE
npm install ethers prompt-sync https-proxy-agent chalk
npm install
-
nano akun.txt -
nano proxy.txt
node index.js
kalo mau ubah amount eth yg di wrap, ubh aja nominal nya di sini
async function wrapETH(wallet) { const weth = new ethers.Contract(WETH, WETH_ABI, wallet); const tx = await weth.deposit({ value: ethers.utils.parseEther("0.0001"), ...GAS_OPTIONS }); await tx.wait();
( bagian 0.0001 ke jumlah yg di inginkan)