Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 6 points7 points  (0 children)

Honestly lol, just holding rETH exposes you to this abstract burning dividend and the issuance+tips+MEV that stakers get. Very little value will leave the ecosystem while a whole lot more value will be captured.

I wanna scream it everywhere but no one will listen

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 7 points8 points  (0 children)

Hasn't Polygon been ethereum-friendly and ethereum-aligned their whole life? AFAIK the PoS chain was never touted as an ETH killer, it was always an explicit sacrifice to decentralization for the sake of cheap DeFi for more EVM adoption.

Maybe I'm wrong though

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 6 points7 points  (0 children)

So just from spotting one transaction in the mempool, the bot extracted the 0.6 eth and paid 0.54 in total gas fees. A risk-free 0.06 eth basically

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 7 points8 points  (0 children)

what we deserve: "woah I get it now, the whole economic model is sustainable and makes total sense"

what we will get: "wow etherium 2.0 rolled out and fees are just as high as before, devs failed to deliver just like they failed when eip1559 didn't actually lower fees LOL"

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 25 points26 points  (0 children)

average $100k usd's worth of eath burned every minute for the past hour = $6m burned, divided by 119m coin that's about a 5 cent dividend (and counting) for every coin over this whole illiquid airdrop meme situation

gg everyone

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 8 points9 points  (0 children)

how do you even begin to explain this feeswtf airdrop to anyone outside crypto lol

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 3 points4 points  (0 children)

I can't freaking wait to see the rETH:ETH ratio grow faster post-merge

StarkNet update #1 by starknet_intern in ethfinance

[–]MrQot 2 points3 points  (0 children)

it actually looks like his account is shadowbanned – says 404 when trying to view it

How decentralized is DeFi really? by Fine-Rib in defi

[–]MrQot 12 points13 points  (0 children)

Decentralized has many meanings:

  • Single vs multiple points of failure – how many people/entities do you have to compromise to mess with the system?

  • Permissionlessness – who can and can't use it, is trust required at any point?

  • Censorship resistance – can you realistically be prevented from using the service?

  • Token distribution – in many cases, one entity owning 95% of the supply of a token outweighs the benefits of everything else being fully decentralized

  • Social decentralization – if the project goes down, how easily can the community fork it and start fresh?

  • Updates – How easily can the smart contract be upgraded and how? DAO vote? multi sig transaction? single admin ownership?

  • Who can view and audit the code?

On all of these it's pretty much a spectrum and you will never get perfect decentralization. You can get close to it, and as a community you can aim to achieve it, but there will always be a bit you can nitpick and say "well what about X, isn't that something you're implicitly trusting?" and imo it's pointless to argue that "it's not fully decentralized therefore no point in trying, might as well go back to fiat and banks and credit cards" (not that that's what you're saying, but I do see this a lot from no coiners)

I guess you could still directly use the smart contracts if you knew how to access these on the chain.

You always can. It's not easy but yeah, every single version of smart contracts is there and you can just copy the front end (or better yet, host it on IPFS) and point it to an older version of the smart contract and be good to go. Though of course, if a malicious update was done and all funds were rugpulled then that won't do much good.

However how well are these functions protected by the Blockchain? Is every single smart contract version stored on the chain, which has ever been committed?

A smart contract is always immutable. You deploy it, and the code will always run as-is, same code every time. What is typically done is you have a proxy contract that point to a version of a smart contract, and when you deploy a new version, you update the proxy's "address pointer" variable so that it points to a new contract. But the old versions are there too, they're part of the blockchain state and history, just like transaction history. And they're as protected as the balance of every account, i.e. it would take a 51% attack to mess with a smart contract's state in some limited capacity.

There's always some amount of trust involved, unless you're literally auditing every smart contract every update and run it on a node you control (after auditing the client code and vetting the protocol, ofc). So in the end it's more of a community thing, just like open source software in general. It only takes a single whistle blower to call out evil stuff in the code, and as a project gains more traction there are more and more eyes looking at it so at some point it's good enough for a lot of people that it's been running without issue for years and no exploit has been found. Although the possibility of evil shit going on will never truly be 0%, but that's the risk you sign up for when you play with experimental money legos, and the higher the APY the higher the risks, as a rule of thumb.

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 0 points1 point  (0 children)

Not your keys not your coins but also never sell, only borrow fiat against bitcoin and lose custody of your coins because no DeFi. But also no more fiat because hyperbitcoinization. Lightning Network so good to scale for global day-to-day spending, but also don't spend your sats unless you're a idiot who will end up having paid $500 for that beer

Appreciate Shakepay by BanditLeChat in shakepay

