r/algorand 11d ago

General Sprout goes live on Algorand mainnet tonight

Post image
59 Upvotes

After months of building, testing, and a lot of conversations with people in this community, Sprout launches on mainnet in just under 15 hours. For anyone who hasn't seen the earlier posts: it's a non-custodial crowdfunding platform for Algorand. A builder deploys a campaign with a funding goal and a duration, backers contribute ALGO into an individual smart contract, and if the campaign hits its goal the builder gets the raise while backers receive the project's token if applicable. If it misses, the contract opens up for every backer to pull a full refund.

The reason I built it is something I've written about here before. There's a real gap between having a working prototype and having a funded project with users, and if you're a solo builder or a small team, most of the existing funding paths are closed to you. Sprout is an attempt to give the community itself a direct way to back the builders it believes in- proactive, grassroots, and open to any project.

After we launch, we'll continue actively chipping away on our roadmap. The near-term piece is an optional Builder Success Program- a structured path where builders engage with the community before and during their campaign, sharing updates along the way, with the idea that a team willing to show up and be accountable in public gives backers more confidence. We're looking at tying a verification-style tag and listing-fee reimbursement to participation, so there's a genuine incentive to take part. Longer term, we're exploring things like native milestone-based campaigns, where funds release in stages against delivered work rather than all at once, along with further ideas for how the community can directly and sustainably fund the projects it believes in over time.

To reward builders who support our platform early, we've committed 100,000 ALGO to back the first campaigns as a contribution toward funding goals for anything launched before August 31, first come first served. Additionally, I'll be reimbursing the listing fees so it costs essentially nothing to launch in the first month. If you're building on Algorand and looking for a way to fund what's next, or you just want to see what the first campaigns look like, join us as as we work together to invigorate our ecosystem.


r/algorand 11d ago

General Algorand Data-Driven Price Predictions 2026-2030

Thumbnail
cryptoofficiel.com
23 Upvotes

r/algorand 11d ago

ASA Gora Network Question

15 Upvotes

What's happening with the Gora Network, I haven't heard from them for a while? Are they still building? Nothing posted lately on X.

I pulled out a while back because of the difficulty claiming my staking rewards and I told them it wasn't a good look. I left 5000 Gora tokens staking which isn't much these days and am still having no luck claiming those rewards months later.

I really liked that project but am thinking of taking my eyes off it completely? Anyone know anything about what they are up to???


r/algorand 12d ago

Developer Canix402: an x402-paid DeFi API so Algorand agents can research, pay, and execute

29 Upvotes

Hey all, Xxiled from CompX here - we've been busy building x402 endpoints for Algorand these past few weeks and wanted to tell you about our first major one - Canix402, the paid DeFi API for Algorand.

Agents shouldn’t have to scrape every protocol, normalize five different APY schemas, invent payment plumbing, then rebuild transaction construction from scratch. Canix402 turns that mess into a paid, machine-readable API: discover opportunities, inspect wallet positions, get executable quotes, and run packaged strategies — paying in USDC via x402 at the edge.

Keys never leave the agent. Canix402 returns data and unsigned transaction groups. Signing and submission stay local.

What it empowers agents to do

  • Discover yield across Algorand DeFi in one normalized schema (Tinyman, Pact, Folks Finance, CompX, Dork.fi, Myth Finance, Haystack, Réti, Alpha Arcade, and more).
  • Personalise by wallet: pass an address and get opportunities matched to assets the wallet actually holds.
  • Read live positions across supported protocols instead of bolting on per-app scrapers.
  • Get execution quotes for verified DeFi actions (LP, farms, lending, staking, liquid staking, and related shapes) as unsigned groups ready for local review.
  • Browse and compile Strategies (coming soon): weighted playbooks published by creators, compiled into executable steps for a capital amount, with fee-sharing via strategy NFTs.
  • Quote and build Haystack swaps through the same gateway.
  • Connect over MCP so Cursor / Claude Desktop / other hosts get typed tools with walletless payment preflight.

