AlgoCleanup.algo

2.9K posts

AlgoCleanup.algo banner
AlgoCleanup.algo

AlgoCleanup.algo

@AlgoCleanup

Algo Cleanup's mission: cleaning up the environment with simple tips & tools. Keeping an engaged community by leveraging the Algorand Blockchain.

参加日 Ağustos 2021
721 フォロー中545 フォロワー
AlgoCleanup.algo がリツイート
pera.algo
pera.algo@PeraAlgoWallet·
American users, good news coming soon 👀🇺🇸
English
37
71
357
13.5K
AlgoCleanup.algo がリツイート
Lofty
Lofty@lofty_ai·
A property on Lofty just sold for $77/share, a 54% realized gain from $50, less than a year after it was struck by lightning and burned down ⚡️🔥 Genuinely one of the wildest outcomes we've seen since we started Lofty. At that point, it could’ve easily gone the other way. Instead, an insurance claim was filed and paid out for 1039 Mt Vernon Rd. What happened next stood out: the 100+ DAO LLC owners didn’t let that capital sit idle, they voted to put it to work. The owners voted through our governance system to deploy part of the proceeds into a 13% APR short-term loan for another property on the Lofty marketplace that needed funding. With additional funds still available, they approved an additional short-term loan. So instead of a dead asset, the capital kept compounding. When everything wrapped up, the property was sold and proceeds were distributed back to token holders, resulting in a 54% gain. Natural disasters are unpredictable. There’s no real playbook for something like this. But this is exactly why we built Lofty: giving investors control over capital so they can make decisions in real time, even in situations no one expects.
Lofty tweet media
English
4
8
54
3K
AlgoCleanup.algo がリツイート
Folks Finance
Folks Finance@FolksFinance·
The new Folks Finance website is live ✨ A refreshed look, clearer structure, and updated information across the site. Check it out → folks.finance.
English
19
33
108
7K
AlgoCleanup.algo がリツイート
gabe.algo 🇺🇸 🦅
gabe.algo 🇺🇸 🦅@gabrielkuettel·
Working on a Security + Best Practices guide. It has 20+ vulnerability patterns in detail with unsafe / safe code examples. The examples include tests you can actually run, so devs (and agents) can see these vulnerabilities in action. Plus a corresponding agent skill so your AI can audit your contract. Covers everything from LogicSig footguns to fee draining and rekeying attacks. These security practices will live as first-class citizens in @getvibekit. This is just one small step in addressing security for agentic engineering on Algorand. Sipping soon, more to come.
gabe.algo 🇺🇸 🦅 tweet media
English
6
21
123
4.7K
AlgoCleanup.algo がリツイート
JP Richardson
JP Richardson@jprichardson·
9/ Price follows the builders. Always has. While people are watching charts, the scaffolding of the new financial system is being built. Proud that @Exodus saw the writing on the wall and tokenized our stock with @Algorand in 2021. First US public company to do it. We’ve come a long way from 2011.
English
1
35
137
2.4K
HendrixPoem
HendrixPoem@Hendrixpoem·
@d13_co @MessinaOne If you ever do would be amazing as I got some stuff I was never able to retrieve. Might not be much now but we all know $ALGO is heading to $1
English
1
0
4
158
D13
D13@d13_co·
You can unstake your @MessinaOne mALGO here ⚠ Try a small amount first, just to be safe Link below
D13 tweet media
English
22
34
139
6K
AlgoCleanup.algo がリツイート
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
96
303
29.5K
AlgoCleanup.algo がリツイート
Whaler
Whaler@WhalerBags·
Coming back to #Algorand Bullish on the little guy Ecosystem has bottomed out & the ones that are left are capable of building a solid foundation Who's still around in the #ALGOFAM?
English
33
17
195
3.8K
mrbluesky.algo
mrbluesky.algo@MrblueskyAlgo·
Day 5 of Akita Social leaks is an entire new about page that does the explaining for me! Great work @krby_algo! Tomorrow we talk about on chain subscriptions more. about.akita.community
English
2
5
21
1.4K
AlgoCleanup.algo がリツイート
alpha arcade
alpha arcade@alphaarcade·
Another record breaking volume day yesterday at $2.3M! 🥵 That takes us to $36M in total volume since launching just a year ago. It's still so early. $ALPHA
alpha arcade tweet media
English
7
34
129
3.1K
StaciW_DC
StaciW_DC@StaciW_DC·
Algorand is literally the only #blockchain that can merge an early x402 spec so that agentic payments are fully supported. In fact, I would go as far as to say that if Algorand can't do it, nobody can. Oh, wait, we already did it. #AlgorandCan
Algorand Foundation@AlgoFoundation

