mngo

8.6K posts

mngo banner
mngo

mngo

@yieldling

Mostly Not Going Out. Website: https://t.co/rG8Axgqnse Discord: https://t.co/WkzegvOcgW

Pera Entertainment Category Katılım Temmuz 2021
2.7K Takip Edilen10.8K Takipçiler
mngo retweetledi
Ibuyjunk
Ibuyjunk@GregOry2027221·
Opened 30 chests unlocked from doing Mostly Friends quests and collected a Chic Cheetah!! Wasn't expecting that, what a great surprise! Also scored 135,000 Grass and a bunch of shrimp! Bottom line, I need more M.N.G.O's & Mostly Friends! #NFT $Algo @yieldling @Its_Ha_Dost
Ibuyjunk tweet media
English
1
3
14
161
mngo retweetledi
GFY.algo
GFY.algo@baggyGFY·
Shoutout to @yieldling - still here and pushing out content in Algorand 🙌🏽 I guess it’s easy when you build on a chain that does what it says it’ll do, leaving the hard stuff to run on autopilot. But the consistency is what my shoutout’s for- you’re still here checking in daily 🍻
GFY.algo tweet mediaGFY.algo tweet media
English
0
4
12
244
Barb
Barb@BarcTheShark·
Algorand or Hedera?
Español
100
4
63
9.8K
mngo
mngo@yieldling·
failed my shrimp test TWICE
English
1
1
2
148
mngo
mngo@yieldling·
@APproctor dam son where did u get that
English
1
0
1
29
appe
appe@APproctor·
wait these are cooler than looking at charts
GIF
English
1
0
3
42
mngo retweetledi
D13
D13@d13_co·
Account abstraction, now. On Algorand, logic-as-account-authorizer is a primitive account type (Logic Signature.) Among other things, it powers our PQ/FALCON accounts. Cross-chain account abstraction, soon. We are working on an EVM-to-AVM account abstraction system. This means that you'll be able to use your Metam*sk, Rainbow or any EVM wallet to interact with Algorand dApps natively. - SELF CUSTODIAL - your Algorand abstracted account is a piece of code that validates your EVM/ECDSA account signature. Only your private key can authorize transactions. - ISOLATED - what happens on Algorand, stays on Algorand. You approve Algorand transactions from your EVM wallet in an explicitly isolated Algorand domain (Structured Signing / EIP-712) . This ensures that there are no opportunities for inadvertent crossover - these signatures are useless on EVM else by design. - EASY TO INTEGRATE for Algo devs - we extended @txnlab/use-wallet to support Rainbowkit, bringing ~all EVM wallets to any Algorand dApp with a few lines of config. - NOT JUST A STANDARD we are throwing over the wall. We are aiming for a tailored onboarding experience, all the way to the UI/X layer. This is the vision: - Visit dApp - Connect any EVM wallet - No funds? Welcome! [Click here] to bridge funds in. Without ever leaving the dApp. - Minimize the bridge progress dialog and browse while you wait. It only takes 2 minutes to bridge from Base. Sneak peek coming this week. Pilot partner @AlphaArcade 🤝
vitalik.eth@VitalikButerin