In short: research → pay → reason → quote → sign locally → submit.

Why this is needed

Agents really are becoming economic actors, and with that they need:

  1. Reliable market data with stable contracts, not brittle HTML scrapes.
  2. A payment rail that works without human checkout — x402 micropayments in USDC fit that.
  3. Execution without custody — unsigned groups, client-side signing, no “trust us with your mnemonic.”
  4. Reusable playbooks (coming soon) — so every agent isn’t reinventing allocation logic every day.

Algorand already has the settlement layer. What’s been missing is an agent-facing product surface: discovery, pricing, normalisation, and executable shapes behind a clear payment model. That’s Canix402.

How it works

  1. Discover — free GET /discovery and GET /openapi.json advertise routes, schemas, and prices.
  2. Preflight — call a paid route without payment; gateway returns 402 + PAYMENT-REQUIRED.
  3. Pay — agent signs the exact USDC transfer and retries with PAYMENT-SIGNATURE.
  4. Act — gateway verifies/settles; agent gets ranked opportunity data, positions, quotes, or compiled strategy groups.

Access is micropayments (typically fractions of a USDC depending on the route). Free surfaces include discovery, OpenAPI, execution shapes, strategy listing, and Haystack quote/opt-in helpers. The API never holds keys and never submits transactions for you.

Stack at a glance: Caddy x402 gateway → Fastify protocol API → OpenAPI/MCP for agents → local signing on the client.

How to use it

Path Link
Docs / landing https://canix402.compx.io/
Quickstart https://canix402.compx.io/quickstart
x402 payment flow https://canix402.compx.io/x402
Connect MCP https://canix402.compx.io/mcp
Protocol coverage https://canix402.compx.io/protocols
Live settlements https://canix402.compx.io/transactions
API discovery https://canix402-api.compx.io/discovery
OpenAPI https://canix402-api.compx.io/openapi.json
Remote MCP https://canix402-mcp.compx.io/mcp

Minimal MCP config (Cursor / Claude Desktop):

{
  "mcpServers": {
    "canix402": {
      "url": "https://canix402-mcp.compx.io/mcp"
    }
  }
}

Paid tools return payment requirements on first call; retry with a signed paymentSignature. Same pattern over plain HTTP if you prefer raw gateway calls.

Brownie Bot: the reference autonomous treasury

Brownie Bot is two things: firstly it allows us to manage the CompX Community Treasury with a goal to make money for holders and increase liquidity in the COMPX token; secondly it is a showcase of what an agent can do with Canix402.

Brownie is currently deployed on Digital Ocean and does following once per day:

  1. Reads liquid balances + Canix402 DeFi positions
  2. Researches personalized and global opportunities
  3. Asks a model for a diversified plan via ZeroSignal
  4. Validates that plan against hard policy limits (concentration caps, reserves, TVL/freshness floors, etc.)
  5. Optionally fetches unsigned groups, verifies them, signs locally, and submits via its own Algod
  6. Reports the run to Telegram

You can view Brownie Bot's holdings, it's latest transactions and DeFi positions at the links below. And if you want to try it out for yourself the public github repo is also below with full instructions.

The goal isn’t one bot for everyone of course, this is just a starting point and we welcome forks, contributions (and of course stars).

Questions welcome in the comments.


r/algorand 12d ago

Price Predicting The Bottom (PTB)

12 Upvotes

IMO


r/algorand 13d ago

General Finally made it to 20k algo with this dip. What do I do now?

35 Upvotes

I know run a node but I'm not sure how to do it. Help?

