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

adeceitz 发布于 2022-05-31 阅读 5433

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

相关文章

6 条评论

怎么用啊

2022-05-31 17:15

其他几个测试网的有吗?

2022-05-31 23:42

现在薅出来的还不够gas费

2022-06-01 10:26
joy

是啊 刷1000次还不够手续费感觉,有问题啊

2022-06-01 14:18

刷uni的地方,每1000次后就少10%,后面越来越少。 等我收手的时候,一次还能刷15个eth。 我都发出来了,用的人多了,肯定就没了。你们也可以刷刷其他网/其他币,也许能找到没被人刷的。 而且你们都不点赞的。一堆白嫖怪。

2022-06-01 14:56
adeceitz 回复 Roning

哈哈,来晚了。已经被薅秃了。

2022-06-01 14:57