记一次薅取大量ropsten测试币(内附合约源码和方法)

  • adeceitz
  • 更新于 2022-05-31 12:28
  • 阅读 3107

ropsten的uniswap有uni的空投,一次领一点,但是可以写个合约,一次领1000次。然后拿去uniswap里卖掉。 我刷了2500个eth 之前刷一遍可以领550个eth。 现在刷一遍大概可以领15个。 其他网其...

ropsten的uniswap有uni的空投,一次领一点,但是可以写个合约,一次领1000次。然后拿去uniswap里卖掉。 我刷了2500个eth 之前刷一遍可以领550个eth。 现在刷一遍大概可以领15个。 其他网其他币我也调查过了,没有ropsten的uni刷的爽。

空投地址:0x9C3F0FC85EF9144412388e7E952eb505e2c4a10F uni地址:0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 下面合约源码。

pragma solidity >0.8.0;

interface Fauceteer{
    function drip(address token) external;
    function balanceOf(address owner) external view returns (uint256 balance);
    function transfer(address dst, uint256 amount) external;
}
contract GET_UIN {
    constructor(){}
    function test(address add,address token,uint j)public{
        for(uint256 i=0;i<j;i++)
        Fauceteer(add).drip(token);
        Fauceteer(token).transfer(msg.sender,Fauceteer(token).balanceOf(address(this)));
    }
}

刷取记录:https://ropsten.etherscan.io/tx/0xc6d2b65795555679189b0c72127b7f871760e43c6d1a85edeb2de6480ca3b4bb 73UW7UGDI541N9OMJ.png 获取eth记录: https://ropsten.etherscan.io/tx/0xa26057936a6778487312d7a98a2c72c2684d8a24c5b7f352652dfe7d9ddaeb49 CNJN9D31KLU5OEALB.png

点赞 4
收藏 4
分享
本文参与登链社区写作激励计划 ,好文好收益,欢迎正在阅读的你也加入。

6 条评论

请先 登录 后评论
adeceitz
adeceitz
0x8C32...80e2
接收100U以上的有偿提问