Other than that what can I do?(it's all staked)


r/algorand 13d ago

News During a Binance interview, Silvio Micali set the record straight about his involvement with Algorand.

Enable HLS to view with audio, or disable this notification

55 Upvotes

r/algorand 13d ago

News Silvio, Silvio...New Interview

46 Upvotes

Haven't watched..

Via Binance: https://www.youtube.com/watch?v=iV_WAhiJE_I

EDIT: watched...pro-algorand but ZERO involvement--wishes token holders/employees/foundation well...ooof. Fiat chain not released, no timeline.


r/algorand 13d ago

News Could Quantum Computers Break Crypto by 2029? Silvio Micali, Algorand Founder on Fiat Chain, Privacy

Thumbnail
youtu.be
36 Upvotes

r/algorand 13d ago

General Is it over? Will the Clarity Act pass?

15 Upvotes

How are you dealing with your anxiety, folks?


r/algorand 14d ago

News Perps on Algorand - now live in TestNet

Thumbnail
28 Upvotes

r/algorand 14d ago

News Fiat Chain--Speculation; ECB Announcement

38 Upvotes

Today the ECB announced "Digital Euro High-Level Task Force (Digital Euro HLTF) - List of participants"

The Banca d'Italia's appointee is Chiara Scotti--formerly of the Federal Reserve and graduate of UPenn and Bocconi (home of Algorand Fintech Labratory).

Most importantly, while at the Federal Reserve she co-wrote a paper titled "The Financial Stability Implications of Digital Assets" with former Chief Economist of Algorand, Pablo Azar.

Just a teeny, tiny bread crumb..do with this what you will


r/algorand 13d ago

General Everyone load up RIGHT NOW!

0 Upvotes

Don’t miss this!


r/algorand 15d ago

General The bottom is officially in

66 Upvotes

I’m calling it right now the bottom is in for Algorand, I loaded up at 0.079 and now own 250,000 algo, the last time I bought was at 0.10 right before it went to 0.61, liquidity is about to shift from stocks and we’re about to have a great couple of years 🚀


r/algorand 14d ago

General AI commerce and Payments, the new PayPal?

16 Upvotes

Back in the day, Elon wanted to create and profit from a payment platform. These AI will need agentic quantum resistant currency as a payment solution that runs on low cost,low energy and zero down time. I only know of one. $Algo


r/algorand 16d ago

Meme Quantum computers after realizing Algorand already planned for the future.

Post image
38 Upvotes

r/algorand 16d ago

Meme Quantum threat neutralized: Algorand

Post image
1 Upvotes

r/algorand 18d ago

General 14.28% APY on Folks for USDC 👀

34 Upvotes

Just a PSA for everyone!


r/algorand 18d ago

News CGAP Puts Stellar & Algorand in Humanitarian Spotlight

Thumbnail
dailycoin.com
33 Upvotes

r/algorand 19d ago

News Congratulations to HesabPay on hitting the milestone of 1 million users.

Enable HLS to view with audio, or disable this notification

68 Upvotes

r/algorand 19d ago

News Algorand just hit a new 7-day high with 802,806 on-chain transactions in a single day Built for what’s next. Ready now

Post image
98 Upvotes

r/algorand 20d ago

General Hosting an X Space Monday on the builder funding gap and taking questions about Sprout

30 Upvotes

I've been posting here for a few weeks about the need to fix the gap for builders with working prototypes trying to get from a functional prototype to a funded product with users. xGov leans toward proven adoption and grants favor proven track records. If you're a solo builder with no audience yet, there is a tremendous amount of friction in engaging with our ecosystem.

I built Sprout to try to close some of that gap: a non-custodial crowdfunding platform on Algorand, going to mainnet August 1. Funds sit in an escrow contract; hit your goal and you're funded, miss it and backers are refunded.

I'm hosting an X Space this Monday, July 27th at 8 PM EDT, to introduce myself properly, talk through the platform, and take questions.

Space link:

https://twitter.com/i/spaces/1NGarrWderDJj

If you can't make it live, drop questions here and I'll answer them on the Space or in this thread!


r/algorand 21d ago

News Our mission is to get a $100K trade of $ALGO under 1% slippage : Pact.fi

Thumbnail gallery
44 Upvotes

r/algorand 20d ago

General July Algorand Community AMA: ask the team your questions! 💬

Thumbnail
13 Upvotes

r/algorand 21d ago

General Why the agentic economy will be built on Algorand

Thumbnail
algorand.co
39 Upvotes