derova.algo

2.6K posts

derova.algo banner
derova.algo

derova.algo

@DerovaAlgo

Algorand | Valar Node Runner | Governor | Hat Keeper #10 | 🇦🇺 | Systems Engineer | 17931497 GPG 🔑 FE4286F9B93CD4F815F38755BA9128C9226AB2F0

Australia Katılım Ağustos 2009
282 Takip Edilen474 Takipçiler
trillion
trillion@trillion_io·
Sure, I've been monitoring the situation 🙂 @AlgoFoundation has relocated from Singapore to USA and formed a new board chaired by @billbar. They have come to an agreement with @algorand technologies to take on the IP, protocol dev etc. under one org for $15M. Unclear on who works for who atm. The CTO 'left by mutual consent' after 4-5 months of something, hopefully not to be replaced and we can use the AT guys. Then they announced layoffs of around 25% of the team to get the outrageous overhead under control. Staci is still the CEO. Token is at ATL territory with no immediate catalyst to change that visible. I have no idea who won Algoland, it seems to have passed thorough more hands than the @GovernorHat, which is still lost in Cyprus. But it definitely did it randomly.
H4C@Hunger4Crypto

Can someone eli5 what is going on with ALGORAND now?

English
9
5
77
6.6K
derova.algo retweetledi
Algorand Foundation
Algorand Foundation@AlgoFoundation·
Google Quantum AI just published a landmark paper on quantum threats to every major blockchain. Beyond Bitcoin and Ethereum, no blockchain receives more coverage than Algorand, cited for live post-quantum deployments across signatures, state proofs, key rotation, and smart contracts. The alarm has been sounded. @Algorand has been answering it for years.
Algorand Foundation tweet media
English
78
467
1.4K
491.9K
D13
D13@d13_co·
Thread end. Smash the subscribe button and hug your loved ones ♥️
English
1
0
4
78
D13
D13@d13_co·
Nobody: Absolutely Nobody: @algo_surf: v2 launched woohoo lets go! 🧵
English
7
29
129
2.4K
derova.algo
derova.algo@DerovaAlgo·
@d13_co Whoa, when I type derova.algo as soon as I pressed o it instantly went to the page. I didn't even have to press enter
English
0
0
0
5
D13
D13@d13_co·
TL; DR: ✨performance improvements (even faster, try it) ✨(subjective) aesthetic improvements ✨(much) better mobile support ✨ new user features ✨ unique developer features ✨ modernized stack to shadcn + tanstack query ✨ still open source
English
3
0
35
464
derova.algo
derova.algo@DerovaAlgo·
@GovernorHat Chuck Norris actually died 20 years ago It just took death until today to build up the courage to tell him.
English
0
0
1
36
Governor Hat
Governor Hat@GovernorHat·
I am not writing off the possibility that Chuck Norris is resurrected in 3 days. It is entirely possible that he just needed to kick someone's ass who was already dead.
English
1
0
14
298
derova.algo
derova.algo@DerovaAlgo·
@d13_co Love the little joke you did there ;) Also this is reigniting my excitement for Algorand. Well done mate!
English
0
0
1
47
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
102
316
31.1K
adriano.algo 🔥
adriano.algo 🔥@AdrienCryptoZ·
Have we reached the bottom? I don't know. But what I do know is that $PRO is the top gainer of the day on #Algorand ! Battle Node is coming for all @AlgoFoundation family 🔥
adriano.algo 🔥 tweet media
English
2
1
7
290
rxelms
rxelms@rxelms·
@DerovaAlgo Yep it's soft staking, the website checks your wallet everyday, if the amount goes under the agreed stake then it will unstake you automatically
English
1
0
1
43
rxelms
rxelms@rxelms·
📝 LP staking is now available to all, if you'd like your LP pool adding please make contact with us in the Discord or here. 😮 3 new pools doa.polaris.city ✨ NIKO/ALGO LP - $NIKO ✨ $MONKO - MONKO ✨ $COOP - NIKO 🌱 This is soft staking, your funds don't leave your wallet, just press stake on a pool and earn. 🏄‍♂️ Anyone can make a pool, pool creators are in 100% control of pooled funds, we never gain access to the funds. #algorand #gaming #defi
rxelms tweet media
English
5
15
35
1.1K
gabe.algo 🇺🇸 🦅
gabe.algo 🇺🇸 🦅@gabrielkuettel·
A few days ago @algodevs dropped agent skills to help AI write Algorand code. So I’ve been thinking: what would a truly purpose-built agentic dev stack look like? One designed for the build > deploy > test > debug loop, deeply integrated with the agent, easy to setup, and secure by default... 👇
gabe.algo 🇺🇸 🦅 tweet media
English
9
40
155
15.6K
PrizeLedger
PrizeLedger@PrizeLedger·
It's time content creators and influencers get more out of their hard work. PrizeLedger looks forward to giving you a new platform to Build on with more value to YOUR brand. Only on $Algorand rails 😎 #Web3Community
PrizeLedger tweet media
English
5
4
16
617
Governor Hat
Governor Hat@GovernorHat·
@DerovaAlgo @settlersofcatan Thanks brother. I’m pleased with how it turned out, especially being my first design. Can’t wait to try it out. I’ll probably make the other expansions and carriers for them as well. Just probably not for a bit. Was a lot of work painting and assembling these little guys.
English
1
0
3
92
Governor Hat
Governor Hat@GovernorHat·
Finally finished my 3D printed @settlersofcatan board/pieces and custom carrying case. The board tiles/pieces were from existing print designs and are hand painted. They snap together with magnets and include base game and 5-6 player expansion. The carrying case I had to design myself (couldn’t find one that I liked that handles the expansion). It was my first real foray into CAD print design.
Governor Hat tweet mediaGovernor Hat tweet mediaGovernor Hat tweet mediaGovernor Hat tweet media
English
6
1
54
1.4K
derova.algo
derova.algo@DerovaAlgo·
@JohnAlanWoods Hey John, this is great stuff! Are there any other ways I can contribute to the project without a large upfront cost? 70k NIL is about $5k AUD at the moment which is outside of my budget but I'd love to get involved.
English
0
0
1
52
Node Keepers
Node Keepers@nodekeepers·
👾 Staking platform 90% complete, hoping to launch it in around 2 weeks. This is when Niko staking, UUBI, Node Keeper wages and governance will start again. #algorand #staking $niko #gaming
Node Keepers tweet mediaNode Keepers tweet media
English
5
7
18
485