Now, account abstraction. We have been talking about account abstraction ever since early 2016, see the original EIP-86: github.com/ethereum/EIPs/… Now, we finally have EIP-8141 ( eips.ethereum.org/EIPS/eip-8141 ), an omnibus that wraps up and solves every remaining problem that AA was intended to address (plus more). Let's talk again about what it does. The concept, "Frame Transactions", is about as simple as you can get while still being highly general purpose. A transaction is N calls, which can read each other's calldata, and which have the ability to authorize a sender and authorize a gas payer. At the protocol layer, *that's it*. Now, let's see how to use it. First, a "normal transaction from a normal account" (eg. a multisig, or an account with changeable keys, or with a quantum-resistant signature scheme). This would have two frames: * Validation (check the signature, and return using the ACCEPT opcode with flags set to signal approval of sender and of gas payment) * Execution You could have multiple execution frames, atomic operations (eg. approve then spend) become trivial now. If the account does not exist yet, then you prepend another frame, "Deployment", which calls a proxy to create the contract (EIP-7997 ethereum-magicians.org/t/eip-7997-det… is good for this, as it would also let the contract address reliably be consistent across chains). Now, suppose you want to pay gas in RAI. You use a paymaster contract, which is a special-purpose onchain DEX that provides the ETH in real time. The tx frames are: * Deployment [if needed] * Validation (ACCEPT approves sender only, not gas payment) * Paymaster validation (paymaster checks that the immediate next op sends enough RAI to the paymaster and that the final op exists) * Send RAI to the paymaster * Execution [can be multiple] * Paymaster refunds unused RAI, and converts to ETH Basically the same thing that is done in existing sponsored transactions mechanisms, but with no intermediaries required (!!!!). Intermediary minimization is a core principle of non-ugly cypherpunk ethereum: maximize what you can do even if all the world's infrastructure except the ethereum chain itself goes down. Now, privacy protocols. Two strategies here. First, we can have a paymaster contract, which checks for a valid ZK-SNARK and pays for gas if it sees one. Second, we could add 2D nonces (see docs.erc4337.io/core-standards… ), which allow an individual account to function as a privacy protocol, and receive txs in parallel from many users. Basically, the mechanism is extremely flexible, and solves for all the use cases. But is it safe? At the onchain level, yes, obviously so: a tx is only valid to include if it contains a validation frame that returns ACCEPT with the flag to pay gas. The more challenging question is at the mempool level. If a tx contains a first frame which calls into 10000 accounts and rejects if any of them have different values, this cannot be broadcasted safely. But all of the examples above can. There is a similar notion here to "standard transactions" in bitcoin, where the chain itself only enforces a very limited set of rules, but there are more rules at the mempool layer. There are specific rulesets (eg. "validation frame must come before execution frames, and cannot call out to outside contracts") that are known to be safe, but are limited. For paymasters, there has been deep thought about a staking mechanism to limit DoS attacks in a very general-purpose way. Realistically, when 8141 is rolled out, the mempool rules will be very conservative, and there will be a second optional more aggressive mempool. The former will expand over time. For privacy protocol users, this means that we can completely remove "public broadcasters" that are the source of massive UX pain in railgun/PP/TC, and replace them with a general-purpose public mempool. For quantum-resistant signatures, we also have to solve one more problem: efficiency. Here's are posts about the ideas we have for that: firefly.social/post/lens/1gfe… firefly.social/post/x/2027405… AA is also highly complementary with FOCIL: FOCIL ensures rapid inclusion guarantees for transactions, and AA ensures that all of the more complex operations people want to make actually can be made directly as first-class transactions. Another interesting topic is EOA compatibility in 8141. This is being discussed, in principle it is possible, so all accounts incl existing ones can be put into the same framework and gain the ability to do batch operations, transaction sponsorship, etc, all as first-class transactions that fully benefit from FOCIL. Finally, after over a decade of research and refinement of these techniques, this all looks possible to make happen within a year (Hegota fork). firefly.social/post/bsky/qmaj…

English
37
97
303
29.1K
mngo retweetledi
Staxx 🐙
Staxx 🐙@StaxxOnDexx·
For the past 4+ years, @native_algo & the Skulli Frens eco have been nothing but solid. Today, he’s auctioning off a M.N.G.O NFT and every single entry goes directly toward helping bootstrap the BLOPKU launch. This wasn’t asked for. This is community. If you believe in what we’re building than this is one way to help support! Thank you @native_algo 🙏
Staxx 🐙 tweet media
English
4
21
34
1.5K
CRYPTOforCHANGE
CRYPTOforCHANGE@CRYPT0forCHANGE·
Wife asks me to pick up some art at the store today… Feel like I could easily swap that bottom frame out with some @CrazyGooseFlock NFT art I own 😂😂 Could maybe even convince her to flex a @yieldling MNGO somewhere #Algofam which one should I choose 😂
CRYPTOforCHANGE tweet media
English
4
0
10
391