Questions tagged [smart-contract-wallets]

533 questions
2
votes
2 answers

Serious uses for blockchains with smart contracts?

It seems like many of the canonical "use cases" for smart contracts don't hold much water under examination. Typically the issue stems from the fact that the points of contact between the real world and the digital state need to be centrally managed…
jsstuball
  • 121
  • 2
1
vote
1 answer

As a contract owner, how do I remove the ethers from the contract address automatically to my wallet?

As a contract owner, how do I remove the ethers from the contract address automatically to my wallet?Can I have a function that when the contract receives the ethers from the costumer, it automatically sends the ethers to the owner wallet address?
1
vote
1 answer

How the smart wallets handles transactions that are only allowed for EOA?

If after ERC-4337 the wallet is going to be a smart contract, how will it send transactions to smart contracts which only allow to have transactions with EOA?
Ajay Yadav
  • 126
  • 3
1
vote
1 answer

why I'm I getting this error: Wrong argument count for function call: 6 arguments given but expected 5.solidity(6160)

Here's the code. The Emit transfer line (In asterisks) is returning the error // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; contract Transactions { uint256 transactionCount; event Transfer(address from, address receiver,…
zee
  • 13
  • 4
1
vote
2 answers

Seeking insights on account abstraction from experienced developers

I am conducting research on the topic of account abstraction and was wondering if anyone here has experience working with this concept in their projects. I am particularly interested in hearing from developers who have firsthand experience with…
TangChan
  • 11
  • 1
1
vote
0 answers

If in reflection tokens everyone’s balance in a formula, then how is it deducted when the tokens are transferred

In reference to what another user told me Simplified example User A buys 10 tokens. Current Reflection multiplier = 1.0 getBalance(user A) equals 10 * 1.0 = 10 Something happens which increases the reflection multiplier to 1.1 getBalance(user…
Abdul
  • 21
  • 1
1
vote
1 answer

Smartcontract failed (created by scam hacker). Status reverted. Is money gone? please advice

I hope someone can make me a bit wiser because i got scammed by an eth hacker. He promised to help me with another scam. it's a simple case an really appreciate honest advice. This is the smart…
0
votes
1 answer

Smart contracts automatic execution

I've recently started learning about smart contracts and came across this example. Bob and Alice make a bet on the weather tomorrow. The smart contract gets the weather data the next day and automatically pays the winner. My question is what if the…
0
votes
2 answers

How can i get my ETH back? Amateur used smart contract without any knowledge

I'm probably the dumbest guy 2024. I tried a youtube tutorial where a guy showed how to use a smart contract bot to earn some passive income. I copied everything and started it through remix.ide. Everything seemed fine, until I started the…
0
votes
0 answers

Using safe wallet in unity

How to use safe, in an unity app? Consider I don’t want the user come out of the app and get redirected to other places to sign anything. I want the whole process take care in the app
bghad1
  • 1
  • 1
0
votes
2 answers

I am new to smart contracts and I am withdrawing amounts in several lots.My question is do I have to complete before bank transfer

After each transfer.It goes to a wallet address but where I want it go.Does smart contracts hold onto it ,until all withdrawals are complete.
0
votes
2 answers

Warning! Error encountered during contract execution [invalid opcode: PUSH0

While deploying my smart contract, I keep getting this error: Warning! Error encountered during contract execution [invalid opcode: PUSH0 import solcx solcx.install_solc('0.6.0') from solcx import compile_standard import json from web3 import…
sutti
  • 1
  • 2
0
votes
0 answers

I can't transfer my Blockchain portfolio Ballance to metamask wallet

Please I need help with my Blockchain portfolio Ballance to be transferred to metamask wallet address.. I have tried but my funds are not showing up..
0
votes
0 answers

How can you withdraw an unlocked wallet that is holding 74%34 lp

If an unlocked wallet is holding 74.34% of LP and recommended that it should be with pinklock which I did but didn't work out so they any other way to swap back ur coin to BNB
0
votes
1 answer

Error: User Rejected when trying to do connection to Core.app wallet extension on the web browser

I cant configure out why it tells me contract is not defined whenever I call the handleClick function. Heres the code: import React, { createContext, useContext, useEffect, useRef, useState, } from "react"; import { ethers } from…
1
2