Mikhail
Mikhail
Should we use skeletons? https://blog.iamsuleiman.com/stop-using-loading-spinner-theres-something-better/
> it sounds like an error notification was shown to the user Yes, it should've been shown. But the problem is mostly about what to do after the notification. Previously...
> Odd that it didn't show It's not odd, this is expected because the backend only indexes transactions that make state changes to the contract. This transaction didn't make any...
> some form of this problem persists after #11: > > ``` > safe.estimate_gas(safe_tx) > File "./ape_safe.py", line 151, in estimate_gas > return self.estimate_tx_gas(safe_tx.to, safe_tx.value, safe_tx.data, safe_tx.operation) > File "gnosis/safe/safe.py",...
an example of such safe https://polygonscan.com/address/0xaC4E2D31D157bB9313F241c79dd41Ad833688E1E
Hey, dev from the Safe team here. We do not support the ethereum transaction `gasLimit` (or, in fact, any other parameters for the ethereum transaction). The wallet will determine them...
> Hi @mikhailxyz, thanks for jumping in. Why are you not supporting any Ethereum transaction parameter ? Isn't that a big blocker for Safe apps development ? Why would it...
> > Why would it be a big blocker? > > Well, if you want to set some values on the transaction like accurate gas prices or wants to overwrite...
> Wallet estimations on gas limit are way too often wrong. Gas limit cannot easily be computed via the classic approach when you are batching transactions and you have several...
> @mikhailxyz thank you for chiming in! I am trying to catch the 803 event(or the error message more closely related to the error occurring) from the Safe to pass...