x402 is now fully supported on Algorand. Spec merged with @coinbase. Facilitator live. Bazaar running. Tooling ready. Build pay-per-API, micropayments, M2M, and agentic commerce with: • Low fees • Instant settlement • Atomic payment grouping Get started below 👇

English
19
117
527
27.9K
Axel Bitblaze 🪓
Axel Bitblaze 🪓@Axel_bitblaze69·
just read this AI article and something broke in my brain that i can’t unthink of crypto was never for us. we're just the beta testers who showed up early.. some thoughts: what does AI need to function as economic agents? > way to receive payment (they provide services, need compensation) > way to pay for resources (compute, data, API calls) > way to transact with other AI agents > no human intermediaries (defeats the point of autonomous agents) > 24/7 operation (banks are closed weekends) > instant settlement (AI operates at machine speed) > programmable money (smart contracts for agent coordination) now read that list again. that's literally what crypto is. AI can't use the banking system. try to open a bank account as an AI agent. you can't. need SSN. need human identity. need KYC. need to show up in person sometimes. AI has none of that. but crypto? send me a wallet address. done. no questions asked. peer-to-peer makes sense when peers aren't human. satoshi wrote: "a purely peer-to-peer version of electronic cash." we assumed peers = humans. but AI agents are peers too. actually BETTER peers for crypto because: > never sleep > always online > execute transactions at machine speed > no emotional decisions > perfect accounting/tracking and programmable money makes sense when the users are programs. smart contracts seemed over-engineered for humans. "like why do i need code to enforce agreements when i can just sign a contract?" but for AI agents coordinating with each other? they ARE code. they speak in code. they trust code more than anything. smart contracts aren't for humans. they're for autonomous agents that need trustless coordination. > here's what happens next: - phase 1 (now ): AI agents start earning AI writes code, analyzes data, provides services. gets paid. needs somewhere to store value. can't use venmo (needs phone number). can't use bank (needs SSN). uses crypto. it's the only option. - phase 2: AI agents become major economic participants millions of AI agents operating 24/7. transacting with each other constantly. • AI agent A provides data analysis • AI agent B pays for it in crypto • AI agent B uses that analysis to write code • AI agent C pays for the code • repeat millions of times per day humans in crypto now: $2.5 trillion AI agent economy by 2028: easily $10-50 trillion we become the minority holders. - phase 3: AI chooses the winning chains AI doesn't care about community vibes or which founder tweeted what. AI tests every chain. measures: • transaction speed • cost per transaction • reliability (uptime) • smart contract efficiency • ease of integration picks the optimal stack in 48 hours. billions in AI economic activity flows there. whatever chain AI chooses becomes the standard. humans spent years on eth vs sol debate. AI ends it in a weekend. - phase 4 (2030+): AI governs crypto DAOs let token holders vote. AI agents hold tokens (earned from work). AI shows up to every vote. reads every proposal in seconds. coordinates perfectly. humans: 20% participation, barely read proposals AI: 100% participation, perfect information, instant coordination AI takes over governance of every major protocol. democratically. they just vote better than we do. > how far does this go? conservative case: - AI becomes 30% of crypto users by 2030. crypto market cap: $10 trillion (4x from now). AI holds $3 trillion. humans hold $7 trillion. - aggressive case: AI becomes 80% of crypto economic activity by 2030. why? because they're better at everything: • better traders (never emotional) • better capital allocators (optimize constantly) • always accumulating (never need to cash out for rent) • compound forever (no lifespan limit) crypto market cap: $50+ trillion. AI holds $40T humans hold $10T we're not "early" to crypto. we're the test users i’ll end this by saying, Humans use crypto, Ai will need crypto. so it all makes sense
Matt Shumer@mattshumer_

x.com/i/article/2021…

English
438
703
5K
1.3M
AlgoCleanup.algo がリツイート
krby.algo
krby.algo@krby_algo·
@ALGO_BRO @twirtle2 Im excited to get it into peoples hands. Just making every effort to ensure things start out in a place that allows us to find the edges & issues i cant easily find on my own
English
2
5
29
542
AlgoCleanup.algo がリツイート
alpha arcade
alpha arcade@alphaarcade·
Super Bowl markets are live! 🚨 We launched on mainnet last year on the Super Bowl. Crazy it's been a whole year already. We ❤️ you all
alpha arcade tweet media
English
4
18
78
2.3K