WorryFree Computers   »   [go: up one dir, main page]

Skip to main content

Get the Reddit app

Scan this QR code to download the app now
Or check it out in the app stores
r/etherscan icon
r/etherscan icon

r/etherscan

members
online

Is Etherscan-web3 Liquidity Pool a scam? Is Etherscan-web3 Liquidity Pool a scam?

Hi, i have been buying USDT to invest/deposit crypto into the Etherscan-Web3 liquidity pool with a daily return of 0.03%.
About a week ago i heard about a "New user event", where you get a bonus after depositing more USDT. For example, if i deposit 10.000 USDT i will get a bonus of 3000 USDT.
Over the past month i have been getting a steady 0.03 percentage on my deposits but I wonder if it is all too good to be true.

Has anybody had an experience with this particular liquidity pool and what advice would you give a person who doesn't know much about crypto but simply wants to invest and watch the money grow?

Thank you in advance.






Got Hacked Got Hacked

Very sadly, my wallet got hacked yesterday, then someone stole my ETH.

Is there anything I should report etherscan.io to recover it and/or to warn other users?

It was not through any phishing web site, but my installation of malware info my Mac and my secret recovery phrase got leaked from my local private memo. The source of this malware, named Launcher app, was downloaded from https://www.x-plus.social . I was invited there by a direct message from https://x.com/gyukatsu_btc .

I know this caused by my two mistakes, stored the pass phrase in a local file, and installed a suspicious software. Don't do the same as me.







Poloniex hacked my MAGA token Poloniex hacked my MAGA token

TxID 0x9473334de08f3782946906b540b859236198c3e00ef655b5d3c91a5ad8ae263f Deposited 5363200 MAGA token on 21 st May 2024 from Bitmart to Poloniex but still today I did not received my token , contacted support for help multiple timesbut didn't get any satisfactory response ,poloniex team hacked my fund and deposited to their wallet address tx id 0x2de3ba01c46b3cafc106a1735b7d567d455c0469cf6ba67bdcf5c698a1fd8b7a .Now what shall i do pls anyone can help me.


Gas Estimate error Gas Estimate error
https://preview.redd.it/gas-estimate-error-v0-9lvm69qj103d1.png
  const { walletProvider } = useWeb3ModalProvider();
  const { address, isConnected } = useWeb3ModalAccount();

  const handleDeposit = async (): Promise<void> => {
    if (!isConnected) throw new Error("User disconnected");

    const ethersProvider = new BrowserProvider(walletProvider!);
    const signer = await ethersProvider.getSigner();
    const contract = new Contract(ContractAddress, ContractAbi, signer);

    try {
      // Type assertion to ensure TypeScript knows depositFor is a function
      const depositFor = contract.depositFor as (
        address: string,
        params: { depositFor: number },
      ) => Promise<void>;
      if (depositFor) {
        const tx = await depositFor(address!, {
          depositFor: 0.2,
        });
        console.log("tx", tx);
      } else {
        throw new Error("Method depositFor does not exist on the contract");
      }
    } catch (error) {
      console.error("Error during deposit", error);
    }
  };

I am using ethers.js v6 and getting this error I am using next js and ethers.js