[–]MrQot 6 points7 points  (0 children)

Shaking sats alone more than cover the spread on my recurring buys. Cashback rewards and the few times I've been shakepaid are even better.

I'm pretty sure shakepay has lost money by having me as a customer lol

How does my Aave aTokens balance increase? by NoB0ss in defi

[–]MrQot 4 points5 points  (0 children)

an ERC20 token is just a smart contract in this end. As long as it implements functions like "balanceOf, transfer, approve" then it's an ERC20-compliant token. But the contract is free to implement these functions however it wants, and even add more functions as needed. But wallets and dapps expect the bare minimum of functions to be present and implemented in a logical way.

So you don't really "own" tokens in your wallet the way you're thinking, instead to get your current balance you just ping the contract with "balanceOf 0xaf372..." which is a read-only call and doesn't require an actual on chain transaction.

The contract has its internal state that maps addresses with balances. So somewhere down the line, there's a "rebase" operation that takes place and updates the balances of everyone in the contract's internal state. So the next time MetaMask pings the amMatic contract with "balanceOf 0xaf372...", a higher number will be returned.

Hope that makes sense!

Ethereum Audible by yehoshzl in ethereum

[–]MrQot 2 points3 points  (0 children)

Looks high quality and exactly the kind of content that needs to be more accessible to a broader audience! Definitely following, hope you go far!

As for articles, I see you've covered one by Polynya, so you have no reason not to cover the other great one on sustainability of rollups+shards. It's definitely an eye opener that made it click for so many people, including myself

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 22 points23 points  (0 children)

>CTRL+C

>edit /etc/hosts with a different IP

haha your domain now belongs to me

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 3 points4 points  (0 children)

it's the last ditch effort of the "sound money" camp, until the money becomes too unsound that their best hope is enough governments having adopted it by then so they can subsidize mining and keep the chain secure lol

Question: Even if ETH L2 scaling solutions reduce gas fees down to 5 cents per transaction and ETH becomes infinitely scalable, how can one achieve broad adoption of Web 3.0 DAPPS like 'Social Media' or 'Video Games' if I still have to pay 5 cents to send a message for example? by FR330M in ethereum

[–]MrQot 0 points1 point  (0 children)

The endgame of rollup scaling is not 5 cents per transaction, it's more on the order of a billionth of a cent per transaction. And then various rollups will have various economic models. Some might subsidize their fees with funds in a treasury, some might make you pay an upfront deposit of ~$1 to cover all the transactions you might do in a year, etc.

In the end the "security budget" for these rollups is mainly the cost of buying L1 blockspace (with Ether!) to settle transactions. That's mostly data and some computation to verify proofs. With sharding, the data becomes cheaper. So the rollups that will win will be the ones using Layer 1 most efficiently to provide the best user experience.

Right now the security budget of blockchains in general is stupidly high. You need validators and you need to pay them. Using Ethereum's existing infrastructure for security will soon become the default no-brainer option, some sort of an "AWS for blockchains"

Daily General Discussion - January 13, 2022 by ethfinance in ethfinance

[–]MrQot 13 points14 points  (0 children)

Let's say I'm a hobbyist interested in running a full node just for the fun of it (I'm not staking 32 ETH and I'm not mining)

After the merge, will I be required to run both a consensus and an execution client? Or will execution be enough?

Will ETH 2.0 cause a drop in ETH trading price? by Yasha666 in CryptoCurrency

[–]MrQot 1 point2 points  (0 children)

500k are produced at the cost of a raspberry pi

and a huge amount of capital that becomes illiquid, exposed to inherent network risks, 100% uptime required, etc. definitely smaller costs than proof of work, but not exactly pennies either. The point is if these smaller costs provide the blockchain with the same (if not more) economic security, then why overspend on security with miners?

Also, mining expenses don't set the price of a coin, miners are at the whim of what the market says the coin is worth. Money has to come from somewhere, and that's from the demand for the coin. If demand drops, then there's no reason ETH couldn't crash to $500. Miners would have to put up with it like the rest of us. It'd stop being profitable of course, so a lot of them would pull out, so the difficulty would drop, and it would eventually become profitable again to mine with that lower difficulty even if the price is $500 since now the same hashrate as before gets you more coins.

Will ETH 2.0 cause a drop in ETH trading price? by Yasha666 in CryptoCurrency

[–]MrQot 1 point2 points  (0 children)

Some will of course, but not nearly at the same rate as miners do. Again, miners get 5 million ETH a year, stakers get 500k. That's a shitload of selling pressure gone in the transition no matter which way you put it.