text
stringlengths
1
16.8k
label
stringclasses
21 values
dataType
stringclasses
2 values
communityName
stringclasses
21 values
datetime
stringdate
2020-11-11 00:00:00
2025-06-18 00:00:00
username_encoded
stringlengths
136
160
url_encoded
stringlengths
220
332
What could be the reason of latest bullishness by ETH investors to keep pouring funds into ETHA Ethereum Spot ETF by Blackrock? This week in just 3 days almost $250M went in all ETH Spot ETFs combined. Also July monthly options have largest options by amount, calls at strike price $3.2k and $3.5k. I been following money flows for weeks and few days ago already could notice rotation of money from BTC Spot ETFs into ETH Spot ETFs. A lot will also depend on actions by Trump regarding crypto markets and in general but it does look like certain big players are positioning for Ethereum to move higher. What do you all think - are we gonna get a summer bull run in alts? Or we have to wait until September or even Q4 for utility projects to start running? I do see that options traders are usually right so seeing they positioning for ETH to get above $3k in July 2025, is looking positive for alts.
r/cryptomarkets
post
r/CryptoMarkets
2025-06-05
Z0FBQUFBQm9VWTQ0YnlXWE5Pejk3WDgtSGlwTzVYSVRENjNGUHIxWDhDV09jX3FmVHJSOG45cmE2VGZkNUdkS29RTTR4NVp6R0ozTzhaWHZ0Qm1vNHJmdy13Wk9VTHlYd0E9PQ==
Z0FBQUFBQm9VWTQ0QnlTNGlKMnBOeVVYYV9nQzRIbE4wd0wtTnVpdW9Pd2hXMFNjYWYtWlVqUWdSVTVuc3VyZHFxZHNlTFdvX3pUdDVsQVc2aVdJMWctU2twc1V6bnpFTkFSWkZNTzJwZTZIbVR4Q3ktQzhrVmNTNWxmSkRJSHRjYWpxQy1zS3hYN2JwaXFNUmpxQV9tOGhKVkszVlE1V1k1ZFBYUndHNV9qaWlKQ0t5cEJtenNhaFlwUXlVLW9aampLX1I2MWFGazNPN1pETlEtYzQ4WC1nQzM4TlZRUU9vdz09
hello guys! sorry in advance if there is special branch for this type of questions but may be somebody can breakdown some question about the bittensor (i am completely newbie and trying to figure out, how is it working as for the miner side): 1) what is the logic of increasing/decreasing registation cost in subnet for miners? like i know, that before dTAO the price just did x2 everytime 3/3 registration per block (for example) was achieved and then cooled down – but now i can't find anywhere info about that 2) about percent of emission per subnet: for example,  i have an active subnet with 10% emission (0.1 TAO per block i guess). then registration is closed and what will be with emission? will it still be 10% or go down/up and why? i know it should affect on a alpha-token price, but can'y figure out how exactly it will affect. so if deconstruct this to a several short question:  \- what are the reasons for the subnet owner to close regs? is he doing it by himself or it's Bittensors role? \- how will closing of registrations affect on a alpha-token price? \- how will this affect on "alpha-token" affect on % of emission. thank you in advance!
r/bittensor_
post
r/bittensor_
2025-06-05
Z0FBQUFBQm9VWTQ0akg2eTAzeE5vYTdTU0ktY1RLNUxXaEZfRy1PSVdDelN4MUZoN0dCaW84ZmFyNEFBY1lsUE1VWlpPaXJOUERHVnJta014b2pJcUprVU8tQXBXRjYzck5vQkFjcWVndGhiSUREMlhGSEhOUUE9
Z0FBQUFBQm9VWTQ0QzQ3bWV3djhLR3lDWkh4NW1JRExoRHc4LTVzRGlIcXZBbFdHam9nT2xJUnpjRWNCTDdZX2NfRnBvRTV6WlRaWTlGMWFhOW9wclM0Z0pmUjdHdDFDeTlYNno3aGNNbGRPbE1PbnVUVDlKRGQwVHRzVHJJYWdTcG9ZXzFUUk5OLWJOYlh1ODFQUHY5UnlIVUZZa1Yzc0t3PT0=
Hey everyone! I'm excited to share a project I've just started: XmrMiner, a new Monero miner binary specifically designed for Android devices. I know mobile mining often gets a bad rap, but my goal with XmrMiner is to provide a user-friendly and efficient option for those interested in exploring Monero mining on their Android devices. I've been working on the initial setup and wanted to give you a sneak peek into the main.cpp file, which is the entry point for the miner. It's still early days, but I'm looking forward to building this out and getting some feedback from the community. Here's a snippet of the main.cpp code: ``` // main.cpp #include "miner/Miner.h" #include "utils/Logger.h" #include "utils/Colors.h" #include <iostream> #include <sstream> std::string coloredBlock(const std::string& text, const std::string& bgColor) { return bgColor + FG_WHITE + " " + text + " " + RESET; } int main(int argc, char* argv[]) { Logger::info("• • • • • • • • • • • • • • •"); Logger::info(coloredBlock(std::string("XmrMiner V") + XMRMINER_VERSION, BG_RED)); Logger::info("• • • • • • • • • • • • • • •"); Logger::info(coloredBlock("Developer: AidStudio", BG_BLUE)); Logger::info("• • • • • • • • • • • • • • •"); Logger::info(coloredBlock("Donate: 1%", BG_RED)); Logger::info("• • • • • • • • • • • • • • •"); Logger::info(coloredBlock("Starting XmrMiner", BG_ORANGE)); Logger::info("• • • • • • • • • • • • • • •"); if (argc < 2) { Logger::error("Usage: ./XmrMiner [arguments]"); Logger::error("Example: ./XmrMiner -a rx -o stratum+ssl://rx.unmineable.com:443 -u XMR:Vallet.Worker -p x -t2 --cpu-affinity 6-7 -k"); return 1; } std::ostringstream oss; for (int i = 1; i < argc; ++i) { oss << argv[i] << " "; } std::string args = oss.str(); if (!args.empty() && args.back() == ' ') { args.pop_back(); } Miner miner; miner.startXmrMinerWithLog(args); return 0; } ``` As you can see, the code includes some basic logging and argument parsing to get things going. I'll be posting updates as development progresses. In the meantime, I'd love to hear your thoughts, suggestions, or any questions you might have about XmrMiner! Thanks for your interest and support!
r/monero
post
r/Monero
2025-06-05
Z0FBQUFBQm9VWTQ0RlhCb0FDRDhfOXRnSExaUUtyUloxUUN1d0hLMDd4Z25ZdjYtZHUzQ296bndTY3dLTXVnVGJ4UlNaY01EQ3lqbzNReEEyMC1rTXVfck96aEh5UnRuaUlsX1RrNmtJZ1ZLemNXdG1DMDh4QTA9
Z0FBQUFBQm9VWTQ0UzBmN2t6aENFQWFaTXhPMkktLUdlcElVdXlEbVV4X1Q4azJicTItcml1M01fWkREZ2UyYy1lbXZXQnpaVE05VjJJdjNuczhQWGFUbTRodS01WlhJR2lwRVhQRWVvREh1MnVfMU53MkxIdmFGV3dYZlU2RXktOE1wMkZXX3J2T3VhNkJuMmN5RV9oUTJpRFR6S1dXVzMxbXJVRDdXYVNrRnlqRGtEYlQyNTRUTXUybUx5el9kRVk1RTMtLS1RRXlUS3htMVdQSTFPbkl5cDhSeWNKRGVVUT09
same spam bs posted everyday. block this loser.
r/bitcoincash
comment
r/Bitcoincash
2025-06-05
Z0FBQUFBQm9VWTQ0aFZQUmY4NHFRY1ZXYmk3RUdMXzR5bGpVQ2FhUlJoV3ZTMFREVFRaYVhVUklSdjE1Snh2a3pvakVzV1VCdzU4eHU5MWFZNFI2Sl9hZWZoV3lfMHh6VFE9PQ==
Z0FBQUFBQm9VWTQ0Q1V6RWFWTnhuQVhMLW5tblJ6NkJYOEN0dnhiN1VBNndmS1VaOEF6SlpacFhPdjdQZk1kMV9XUkNMbV85b3JXNEpmWWstTWVhamVlTGJrMkZ3WDFzdGY1N1MzRG94cFo0V01hSVFoSFlsNjNnUklHRlAwTGdsMXhuWnUtbVk4dnczV3IwdE42UGxXdWNiLXNEYmNobWh0RDY2cFdlQnE4MVlISmhRbHpIeTBpWmYyZmpfcUdsSUJvUmRoczdKSVhIR0ZTcjNTTkRUTnp5NEJOZWtZQ2VNZz09
Reported & blocked.
r/bitcoincash
comment
r/Bitcoincash
2025-06-05
Z0FBQUFBQm9VWTQ0TGVqaXJxUnZkcTd4VWdheGViR3FwMjZrdjhFbkVOVVlKTEh3eUgzWmgyZDVNNTZYU3BsYi1hWkRZYWRSTnpMR3pTdWtTMGx6S2ZjcUNpOHJyNEZ5MmhQTGVHS3JTNHU2WElZTzNienpmcDA9
Z0FBQUFBQm9VWTQ0SFB0QmVqWHZWc1hEYk0wRU0xYmNFYnc3WWFEcEhITFdnNnN3LVU4cmh3S3EzQzB0YjhNajVFVldOaVkwOE5DQkNBak1rbE95SGJrLUdPWUZiZmlJWVYyUTFnQTNfZXlja3NBY1p2b0JXd0otRDN4UlFZc2x6cXA1c0xPM21RY01wMVhWdnF3MUxUZDJMSFdHRTlLV3kxOExwX3lTT3ZNSm1URktNZ0dRbHhfdVRReWZza29MN0ZsQ0YzaF92SWxTbUROUERrbWlwUkVybmM5djBkM2REQT09
Legit has every chart snapshot looking like an E.D. poster, hopfully the market takes that little blue pill, time to start accumulating as things turn down, remember buy low sell high. My advice ride the storm, free funds from other places if in the red from this and accumulate as the market turns down/bottoms to lower your cost average making it easier to get back in black Best wishes to all holding bags rn
r/cryptomarkets
post
r/CryptoMarkets
2025-06-05
Z0FBQUFBQm9VWTQ0by1IMTNneldDblZhMUxzSV90aGp2VUxNY3k5MzFEbnhqQlBMekxPV2tSUVZSZW5YeG5haUw0N2x2cWZPM3d5eFFLVGtiX3N4MmJKcThBVkw1Qm1HeEE9PQ==
Z0FBQUFBQm9VWTQ0SXlWVndqaVp4LW1nUUxmSlQxbFpvcTZDRGFuNzZ5YTYzWHktQWd0WW16cEFuYzk2VlRVUFZLc293SVNsTTYwZWNKRTlvQzhOQmtyamtVQXNkemtMRzhuak5xOHZORlc5eXotX29mU2VrVkZ4QmxhUkk4V3RYV2NqZWhJUGI1a1Nxd2gyank0UFk3cHFHSm1zVnNZUTlVUE5yLS1OdGhpRzlIX2Q0YmZYaUZJPQ==
I've been thinking about how crypto, digital currencies and the world might evolve in the next few years, and I wanted to get others' thoughts on this: Are we heading toward a future where every major company like Walmart, Amazon, or Apple, issues its own crypto token. If someone want to buy a chocolate bar at Walmart or pay for some subscription, he wouldn't use regular fiat (like USD) directly. Instead, he'd pay with that company’s token. The flow might look something like this: * The customer opens their digital wallet. * Either manually or automatically, the app converts digital USD (or another fiat-backed digital currency) into the specific company’s token. * The purchase is made using the token, possibly unlocking loyalty points, discounts, or other perks. In this model, digital fiat (like a U.S. CBDC or a stablecoin) becomes just a middleman or on-ramp for accessing various corporate ecosystems. The tokens would allow businesses to control pricing, incentivize loyalty, potentially reduce payment processor fees, and of course get rich if their company is doing well. And instead of investing on the company's stock, investors would simply invest in the company's token. What do you think? Curious to hear your thoughts.
r/cryptomarkets
post
r/CryptoMarkets
2025-06-05
Z0FBQUFBQm9VWTQ0RWhXeDBCbWljOTdmNTBIaVZQNk9kSHlxLXhWT0xlYjduc3VLVlBPWUtTN0xLemZRWmYtOXBnRXRqWkI5S2RnOGhJUUNfczE1dmh6bDdRTC0tT3lwalB3cXRScjNieGVTd0t2SzM1bXltOGc9
Z0FBQUFBQm9VWTQ0dURldVdfUUJuNEtKcmFfcGpvT0NZN2pPUjNxVXhON0NHbzdueDlvWW5WUDVtUE55ZmZGVjBEdmhISGhWSk1rYURxMmtpU1RrM1FpTHdON1FpbnRwTlRxZUNSZFdYOEFFRVNNZUxJdEdfeGJ0MV9ybzBXQTFqMDFtbUMxUnFDdFRQUW5IZVoyR3FWbjhCaWdOUllQa2VJN3FRa3c5WldNeTQ2SDhRVlI3RklSaVRUU25hOHUyTDFPd0VyV1BLSUJGSXppQkp2c2FoOWczQ1BDaTNiNUtRQT09
**Source:** [https://blog.colosseum.org/eternal-starter-kit-app-kit/](https://blog.colosseum.org/eternal-starter-kit-app-kit/) >Colosseum Eternal Reopens, Solana Starter Kit, Solana App Kit, Program Security, Tokenized Equities on Solana https://preview.redd.it/6lcx9brfl65f1.png?width=960&format=png&auto=webp&s=e65b701f89eeceb474d860bb6a3ff0ef36fec73b The Colosseum Recap is a new monthly video series covering news and updates from across the Colosseum ecosystem. Each episode will include highlights from Colosseum hosted hackathons, milestones and progress from Accelerator teams, and general updates on Colosseum initiatives. The first episode, covering May 2025, is now live! [https://www.youtube.com/watch?v=eNnHYyBgmo8](https://www.youtube.com/watch?v=eNnHYyBgmo8) https://preview.redd.it/90pnlllhl65f1.png?width=719&format=png&auto=webp&s=1a74699cd915dfcda98cc2e0d8ca316c438ab030 Here's more news from around the Solana ecosystem... # ⏲️Colosseum Eternal Colosseum has reopened its Eternal program, allowing crypto founders to begin a four-week product sprint at any time between hackathons. Participating teams will be considered for $250 k in pre-seed funding and selection into Colosseum’s next accelerator cohort, with judges currently finalizing the first Eternal Award winner for H1 2025. [**Colosseum Eternal**](https://www.colosseum.org/eternal?ref=blog.colosseum.org) # 🧰 Solana Starter Kit The Solana Starter Kit addresses a roadblock for teams entering the Solana ecosystem: extensive time spent on infrastructure configuration before any user-facing feature can be shipped.  Internal surveys at Tapestry suggested that new projects routinely invested more than 140 hours on wallet wiring, RPC setup, and basic UI scaffolding. These tasks delayed product validation and diverted effort from core functionality. Pilot users reported a 10x reduction in initial setup time.  The repository combines production-grade examples and integrations that work out of the box: * **Privy wallet authentication**: Secure key custody, sign-in flows, and session management * **Tapestry social layer**: API endpoints for profiles, follows, and notifications * **Zerion portfolio views**: Prebuilt wallet dashboards with real-time asset data * **0x Project swap widget**: Token exchange without additional backend code * **Helius RPC endpoints**: Enterprise bandwidth and consistent commitment guarantees Each module ships with TypeScript examples, minimal UI components, and environment files that map directly to the corresponding SDKs. Development was coordinated by Tapestry with contributions from Privy, Zerion, 0x Project, and Helius.  Feedback loops included teams behind pump.fun, vector.fun, and Moonwalk Fitness, whose early adoption provided benchmark data and identified common edge cases.  The toolkit is [open-sourced on GitHub](https://github.com/Primitives-xyz/solana-starter-kit?ref=blog.colosseum.org) under an MIT license, with documentation that outlines extension points and service limits. Updates and additional integrations are planned as the project evolves. [**Introducing the Solana Starter Kit: From Months to Minutes**](https://blog.usetapestry.dev/p/introducing-the-solana-starter-kit?ref=blog.colosseum.org) # 📱 Solana App Kit Solana App Kit is an open-source React Native scaffold that speeds mobile development time for Solana applications from weeks to about fifteen minutes.  It targets two recurring hurdles: 1. The steep learning curve for mobile-first blockchain apps 2. The extensive effort needed to wire multiple protocol SDKs before any feature work begins. The framework ships with a production-ready iOS and Android codebase, preconfigured navigation, state management, and a CLI quick start. A modular architecture lets teams import only the components they need while keeping clear code separation. Key integrations include: * **Trading and swaps**: Jupiter aggregator, [Pump.fun](http://Pump.fun) AMM, Raydium concentrated liquidity * **Launchpads**: [Pump.fun](http://Pump.fun), Raydium, Meteora, Token Mill * **Embedded wallets**: Privy, Dynamic, Turnkey, plus Mobile Wallet Adapter support for Solana Mobile * **Data services**: Coingecko, Birdeye, Rugcheck for token information * **NFTs**: Metaplex minting and Tensor trading * **AI and utilities**: SendAI for chat-based Solana actions, Jito bundles and Helius for transaction landing The project is maintained by the SEND ecosystem, with each protocol provider contributing integration modules and test coverage.  Early adopters report faster prototyping for DeFi trading apps, NFT marketplaces, and wallet experiences, enabling teams to focus on user experience rather than boilerplate wiring. [**Solana App Kit**](https://www.solanaappkit.com/?ref=blog.colosseum.org) # ⭐ Highlights of the Week [**A Hitchhiker's Guide to Advanced Solana Program Security**](https://substack.com/inbox/post/164534668?triedRedirect=true&ref=blog.colosseum.org) This guide surveys six lesser-known program Solana vulnerabilities, illustrating each with real bug reports, code snippets, and suggested mitigations, so builders can spot and patch issues that slip past standard checklists. [**Tokens are Broken**](https://www.youtube.com/watch?v=99XsVSN_doQ&ref=blog.colosseum.org) This presentation from Theia Research takes a deep-dive into the problems of the cryptocurrency ecosystem and identifies futarchy markets like MetaDAO as one of the most promising solutions to fix structural problems in token markets. [**Issuing Tokenized Equities on Solana**](https://cdn.builder.io/o/assets%2Fce0c7323a97a4d91bd0baa7490ec9139%2Fcf5cca4f50af41608da122d22413eaee?alt=media&token=3f89c095-d871-4a5e-8eb0-47c8bbb7752a&apiKey=ce0c7323a97a4d91bd0baa7490ec9139&ref=blog.colosseum.org) This report argues that Solana has become the frontrunner for tokenized securities with its Token Extensions and transfer-hook framework that lets developers mint shares with self-enforce KYC, jurisdiction limits, dividends, splits and claw-backs, and it backs the claim with real launches such as BlackRock’s BUIDL and Apollo’s ACRED. # ⚡ Quick Hits [Introducing Advanced Multisig Security Solution for Solana](https://www.range.org/blog/introducing-advanced-multisig-security-solution-for-solana?ref=blog.colosseum.org) \- Range [Solana Attestation Service (SAS) Explained: KYC Once, Access Everywhere](https://www.ccn.com/education/crypto/solana-attestation-service-sas-explained-kyc-once-access-everywhere/?ref=blog.colosseum.org) \- CCN [A Developer’s Guide to Using Privy and Helius for Embedded Wallets, Gasless Transactions, and Frictionless Onboarding](https://privy.io/blog/frictionless-and-secure-ux-the-tech-stack-for-solana-onboarding?ref=blog.colosseum.org) \- Privy [The First Solana Transaction in Space (video)](https://www.youtube.com/watch?v=gpg-7oJP_S0&ref=blog.colosseum.org) \- SOLYD [Surfpool v0.6.0 is live](https://github.com/txtx/surfpool/releases/tag/v0.6.0?ref=blog.colosseum.org) \- txtx [Solana’s Stablecoin Landscape](https://www.helius.dev/blog/solanas-stablecoin-landscape?ref=blog.colosseum.org) \- Helius [Accelerating Perena Part 2: Trust is the Currency](https://x.com/gizmothegizzer/status/1928097974657126615?ref=blog.colosseum.org) \- [gizmothegizzer](https://x.com/gizmothegizzer) # ⚙️ Tools & Resources [ASM Entrypoint](https://github.com/thewuhxyz/asm-entrypoint?ref=blog.colosseum.org) is a generic Solana entrypoint deserialize for multi-instruction solana programs written in ASM. [anchor-version-detector](https://github.com/johnsaigle/anchor-version-detector?ref=blog.colosseum.org) is a CLI tool that analyzes Solana/Anchor projects to detect or infer the Anchor, Solana, and Rust versions needed for an Anchor project. # 💸 Funding Neutral Trade, a DeFi project that started in the Colosseum Radar Hackathon,  [has raised $2 million in a funding round](https://x.com/TradeNeutral/status/1928907436959870992?ref=blog.colosseum.org) led by Ergonia, and angel investors from projects like Drift and Jupiter Exchange. The funds will be used to scale operations and build a platform of crypto investment products on various exchanges. Assisterr, a Solana-native platform for building and monetizing small language-model agents, [has raised $2.8 million](https://cointelegraph.com/press-releases/solana-based-ai-platform-assisterr-secures-2-8m-to-decentralize-ai-development?ref=blog.colosseum.org) to finish launching its ASRR token and expand the no-code tools that let developers create and deploy specialized AI agents. Donut Labs [has raised $7 million in a pre-seed round](https://cointelegraph.com/news/donut-7m-for-first-agentic-crypto-browser?ref=blog.colosseum.org) led by Hongshan, BITKRAFT, and HackVC, with participation from angel investors including Solana and other ecosystem leaders, to develop the world’s first agentic crypto browser on the Solana blockchain Fermi Labs [announced a $1.2M pre-seed funding round](https://x.com/FermiLabs/status/1925155094670307811?ref=blog.colosseum.org) led by Equilibrium Ventures and Big Brain Holdings to build a scalable and capital-efficient orderbook DEX on Solana # 👩‍🔧 Get Hired * Orca is hiring a [Software Engineer (Backend)](https://jobs.solana.com/companies/orca/jobs/52037476-software-engineer-backend?ref=blog.colosseum.org#content) * DoubleZero is hiring a [Data Scientist / Network Analyst](http://jobs.solana.com/companies/doublezero/jobs/51996217-data-scientist-network-analyst?ref=blog.colosseum.org#content) * Wormhole is hiring a [Senior Frontend Engineer](https://jobs.solana.com/companies/wormhole-labs-2-be889885-4d16-4911-98e8-707a8bef2d3d/jobs/51914763-senior-frontend-engineer?ref=blog.colosseum.org#content) * Everstake is hiring a [Senior DevOps Engineer](https://jobs.solana.com/companies/everstake/jobs/51824345-senior-devops-engineer?ref=blog.colosseum.org#content) # 📅 Event Calendar [**Layer KC Meetup**](https://lu.ma/vzuf5kf0?ref=blog.colosseum.org)**, Kansas City, MO, June 8** Layer, a monthly meetup where art, tech, and decentralized culture collide brings creatives, builders, and the blockchain-curious together to explore how blockchain, AI, and open data can reshape local culture and collective action # 🎧 Listen to This # Lightspeed Brennan Watt discusses Solana's latest upgrade Alpenglow, diving deep into the Anza origin story, Alpenglow's impact on the Solana network, how to reduce malicious MEV, and the past, present & future of Solana. [**Alpenglow: Solana's Largest Protocol Upgrade Ever | Brennan Watt, Anza**](https://blockworks.co/podcast/lightspeed/d00fe0f8-400f-11f0-8bea-d71dfaad8bf1?ref=blog.colosseum.org) # Bonus Episodes [**Inside the Solana Story: Near-Death Brushes and a Need for Speed**](https://web3-with-a16z.simplecast.com/episodes/solana-anatoly-yakovenko?ref=blog.colosseum.org) \- web3 with a16z crypto Solana co-founder Anatoly Yakovenko joins a16z GP Ali Yahya (live at the CSX Crypto Startup Accelerator) to recount Solana’s journey from a late-night insight and near-failures to becoming a high-speed blockchain, the network’s speed-first design, its ship-and-iterate culture, developer mindset, and recent innovations like a revamped consensus algorithm. [**Inside Solana Mobile’s Master Plan with Chase Barker**](https://www.youtube.com/watch?v=RbTkR5iTaC8&ref=blog.colosseum.org) \- 100xDevs This OnlyDevs episode features Chase Barker, legendary shitposter, dev evangelist, and the man who helped onboard some of the earliest devs on Solana. Fresh from a brief “retirement,” he’s back to lead Solana Mobile, pushing crypto fully mobile and taking on the Apple-Google duopoly. [**Chainlink Accelerates Solana's Growth w/Co-founder Sergey Nazarov**](https://www.youtube.com/watch?v=spS7eVysuHo&ref=blog.colosseum.org) \- Paul Barron Network Paul Barron interviews Chainlink co-founder Sergey Nazarov about the major CCIP integration with Solana, which enables seamless cross-chain transfers and unlocks billions in liquidity. They discuss how this breakthrough attracts institutions to blockchain, expands tokenized assets, and deepens DeFi. [**Oro is Bringing Gold On Chain and into the 21st Century**](https://solanaweekly.io/2025/05/28/oro/?ref=blog.colosseum.org) \- Solana Weekly Usman, CEO and co-founder of Oro, explains how Oro tokenizes fully audited bullion on Solana, delivers 3–4% yield through the traditional gold-leasing market, and covers macro drivers, token mechanics, redemption logistics, and why a non-USD store of value could be the missing piece of Solana DeFi. Follow [@mikehale](https://twitter.com/mikehale?ref=blog.colosseum.org) on X or [Warpcast](https://warpcast.com/mikehale?ref=blog.colosseum.org)! # Thanks for reading ✌️ I hope you found something useful here! If you have any suggestions or feedback just let me know what you think.
r/solana
post
r/solana
2025-06-05
Z0FBQUFBQm9VWTQ0MDFwbF9DYWE3RUZ0WVQ2R2FQV2JYRUQxUlJza3lSZ2hoblh6Nm40ZDd0eWRPc0F6NUlZTlBrWWdjeDE2MjFaZkxIcDRqQllDZTdwOHZLR1pTaExRLWc9PQ==
Z0FBQUFBQm9VWTQ0M1dqaDhLZEhpYm55SEI2RUNhQklxRGl1dW0ybXJvNlZBdnFxYlFacl9RMnlHQzdBMkVfT1NFTExJN1JIa0ljZExVNWw5VUR6QVJrQzNQaHFCblpscVFpSWdqZXJQeE1IVUVwVlNXQWdGTHFLNDZ3dDBHcW11SWRrcHZGNUhjeE1WYkREYmFQSUlDSVlaYk9FR1p3WENXNGxEaWpPRU5KWktHamxza0J6bGFxZFl2SVBNaWRJZ3IyYmdDUTBTYlVRS2JkdUg5ZWVPdm5tbWpNbFhhbkNmdz09
To be honest... Who believes there can still be an alt season and why? Don't you think the Crypto world has already changed?
r/cryptomarkets
post
r/CryptoMarkets
2025-06-06
Z0FBQUFBQm9VWTQ0S2E5eWN5dVhTUWlicGdSbGgwVE51d2tYQmRXbk8xbE84VHZKQlJFdzMwNDNhU09ZNjA3Rm9YRWJNRzhaZXF3TE5waDQ5VXFoTnFRbkxHWkJhUHp0M2c9PQ==
Z0FBQUFBQm9VWTQ0ZVEwbXItc3NlYUxRV1pIbTRKTU9ubTkxb1ZtV1BzVlI0Nm4ydDBydFEwSUJxMWtMVm1Yc0dlNURHZzRfOVJQQ1FKcFNvalhCNkViTF9JR09Kck5BRjlwRi14eDFMbjBVdFBwdnNnZWRfNHV0TzdwdTU2WTBUU0xLTXhIaE00d0Y1d2o1YlQwNGlIWkhNc29QQzZRODcyQnZLUzBDOVQxc1ZhbWhGNGxoU05zPQ==
This shit is schizo right now. Scared to touch it with a ten foot pole. Everything seems so wishy washy.
r/cryptomarkets
post
r/CryptoMarkets
2025-06-06
Z0FBQUFBQm9VWTQ0cXU1OEs0OGh6eHNIZ0dvYUZ4TjVMV2ZiWEpXYkxYU1FHRWdmU3Y5YWxpdE5KMkEwemw0ei1WTENhYVVYbHkzVFI0WkREdDlLQ0JhaEU3SUNUQzNsTUZkcmlpTDQxdXh3UmthSmpUYUxOME09
Z0FBQUFBQm9VWTQ0WWRuT0RoWXkyVzhzUnh4VVZvY1RhVFBBRTRMUXZvNVpmaktjUnpLNGRsS1I5SnhFeEpxeDRxeFZobEhSQVRSQVpxdGlyekZQeW45Ym9DR2hKNlpvVE0zMHhUaEY0OXI5aWt1SzVld0VnbW9WeG5OWWM3N2xQWWV0ZU9XaDI0YVlFTXd3dlZPWElCaWFVWDhMakQxTGtnS0Z1VGpWRlBSekJJcldqYW5LUU9ZPQ==
Just crossed with this Leon [Tweet ](https://x.com/LeonWaidmann/status/1930617121605914893)showing again more metrics about why Ethereum is the best. https://preview.redd.it/pos01v91t85f1.png?width=816&format=png&auto=webp&s=f907b6877bc8e848d319b9993eb6e3bf8cc23bbf Yes, as you can see in the chart above, in 2025, Ethereum Layer 2 (L2s) solutions like Base, Optimism, Arbitrum and zkSync have not only caught up, they have actually surpassed many L1s in terms of cost efficency. On chain activity on these L2s now usually costs just a few cents and sometimes even fractions of a cent thanks to Ethereum rollup upgrades. They are currently cheaper than Solana, Fantom, Avalanche and several other big name L1 chains. This is a huge shift from just a couple of years ago when Ethereum's gas fees were memed to death during NFT and DeFi peaks. This is happening because Ethereum L2s benefit from rollup tech that bundles transactions and posts them to mainnet helping to reduce gas fees. Blobspace via EIP-4844 made data availability much more scalable too and massive user growth + dev support has turned L2s into a bustling ecosystem on their own. This is proof that Ethereum is working as expected. Meanwhile, many alt L1s are struggling with either demand spikes causing congestion, centralization risks or plain old low usage. Ethereum on the other hand has modularized like a pro. So next time someone says "ETH is expensive", show them the receips. The future is not just Ethereum, it is Ethereum L2s. Source: * Tweet: [https://x.com/LeonWaidmann/status/1930617121605914893](https://x.com/LeonWaidmann/status/1930617121605914893)
r/ethtrader
post
r/ethtrader
2025-06-06
Z0FBQUFBQm9VWTQ0cE9XZ1lmRDJ4U2toRHJOQ2lHaUdxR3U4bjhFVXhrT2lYMUFGRFRqZ2hpNDZCSTBlNVFWN1JoT09ibVBGR1ZiYzFqOFRUaWwxRFhyZHVlYVFsVFltY3c9PQ==
Z0FBQUFBQm9VWTQ0MHNydUNyM196VElMZm9mZ21zbVJIY3VQaFZvNG54VzRDclNVc2ZpaWtOaE9TdnowQ29OUGVsbmdlNXd2bkdOMmVBNExNaWtzZ1NwblZfcURmTlQ0aXRranB4U1ZyWndpN3pVOUN1YTl5WDR1a2VtYUUwd1llU2dBXy1pQWxXSUhTY1BrTk1PZTNxWldQNUc1ZjNsRDlFaFFUVjIteFZtUzYwN0VFaGVZTnBCUXpZQk8yQmlQWXg3TzNaYmhHU1pNLW9welZTQjRyTFNON19Cd2VKaDZvQT09
In the last 24 hours, we have seen two major events rattling both the political and financial worlds. the escalation between Donald Trump and Elon Musk, and a sharp Bitcoin sell-off that sent BTC tumbling below key support levels. Elon Musk came out swinging against Trump’s “One Big Beautiful Bill,” calling it a “disgusting abomination” while Trump retaliated hard, threatening Tesla’s federal contracts and lashing out publicly. At the same time, Bitcoin lost momentum and slipped below the $101K range, triggering widespread liquidations and shaking market confidence. Are we witnessing a broader sentiment shift away from institutional optimism? Could the breakdown between Trump and Musk reflect deeper cracks in the pro-crypto narrative?
r/cryptomarkets
post
r/CryptoMarkets
2025-06-06
Z0FBQUFBQm9VWTQ0REdwTUR1WHJsZHNfZEg4VzQ2UlpzeVJkdFBJZlZUOTFtUVBYNTlCV2xhNHIwcDV0aUFJR05PMnBwYmoyQWJab3Y0V0kwYzBxVFBRZkdSSXZXWDB0V3c9PQ==
Z0FBQUFBQm9VWTQ0TVRPVWRfU0EtSEFiX2JYakJkOTB1VUU3NEVwOGlwVlRRSUJVWlJndkk4QVplOThzSmVCQUo0MnJxanZrNm14a3R3Zk80YUs0UFV3TkZkUFFESlZ3QjNualpEQ0Z2MDVSazVEWXI2Y3ZweXQ4dTJqZ0IwYk9zQ0gyRnNsLVA0NmlzYXdFcjg3a01jZExQNlBkOEhmd0FERVJXS1VZMGJhTWlNOVl1dGtBOG9uZDl0YmRSYXFHQmJQUkQ5b1FuTlQtWGItaHY2bkxacUN2eHo1SWJxQVNNdz09
This is the weekly Monero market thread. This thread will be posted every Friday and is meant to help accelerate the adoption of Monero. Due to r/moneromarket having only a fraction of the subscribers of r/Monero, we have decided to create this thread to encourage more individuals to use Monero for product exchanges. Until the market matures, we recommend that the Monero community post their products both in this thread and on r/moneromarket (to ensure growth of that subreddit). Selling items for Monero will boost your (and Monero's) reputation as a legitimate form of exchange of goods. This is necessary for the growth of Monero, our community, and privacy as a whole. ## Instructions When you post your product or job listing here, please make sure to: - Give a description of the item. - Link to a photo of the item (if it's physical). - Provide logistics information (such as, location and/or shipping availability). - Optionally, provide an additional (private) form of communication outside of Reddit (e.g. Bitmessage, u/protonmail, u/tutanota, GPG key). - Post the price in XMR terms. Spamming will not be tolerated. Please make sure that listings are legitimate and do not break rule 2." Finally, credits to cdotsubo for starting the concept!
r/monero
post
r/Monero
2025-06-06
Z0FBQUFBQm9VWTQ0SEtUNk9RckI5VGxsTzhmTUctMGl2aG1RV21Oblg3cXNZb2c3V3pkUHlXOWhzV0RoSE1QZWR5R25zS0tmaGZKQ1BNa25Pa0VoTEZqZGJEeVl2YjNDREE9PQ==
Z0FBQUFBQm9VWTQ0MFRhVmE0TGdfcHRKUWtsRzZCejRmc1E3QW0za1RLd0JxVUM2RXVMcnRERnlXQ3hKbUVfTEFaMkhMUlVLMElzRDBuck9Fc3g5RkFyWUxvcGtGUUo4ZERRS1lkajFDU3JHbzlBeTFsU05YbFI3RmJTbG56TFZFR3ZvdW1vQ3FEc3JQTTR6eDAtZ3pzbmhQLVBteWpYRHV6TTE2MU1WTFZLbnl1TzlvSWwycC1CWHN0a1JtQnUzaGMxV3QyS0prRGRL
Let’s be real — Const isn’t selecting just anyone for a panel like this at one of the most elite venues in Paris. When you have Macrocosmos + Bittensor heads coming together to talk Novelty Search, it’s not just a marketing gig. This feels like a curated moment for a new phase of decentralized AI. Not only is the team stacked, but the audience at Proof of Talk is full of top-tier VCs, protocol architects, and AI researchers. If you’re unveiling a vision to reshape the DeAI paradigm (especially post-DTAO criticism), this is the battlefield. If you’ve been following subnets like SN1, SN9, SN13, SN25 or SN37, — you know this group is operating in a different league. Something foundational might get dropped. Thoughts? Are we witnessing the quiet emergence of the real DeAI marketplace here?
r/bittensor_
post
r/bittensor_
2025-06-06
Z0FBQUFBQm9VWTQ0eXFlTDBrcWM5cEZ0V1Brc1lTLTBIVE9HbmZQT2dKdko0RF9jTjlTV2MzVmFYV05ycXUyeklyYWpBNFNHS1JOMTJiaXpYb3NEOWl5VWhXbmdibnBkLTUwYVo3NHREZ1Z6SUtVOG1wS0k2dEE9
Z0FBQUFBQm9VWTQ0NmJSLVFjV1dLSE5tYnIzcm5CNGZUek1SSld0cnctTzB2dlFnOUo3aDBhTEFUcjRLSWVxc1VhWWlxRlB6M2VTd3pRb3NOVU4tYTFVMS1hektjbW5CTEdEeDBMeHlQWWlNeW8ydzJEdUJlRTVoTW16M1RZY1RRdnZ3LWV2ZnpzLVpuUUpNM3lJenBkeGRmTW1tMGRDZzdwUTRyN0xMbHZYVy05bTFmdjlsX0hQb19rbWhpMEtDMnpTdTlPdF9JdFg5b3pURWFXR0xEREU2SWZpdmV3Y20yZz09
Hey,Just wanted to share that we’ve officially launched **SecureSwap** today. It’s a P2P trading platform focused on Monero and privacy. No KYC, no account tied to identity, no backend access to user funds. What matters: – 2-of-3 **multisig escrow** – Fully browser-based, nothing to install – Currently supporting BTC & XMR (more coins coming) – We don’t control the wallets or the outcome of trades – Even if we wanted to, we couldn’t touch your coins We built this to be simple enough for people who don’t want to mess with config files or weird UIs — but still secure enough for serious use. If you want to check it out or help us stress-test, here’s the link: →[ https://secureswap.co](https://secureswap.co) Appreciate any feedback, bugs, thoughts, whatever. –  SecureSwap team
r/monero
post
r/Monero
2025-06-06
Z0FBQUFBQm9VWTQ0R1pIMEI5RUxjcXdacmNIVllHck1rQThPR0RYMzRnRnJNVXlBMi1ZVGx4Wmp5WmpRTVdlY0pQTDRZeDNTVTlvNkJWUVpzcHY4LThSZl9TOGpZdmZxc0pha2pKNFFBSUFhTkRLbG4tM3ZmbEE9
Z0FBQUFBQm9VWTQ0a0FVNUFubEl4NEppWFRWUlJDVmMwc0JDQjdlVjAxWFR5anFPVlhEWjFmTTM4V1pNa202blpuLXZGY1Zjc25tbUdaaDVCckxxaWo2UU5OX0hJSFZBWVJSOFBNVURBMi1yd2NCNHBmR2FwdmpaTHRMTVJwRV9wSWN3TDlIYzF5N3hBQjJXZXNBSHloX3FYa2pJeC1uNUdPRnpJM1JTdF9ocVE0NW1vMFl2czVoUzF0TFBfdGJWdUhIZHNpcFFwRFAz
Don't mind the volatility if it does even just -1 hp damage to he incumbent system and its way of spending resources that I vehemently detest.
r/bitcoincash
comment
r/Bitcoincash
2025-06-06
Z0FBQUFBQm9VWTQ0aU81SFp2bGFpaEZHcFVTM1lPc1BENmFtNTBiS0tELUN6ZWNrNUoyRnl4RDRFcXhidk15VlhCaXpyaTdNMHZEUHp4SDZVU0FHaXVGNVJ0d0hMbHdXM3RFMmNNSVNSdWNkd3FPT3o0VWJNZm89
Z0FBQUFBQm9VWTQ0UHhiU05PNl9IMkYwMWxfWDQtNGJ1WmtMa20telE3UVRteURXaUE3QXFna0hzME9vaFc3WmlLSXQyOXM4cTF3SnVObFd6WlhHTDRGZGxrVWNYVi1yVEY4LXZ0eFlKZEFtbkU1T3ROUW1zN3JhU3htRXVfcTdhdGc1eHdyUE13MHFaM0hPcmF3Q3JVM0NubmlTZk4zT0xEM2RJWVcwWnI2bXNNTEhQWlJrVmtBWUlfRzhnV2NPcXZ0Rml1dm5EaThw
Fuzzing is a process of automated testing that intelligently bombards software with random inputs to discover security vulnerabilities and edge cases. Fuzzing is very CPU-intensive, but luckily Monero has the significant advantage of access to OSS-Fuzz, Google's powerful free computing platform that continuously tests open-source projects. Monero has been integrated into OSS-Fuzz since June 2020 with a total of 18 issues reported, including [5 issues](https://issues.oss-fuzz.com/issues?q=project%3Dmonero%20type%3Dvulnerability) that OSS-Fuzz labelled security relevant. However, the current fuzzing harnesses report a code coverage of only 10.55%. This fundraiser will contract AdaLogics to research and develop an RPC harness solution within the OSS-Fuzz environment and cover at least 75% of the RPC handlers. This work, once completed, will provide better assurances of code safety and security even after the FCMP++ hardfork. The [MAGIC Monero Fund](https://magicgrants.org/funds/monero/) started a fundraising campaign and we are currently asking for donations. If you feel inclined to donate please click [here](https://donate.magicgrants.org/monero/projects/fuzzing-monero-rpc) to learn more.
r/monero
post
r/Monero
2025-06-06
Z0FBQUFBQm9VWTQ0REVodHBNX1ZfWXpoTUFXcmdScGhwdXVDelhJaTNOQXdpczAyaWFjbldKZDdrMmRkYnZEREkydWpPeGd1SlNfZGZFeXBUVUFuYUNSRkxTcGVLdUxva2c9PQ==
Z0FBQUFBQm9VWTQ0NTBWTXBkVFktY2tzZlRIaHNlZ0w1dU5pZExyQTVUWFhfR0xTMlkyeE9Ka0NrYjZvSWdOb3JOMmtPS0NvNGgyaFdxaGwyWnNDT29OMEZkRGswN2xCOGdxNUtrY1dyUDdwWnR5ck5TbVBBbDlYeTQyTmo4SktTLUU5Sm4zSDEzRHVXQzlaM1lnekp2MzZCc0xsdTc2LVN4XzJ4TWJ3TF9waDNfTzRHQmtld3JnaXAwNGh0aEhuS25rdkxrNWxEcEt6b1JtZTNHVS1LUGV4QlZkXzhmYVUxUT09
Have to wait till they respond. Also bitcoincash is its own currency bch it is not bitcoin converted to cash, so your in the wrong place
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0aU5xZGFTQUdrWkV4a2hVZENZR2RqMkwyUDlwT293YWFPejhlWUFPNlJaRW9LbmZ1V2d1VUU5dlpjeTdCZjZyR1N3eU94ZS1od2NHM0xXUXk3WWpKZ0E9PQ==
Z0FBQUFBQm9VWTQ0dEpNN1N1WjBxTHloNnNQQm9ERDlJT053MmZnaHhKR3ZzNzNxVm5JMjN1OGJwaUZaeXdORTFqT2FLZTdvSHY0T01DQ0Ywa1A5X2dyMVYxWTZyamZ5UnMxWE0wTFp5ZDNFNTF5Q2g1S3lGOWt2ckpKZFBwcm9zM2NEYTZGYlY3YkJkcENCaE9jQWZrWEdBUi12a3NnOHpPQzJUNzBZT0ppZml4UGx6ZThrUjFXTzNzRVhjZTZtV3RRX1VDMXBWQmlIS3otVXJOUHZhY05WVEZFc3daZENJQT09
Bitcoin Cash (BCH) is different from Bitcoin (BTC)
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0N05mNXhFclItUTNUNFhlaWRaMDB0SDRsU2o5a2tQa2w1UDRwazUwd3g3cEZDcWRXNFBoWWllMllRX1l0THN2TnpNNFJqRDdIRjRHTWZtNlFNckpwMEE9PQ==
Z0FBQUFBQm9VWTQ0ZlpSU2g5ZzRxcmJ0VVpfTm9lX0pRUjQyN2J6bnNvWkp5bmd1aFRVbzZnbUprbWpzOWczeGlDdTl2eDlEZE9YQkdIRHJlUXhzcFBWeTVmbkdlVlVDZDdqQk56bzFBeGRscmtzeUZ3ZjluSVgyVENCX0lMb091bGw0enN4a0RvaEVFOF90a1htS1F0UTNNLUNvdVRnY1llN0NNLTY1bWFUQXVKTUJaNkJ6a21yN3dTQVFVVkNBV0ZCYnlORi01b0t4QjJFSEFMVWRHenRnM1pUMU1id0hLdz09
OK, but the thing is that they haven’t responded though and I waited for over 30 minutes plus the currency that I used was USDC on the base network and Coinbase says it went through, but I didn’t see any money for a while and I had to leave because I had other stuff to do
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0dmxRUmllV0l5Z2pRX3JENW1hRHNiblJ5anNZUGxGVUJEM1BTbkdnVlUwdDE2Z0VUNldEWjkwWkZQSFZQM1lRZDhxWGxoVVR0UDlkWTlaenpUUTItSU5PcE5veUd6QnZNQVhIdi1mM094ejA9
Z0FBQUFBQm9VWTQ0cGtRNEhmWGdUSFE1clBtdWg2WktjM3BwcmRZam1qa05WMUFUazZZTEM4eXV5X1V1M21CM0puMmtJUU5IYUhYQUgyekptODhoeVpFSEdRZXFrUWNwWXVrY0ZoVDlncGFxQXpMYjNPYk40amtqYThZVmxaSGNRd3BleVlEMUFjcXplOHU3UjEzRVZST3NweS0xdEtoTVIxQlBQUDluNERhaU5jQUJGa0N4bV9BRk5JNVlJU1RYNkpjVW5GRmxTUkRYeHB1MS1ZVndZTTlFQmFnb2stMlZRUT09
You sent USDC from Coinbase to the ATM on BASE hoping to get cash, correct? I could not find any indication that BitNational ATMs support the BASE network. You probably have to wait for their reply.
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0V0RsNmRELW9BbVp3RTN3ejNxYzJTaVppRzluNkViYzZjQ091T3pKVFNOTHhMczF1bmpPMzNTTGRZLU5Wb1JuQ3ByUm15S2pmcTRCZWtnWWIzTXhqbGhZc012Vjc2UTJxZUY2RnY4VFNJNlE9
Z0FBQUFBQm9VWTQ0bUNRNzRlaC0zMk5EcDRtZms2QUtHaW1GeXhaa0VQdlpxVl8yQmYteEpEVDV4dHRyMk5UdmJIX185VjZVdnlPWGxxMldsTFRtbmxmNUlOVzlsdm5pMGRvYUdoYm15dzgwNmVKM19DWkxnbERQclRURk9SMUZIazFCcVgzVi1TY2czMW52dHlCUFViMjZueDJ6cm9CMEo1LWV0bEZWWW1SaXNfWW1CaWsyTndKTnlzaHlNQlhFMUMzYnlFdE9BQ19tejRoNXpsWUhmS1hpUlNrUzZKeVB4Zz09
On my Coinbase wallet it says it went through but OK I’ll just wait for them to respond
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0c3drSnk4czI2blh3UGJQR2UzcVl3X05KcUVGV09GRnctZkNaU1pSM0c0UXpxcmwycjVnb1RHbV83S1dfY3FSaE82TTZxUmlZNC1Tc2V6OHBzVE1jTHVBZVZwbGd6ZkI1dS00VG9mXzFrNTA9
Z0FBQUFBQm9VWTQ0Wk55bnhMTXh6WFhBaEVrQnlpUWw4MDItTVUyQkNqQjJxSFFCVTFxU0c3QXExamZnaWtBYWVZQUpCcHN3WWN2eHJwMW5WVWdjcW1JM203U2tEbHpRS04xSUdkc2poUFZoOG9LMHJXdURoaGFmeDhfVnJRR1gyV1ZjTXFJZUxkUllBZzdjVEVkWkRvczZmd1UxT2lycDc1RG9kb0RvaEdDV2Y0ejNER2ZIa3Jabi14T2czckxJU09PTDBRcGE3ZDJNN0N6WU5wOHEtQ09ndXp4RVR0QlRkZz09
If the ATM is not prepared to receive assets on BASE, the transaction might go through but the ATM doesn’t recognize it.
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0ZC1IYmVoUWxjOHQzdEZQV2twMVNKR29yUG11b0Y5a0pwTXcxLXM2cUlXaGVSX1pDeERheWlQUkpxeFN3RFZsR3NON2xDSXV4aVJHQXRpLV9VdUJqeWpKbGFScjFiV2dCVjFvaV83ZDFfR0k9
Z0FBQUFBQm9VWTQ0OFB1STdjcFlZTTdheHNUa0ZlYWtseTFMcFZrOWhCSlNsN1l6N210T0F5ZzZGai1Na191cEJFUzV6eGNEOWFRTVYtQzdwV0pRV2F5ZWZDR3drZjhaLTlhbVRKXzdkLWJXSHVyREZWeUZKTHZ2QnlzZFBETms5WmlUclNhclZPQ1hFbEdLYmUxcFBUNWdfak5OZmRRVENjVGRUUHg1dWRvVE5sV0xaWFZYSEVzalBBZm5GaThUX09FOFNXU0h1U0VTaW1jVFI4VEFiT1ppSEVLNmZMMm5xQT09
So then, what’s gonna happen to my bitcoin?
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0THRRUEhqcHR4RkxlVDFVUnY2bEdpbzJGN0k4NUxfSF9jVVljRkYyR1AwY0VuREFqdnZRdmQzTHJ3dTdTeWdXb1lxZFFSaG5xVVdKYVJfT0Y3T1NWeHp3NTNlLTMxWDY0aEhJcUtGb2N4TTg9
Z0FBQUFBQm9VWTQ0S2VQMW5pMl9vRDdpdllzTlo3TWxGMEpXRW8xcmdEd0tQLWkwQ1Q3VFNTWkFUZnVQbExvY2RDZnFraENaLXlhVDlsSVNIRTJwbmV1R004dDhkV3p0QjBXNlhrUEpQc3YtNEhtTjcwUFV0V25OWDlPSl9KeEJjYkYzT0ptMk1Db0tmc01ITnc4VmR3REVKcnhrSVg0M2k3bWdXVXFOaV91QzR5ek0wTDQxMVZuQzZ2Xy1zcno0R09CWDFmNENvQkxYUFc0bTB4VkVKMHU2ci1RdDhuTldXQT09
OK but is there any way for me to contact bit national and see whether or not they got my money like a phone number maybe cause I already emailed them
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0cXFSU2Fpd3BkNXRMX2UxNU9yNS13YktqUl80aXF5bUZENDZkNVViQWtxTms5MEx6TGUxWUxvZ2JuSlgwWlpBR3A0SXV3SW5EMkJRcExSRzlHSWFjNklFQkNvS1MwNmNSdDJ0WDVlV2V3U1U9
Z0FBQUFBQm9VWTQ0Q1E0OThmVXNKUUNsbS10bEd1V1FxLUc2a3BnMHlDUHcxSTVaZnhoTElNZ2xuX21HV3pRSGV1Ym1TcmxnaExFX2xnZkRYNnJJeHFsRkhtSVNGcUtkN3NCcElpZ191QkR4Uk9OWlhkdUxOS2xNZnRpNVhDcmF3TEp6NEFVYWMxZDJLVEpPZkEybERkTW1DTGdiRmpfQS00LTdGOEJvaUhZZzY0U0pSS2k3NWVjZUZxUXBEVUQxQ3ExbFRZenpKblVPS0hNdHdPXzdwVk5Bd2o2UW9iUE5TZz09
How much have people made from mining as an individual or as a group? I am a new miner and there is barely any information on the potential.
r/bittensor_
post
r/bittensor_
2025-06-07
Z0FBQUFBQm9VWTQ0anRtLW9jLVhDbmxvNmN0VlpJQ3JObVVEdkVuTXhEUEhvZkZPR0R5V2NRSzZsSFcwZzZYcW9IU0JWZWVkWF91WExvQktSSVdFeHpyX1FVSGJZek9PV2c9PQ==
Z0FBQUFBQm9VWTQ0aUVQZi1fcmVyVGFMSEM0dUMxamJtbzhqaVZpVXZsRjRyWnZ1Z2NmZlNVeW93eVdLM080OGFKRDI5Z0loVlRweEhkYzdaWW5RVkR5am5ZZXZJUXNjQld4NEdmcWxTNzU3NF8tMEUxVkpiTUtXMGs0MDJVaU16MkFtRXJJUjJLc0VHVUlkajNXSmE3OWdwRHZEdlZqSmplelNWY1lfNmZRQTJJU0NPamFzZmR4UUYzNlFQSzVQeWpHMW5UTzQxWjlQ
Try posting this in r/btc, because I see they [removed] your post in r/Bitcoin .
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0NkxLOEVmSEU2RXp3U3lfNWVKbGZMSjZPUTEyaHduNGcxMFRoRGpGNzc0QXJ2aTIyUFFXUHR0LWtQSzc1VmYyajZaT3BoZGFJNnctVjVYYkhXV19ydVE9PQ==
Z0FBQUFBQm9VWTQ0N0pJeFc1RElCYTB5WHlQenY3aHZiSFVleU1rQU53MWIwd1dQbFNvX0tqcUcwX2NNNXQxNlJJWnhTUlZaQVRyREc3SUdFVThaRzY0Tk1aRjVhWVpNMksyWjhoRXRZeWdkYnNhSHRZd2xKTGZTb1R4Q093NHhDRGRaYUNxeXQzV2dlbnFXR1hveW45TUZDUW5tUnRXMlZBMkxOeHozZUpZemhMeHB1OENBUFJ3dHN4Ry1wS1VHamUzcktVOXlTX2ROSXlGWWdzY25CS1Z2UTIxY2FQUXdBdz09
(Good video for beginners , specially explaining Tao app graphs)
r/bittensor_
post
r/bittensor_
2025-06-07
Z0FBQUFBQm9VWTQ0cVJTUGZTWndrX1NMNWZndWxGU2VRQVdlckhkcGJBNEx2ZWF5NGlLVThWZUJ0M2JxVk9mWXRRMl96cmVNckZFcUVJZUNkVXU0WGw2cXI3Q1RNd3NfNFE9PQ==
Z0FBQUFBQm9VWTQ0el9SdEJzeWpYbFZ5aXJQVlM5RnVqSFJSOVNfQ3pMOGM0aV9OV3UyNHJiM2YzZHNiMVRfZ1JCU0I5enNWM2JGeE9VM3p5U1JlSVlGa1Y5aWd3ZG5iNnY5QnhNVHNrYjBuYTlfbmhNazRzN2o5bkdnZXZYMW5RT1h5Um5kSHNKVEk2ZWplbVpzMVZGZzV4TFZoZENteUp0SG5uYXZCbGczWVQ5SU1YamxXZEtlcHBUakozUlNncVhvR2RxakduMFlRejFETGpWMEN4RkVFNnZCUUFFdFM2QT09
Hello, I have a question that might be simple to some but I can't find easily an answer to. I recently sold some **BTC for XMR** because I value **privacy** and prefer avoiding centralized systems. Now, I’m looking to **sell XMR for DAI.** I don’t want to go through USDT or USDC since they’re centralized and can freeze wallets at any time. I also avoid centralized exchanges for same reason My goal is simple: convert **XMR into DAI**, hold it stable, and eventually **cash out to buy a house**, without unnecessary risks or interference. So my question is: **Is there a reliable, decentralized way to swap XMR → DAI** that avoids all the usual headaches?
r/monero
post
r/Monero
2025-06-07
Z0FBQUFBQm9VWTQ0a05EYUl3ZkZfVWZaclNxMnNOV3BFdkZXWlg3WkdpUUhZcnZJWXc3eHZ0a1R5RUw5TEk0eDhLcUVrVTdZdGNrdGoyUjIyanc0T2M2X1RpamtpX2FxWkNEVFFzcC1iZ1h1eUlRZ081M2FuQjQ9
Z0FBQUFBQm9VWTQ0bFBXeEpLX3ZQYnRtZ3ExM0F1RGNQUEFpZFhjeGE3clJyQm5GbjB3Sm1aZ0FlbDRCVkRLdndmSG5iNXA2TUd3cFkydEdMYU03Si1jbVozRmR2eDA0Q2xTakktR0U2LXBzbzBtNzJWeVpOWWd5aEtaSHVtcWw5R2txZ3BJM3RRZHNXYmNHSjdiM0tMS3MtNmtPZVI1Y1pPemJtMzlwUHd3bnFGWDd4VmJWblAzdkFkdGtIdXRqUTRrQ29LX2d0OTNu
Rule: 6: Off-topic. This sub is for Bitcoin Cash (BCH).
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0ZVdGeU43elJ2WXIzSTFCOGJRcURzaXpEVldOWW1mTXlRWXB1Rk0xbXUtVkZGbmJ3bGRsTGxyMjNPYktWM2RIaGhXYUszZXQ1cmJmRWlUbnMzSU4zbWN4MGs3S2NWR0pvdHd2bWxyZldhcjg9
Z0FBQUFBQm9VWTQ0UjVKMW5peHcwR21RVll4TjFaR2VoRHlORkVDMXNSLWc3dG1YMGg4TG9sZHZ5R1o1Ml85b25YNllnUHNjNEd5ZzdDZjZ5WVJJNFQ5N3Rqc0s3VXJJbzhYcHpwN1FyY0tkczdQcjR1NnpyS3U2TzhCUWd6S3hCVlFSSUJkUnlaWk8yekdRRkxhVlpmRW9oNldFSzN6d0U2THQzM25lcG4wNWc3aXZibVZhZHpDSlJPSkFuUmJWSXZ1endGWkJ0dmd4OVVwQ3lGc1o3OHBQV09DX1RjZWl4UT09
Hey everyone, Just wanted to get some feedback on my current crypto portfolio. Right now I’m holding mainly Kaspa (KAS), with smaller positions in TAO and Qubic (QUBIC). Kaspa makes up the majority of the stack. I’m bullish on Kaspa due to its speed and PoW design, and I think it’s still super undervalued. TAO has been getting attention in the AI narrative, and QUBIC… well, it’s speculative but intriguing as hell. Not looking for financial advice (DYOR, of course), but curious to hear what this community thinks. Is this too one-sided? Should I diversify more? Or am I sitting on some serious moon potential here? Appreciate any thoughts!
r/bittensor_
post
r/bittensor_
2025-06-07
Z0FBQUFBQm9VWTQ0NWEwWENZdEw0enIzN25tNl9raFN4bDEzUTM5YnBJd3M4Mk01UDhnTmpDaWVtT24zS3ZGR18xMGdkY3Qwa3pBNEt6NVhUM0RHLXpKQmdQcUJmTHZtOTNhV0ZMbnN4bmh4SDA5UUs4LVV0am89
Z0FBQUFBQm9VWTQ0ZjNWbUlfb3RWcnVaYWtLbDNTeVZpbDBwcDEtUzdHenJQSFdCSmo4SFdsa2ZNRk51UUZnZWxobnJjdDlBdHBRSnAweW9LdE85OUdhV1pqbkpyS3lvYmJJV3l2NjBGVTJXV1BqeTRSZkw5dmFSdWpFMmE1MGkzNE5CUHQ1aTM0djY4TGhtYkdDMjJKOHhqZEFNc3E4Y0F5bHpyd0dONHpxQ1AyalBENllKYVk0WUNfWWNlWkFHaVFRZzZ4OGtIbzdw
https://preview.redd.it/…8a872b1d6fd6d3
r/monero
post
r/Monero
2025-06-07
Z0FBQUFBQm9VWTQ0UjhRZXNURlZVYzNJc0xuc0RITE0xUmI4eUdtbXlqdlVoSzdIYVFSaHk3bXdrSHNxOTFRZUNFUWdqUF9zUzVkQVdrTDQxNlJUQXhUV2s0dFpGNGlpd3c9PQ==
Z0FBQUFBQm9VWTQ0eG5jQUVaa29JYlV0MFpQUGV0TUhCZ3VCUVg5QXFPVmh2WWdCYVd2UmpPcEJwMXl4ZlhDN0RsRmJjMFU0TDJTSlVreVBVZUhMVGJhbWhiYjVLMjB5LUUwOWZCenk1QlJ0bVZyTlhKRnJid3RNX0l5N2ZGZkhiLVhnQWJ0SDdwcGNhUlhYQ3NxWHF0MHJBWjZiMDRRcTUxYUlwNEh5cjRwNWdLakdCV0ppeC05WUJjR045d091allhTjJMYmVBbjhH
Hear me out. I think HODL is just for Bitcoin. Wait several years, keep DCAing, don't even check the price. Store of wealth and all that. For those of us wanting to trade, I think alts are just oscillators. They have a base trend and very rarely (once per cycle, maybe even once per year) have a huge pump like this: \- massive pump \- decays away slowly \- sometimes secondary pumps \- but eventually reversion to the base trend. Sometimes the base trend is slightly up (never good enough to HODL though), sometimes it's flat, sometimes it's down! But great long term appreciation, these aren't stocks! Here are some opportunities: **XRP** Big pump every 3/4 years. It's slow rising long term but I would never hodl it instead of bitcoin. Today it's way too high, I don't believe it's established a new baseline, I don't care how close they are to the US government. It's heading back sub 1 again, just a matter of time. A terrible buy today. If you hold it today, just sell it. Literally no point owning it right now. **ETH** I think this is a long term slow grower, again with huge pumps every few years. Honestly, I think it's still a good buy. In fact, the recent pump signalled that there is still pump potential in ETH. Some alts pump twice and never pump again, I think ETH demonstrated it will still pump from time to time. It's such a high market cap that it's pumps aren't as violent as other coins but the pumps and the decaying dumps do take quite a while so timing is not difficult. **SOL** Looks way over-priced. Remember, these are not stocks. There are no discounted cash flows behind the scenes building up asset price like stocks. Alts can grow baseline over years but not hugely. I think SOL will eventually go back to sub-50. Terrible buy right now, you have no idea if it will pump big and beat ATH anytime in the next year or two, or dump to 50 first. Sell it now if you own it. **DOGE** I think this is a good buy again if you are willing to be patient and wait for the pump. When it pumps, it will double or even triple in price. How low could it go before then? It's 0.18 today, I can't see it going sub 0.10 and when it pumps it could go pretty high. **LINK** Almost at lows again, not a bad price, reminds me of DOGE. **BCH** Pumps are getting less each time but I still think it will pump higher if you bought today **LTC** This is overdue a huge pump I think. Even if it's dead and nothing happens, I don't think hard to exit break-even. **DOT** This is a bargain, I just wish it was easier to buy from DEX/swap services. Even if it only pumps to 10 again, that's more than 2x. To reiterate, I think the only trading game is to try and buy at value prices, don't overpay. Wait for the pump, obviously try to time the top but even if you sell early you can make 2x easily and possibly more. Way better than BTC. I have BTC but I'm starting to think it's a waste of time, the risks don't justify the rewards. Whereas alts bought at low prices are very low risk.
r/cryptomarkets
post
r/CryptoMarkets
2025-06-07
Z0FBQUFBQm9VWTQ0Nk1zQl9vemdEeFZaUlVBc2dtSmZUcDdZeDg1ci0yR1hjd3ZPY1NtMUdGVURuM29QbmpqQjMybmJncEx4VlNoc2l6YzQ2X2RueTlURHcwNzJzR0RUblE9PQ==
Z0FBQUFBQm9VWTQ0Nmg5b1F1R2I3VWdaZW9aR3k3MXljR1htN1RCUGRaWXdtVXpkOHhaSWVhZTl4dWd2cEVXMWhjV3p3cGd0bjcyc2hhb3NRWHIxbGVIcTRkVnNDcUplTHVnQzhjUTBlcE9CYWxWNXRrbExEbW5FVWtFZVl0RnYxeDVBOWhPcmF0MzhmdENuZVA2d3ZXMW5HVkEyeUxyb3RLckpZQ2t1cGdpRm1udS1RMElnMkFFSzMtdTZjTHpWVEZvNnVQbU05YWQ2NE1VOXNwYTRBUktZXzZlUUVicXEyZz09
It’s rare these days. Most are filled with bots, shills, or just chasing pumps. But every now and then, you stumble into a community that still feels real, where people care, contribute, and aren’t just waiting for green candles. What’s that one project or community that still gives you that feeling?
r/cryptomarkets
post
r/CryptoMarkets
2025-06-07
Z0FBQUFBQm9VWTQ0WEpPWmJGbW5OSWEtamVfdUFpSUQ5dVJGQ3E5bzFvVl95MkUteUtaejBQYktrU3ptM3gtdWowOGI1SjRsN2FRWmZmVXZueUFCTWZvb25tUEFXNVJaVXc9PQ==
Z0FBQUFBQm9VWTQ0eF9iVXVyM1o2Y1liMFI1VzlnS2RKMHBFbk9VZ2QtczRHMHY5UWhmaGQ0akVSVHdVc1h6OUgyaHFyb1lpWHVRMjl4djNLbmFCYW1YMTlvejk1ZG1tdHhZVFZLb05laUxyMFVZR2R5UGR0czRWU2RaZGRPZFB6QVJrOVRRdXNILUk0bUNGQUpYZHppeUROc280WHM3QmZNQVRZdm9iQUhMWTA0U3UyRDEtQlZ4NmI3SXByTG1oWmhXYTFFOEFEcHFfbGdpSXctZUhPclQzX0k0S3FsVUxidz09
Hey u/djole1972 . That probably depends on what miner. Most popular protocol is probably Stratum, which the BCH node doesn't talk, because it is a mining pool protocol. Usually there'd be pool software that communicates with a node. You could try running a BCHN (Bitcoin Cash Node) on your Windows 11. Downloads for Windows 64-bit are available on this page: https://bitcoincashnode.org/en/download You should just need to run the installer, but connecting a miner directly -- for that you'd need to look at instructions for your miner. Maybe it's possible, or maybe you need to install some Bitcoin Cash mining pool software as an intermediary between your node and your mining hardware.
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0bzAwb0RkQ1RJUlE4ZnlMOGpLVUxmVmxMYlF4cXlXVFVnQ0FyX3g2eDF1dHFhS2FBWldhRWNrMWFfZ3Utek54aFg4TncwUXpLYm9tYjFIS2k1d2U5cFE9PQ==
Z0FBQUFBQm9VWTQ0STdPampDbjVyR1BuM0dWaXhGeno0YlRpSmNCTVVaaEFPMmxybGdjS0tEYmpmOHM2aHBlT0hnOEh0LTVZT0JoVFZ6LTlPS1kwTGxmTFc2WjJ4SlNaX19DbVl3U1FvOW5BUVM4NDctaWdpOEI0b3BZSWFKbFVuRTNvN2hsQUtmTkpBeURNRXo1VlFVeEpUcjRyeWRQdmotLUZjVUxhZ2kxcklCc1RIUlRmS09ZPQ==
right now, we’re at **clear lows**. / Do you really want to wait until **$100+ per ETC** to buy? You need to face reality. zoom in on the 2021 ETC chart. and 2017 / now, there’s an accumulation phase, then distribution phase (Bull Run) we just started / **7 months left in 2025** **Crypto moves so fast**
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0MjR5U2kwUF9yaVY1VWV2cDZrZl81bkd2Ynh2b3RNVHQ1LTlaSU5DWVhHWVRqRDFwVWUxNzc5MWVDYWlLQ3NpZU1rdlZZT0xHOGplOVJBMTAyWkppMnVzNXRXbXpMX0lKcWdBX29ERzhjNmM9
Z0FBQUFBQm9VWTQ0RG13UWZ3U3BnOWhVRXFvb3ZOUGYyTzBlUnpEcVZ2M2VnczJ3aVlKdXhRRmhWeWJDYW50ak1MVjEzTDRqZEFrY1NaanRlQTZXMHlrWE5GWlJkVHlacU1BSVhlWk83dUZhUG9jR1JCclRmSVh4eUotLVBXX2g2SVV2enNsWlUwN1lCc2tHY1VwV3FRVVVTaWNSLUFaRTUzTzlmSFN6T2FxMmVLTnBORGtvOEh4cE9OSGVLX1c2VTVkeUJ2a25GWGRjZTZ3V1lReGR4TGNLYmhXUVM0Snk3Zz09
hello there can anyone explain how monero can be added to a website,like how a customer would have their own wallet but at the same time i host it so they can top up the wallet ?
r/monero
post
r/Monero
2025-06-07
Z0FBQUFBQm9VWTQ0QjFXanVJc1VBMUFnX0t4YTVod014TENTZk0xeTZtNlJfdjE4clFSWkFfOUxuVTFiN0ROUVBudFJDYWZrZ0lSVWFubndtTlJhLVVLQlNQY2xhOHdnbVE9PQ==
Z0FBQUFBQm9VWTQ0WlBmNHNfQm43NEgyTjNaZUpkeGVRWmFkUkQ5YXMyM0Y5RkszZXY0UThMNW81QmQyQXd0WEkxZXZRS0Z2b2lTUWZreG9ueTRyM01sWVgtMXFHcFM2elh4dXZxdGRxTjNnUUwtQXh1WV83dmZuTkRUYkIxdVNKbmdVX0NpSkF1c1E2V3BmWGJpSUxnOEo5azY4STMydGpEenB4UFlZVU9CYkNVNDJRdDQ1YzZVPQ==
Don’t give me a whole paragraph, I know what I’m doing lmao, just what the price target is in ur opinion 🤣
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0QmR3Y1hieDJDOFAzMXNiQThEcFNEMzl4b2ZQNk4tV3IxYTYxTmM4eWotSV9zLUE0YS1JbC1DUC1ILWJ3aVZqYkREWkxGVWlCU2VHdExlUUVHck10VGc9PQ==
Z0FBQUFBQm9VWTQ0aThqampnVXhPOTZGTkZsa29KX0NSdXF5Q25jQlM3X19qcWMxS1g1X0JRUFVjV1B6TnRnUl9FbkVuVEJHVjBaT0xBSGhhRU5OZDdJSW8wTTlGd09uU3Z5b282YWlDdHcwSF9VdWZQU0o1SVpjWi1CRWdZb2VNN1VfN0FZaTBlcHkzNGhQNEdTb055NWNWclpPNGhDT2tDNXJ1X2k3enZkWGttemhaOF9YYklNZFNXa0w2SFBtTG9zal9vUXdpNmI1QXNWeHd3cVNWRHoxSjgzRUJ4ejhwUT09
Price target? U didn’t answer my question, it’s obvious accumulation phase😫
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0clA2b2hSYnQwWjlvdHZjandFQzRHWVBxbHliUlg1dXRwY0EzOTdDci1QbU13Ti1BMkpqRVhkMlpUMmJrTzJrb2tiazc1VU5hSjktdTU5eU9EcWhPRmc9PQ==
Z0FBQUFBQm9VWTQ0SlpVMC1sNW1rRUI1UXlIYnA3MU9RTVhmWFNoVXBaQkpRRE1EOTBLZDRXRWt6UE1lTVQzTFl2Rlg3elZwUWJjUmlSdWxNSE9DaUliR1NkRVpIbmFEbmcyd0hENlQyR0RjRkdsUHE0WG5zM0ExWGNLRU1BR0NBdGJWaF9Bd1YxeXJzckFPZUNtVHJzTjhGbU9ZWEx0ZUdsTGxwLXR2bUdPSW42RktVQzZtNUdUeXZHM2tfT1g2ODluUVBuNm5yS2pUM3FSQ2pfSUFUallfZ3FkSXFqM29lQT09
Crazy, these toshi kids are crazy
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0bkp0WXZ1Y184clJXUFEyT21fSkJDVDVvbVYxaGd1QmR4c2NCUlkzZ0s2ekc1RWxZQVZTcVF0ang1ZU1rNTRRTmJ0dzJjVzRaQ01tSWVpUFVlVUhfVGc9PQ==
Z0FBQUFBQm9VWTQ0NzlWMVhROTZqNWU4QzNYeGNKREVKdGYwWVJQSFBwNDFESGJFa1czY2NfT0tnUXFHWFcwYzcza2Z2UHhfa0tkY1hJX1hpdG5MNUF3TUppT3pSYUU0V1p4N2ZiOWVtSldaRWpsazNBYlhVVEE3d1V6ZlRNcnBUUk1vaUJyVkpiR01PSGUxS28taVJaR0l6RHhSNk9KbUxGTzV3dnpCTHpmVk5IQm1fTFAxT05aV2JVakdnR3JOVkZqSVZod2dibllpdDFpUVFhWVZRbjlDSEFvOU5saXVJZz09
Bullrun targets 🚀🚀🚀🚀🚀 ![gif](giphy|b85mPT4Usz7fq)
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0U3ZuN3FHUHZFSXd6ZWZEdmVFUUZnSEpBbHBSTmJDUjZycVkzTG1FNVJnQ1NtMUdTQ3p3THZ1czV5SnB1aWFPbXA5YVA0ODdZTUZ5djlMRjNCS2FCN0pZN00zOFRlM1dxYkpER3BWRHZNelk9
Z0FBQUFBQm9VWTQ0MGIyTHczR2ZaTDQ3M0RrSU1sSlljUmtuX3dpdmVrT0F0WHNHNUJET3o1WmptMThtYTBDQ3dlU2JoWW5qaHBGMi1ubFEtNzBTYnFES1dGeEF1SUtmV00xM0QxUmVfak5QOGFXZnJZZkZJQUFZMVFPZVV0ZWFVR3hicWxrR2Fra2lpUXVuUHowdENQUF9LeldjN3BKXy04a2dyMjZrRGRpVXlaRHcxMzY3MV9nUEs4bGo0UFA2bnYzNkRMQWoyYVdoNUNBU0s2c3l2R0ZkWWZ5STNJdE9GZz09
i answered you with clear data, that's the reality / buy based on facts, not guesses
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0cEtZelAzaDhmVjhGYUhZWlBkVEt5eEJoR3JVbjNCT0RiZlAxYXR5T0hhZkZOLUd0UnpMbEZGV0FXaDZQWWR2dFk4M3QyWm9YRDNnR0RtN2NwZ0tpXzN0SE5rZ2gtNzdhaWFiQUZRdXkxRmM9
Z0FBQUFBQm9VWTQ0NHgzcWxPei1ZV0g3ZFg0bmxFVmk3Z2hxemRIWnJHdno4SFdMYnRfdTJoampyOFduMU5ieXNRVF9KN0psRF9fRzh5bWhUcHNVV1Qwcmc4ZGtCSEVCeTVaeTBwMlI0eFF1dlV5Slpfbk0wLTJkamZqNnpvS0licENzT3VXQjdFaG9qYzFsUXRWLXB1TEREUk8zQktZek1KbFdBWmtEbERySG5oclFQS0ZkQ3FOZHhXYVk1OUtPVWx0TDVFekNIOUpEZ1ZIYjVpZE5NTG9VTmQtTU1XZDludz09
$1
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0U0xmT3ZJajRrUXZMWktodmhQSWRkbTFHMS01MGgzNldFSzVsZDk5NkRIbWw3LTljSE1MZ3F0Y0RPczVockpXcndVLVBIZEIzelk0VnpDOUxraTMxMUE9PQ==
Z0FBQUFBQm9VWTQ0WG9mQVRKRHRWQkhTSzUtTTdZMTdzRWFVYW9YcDY4WGVub2V0WTFGZXEyMktJWEN5dXZWRGczREh5Ty0tUE1iSWFfQW85bmtzV09uRTZYVXI4M2h6dC1wZVlaeEpVd050Y0tDaXJqVHpjREtnUnhXQmtGV2tuY1UxRjNLUl9jM3MyZm1QX1ZtbGJpcXkwMlZqaXl3RFRzdGZQQmxCcUNtUDZEMHlLcF9VanFqT21PbGg2VlhncDBSdW5zTnRvRXVjWlRHMy1JaTRDUUxtb1Z0WEJ1WGtaZz09
byro you and justin, saying that since 2017, ETC has done 50X, then another 50X in 2021, and even in bear markets, if you bought at the lows target highs, you’d be up over 500%. ETC isn’t some dead memecoin, wake up from your 0 knowledge!
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0eDNSMXFXaDZSNVNwV1BjS2pZNTFKYVRYX3Atc1A1QW02RmxLRkRkMjd3WG1CM3ZFd0Z4WkF2V0xYNkIzRVFEaHV2NUxaZ0IxODdlWXh2QXdsTkp5WE40QlBsTmJPOFFHVVVSd3U1d0VfbUU9
Z0FBQUFBQm9VWTQ0a2dZRDJUekJGNEl5TkFjM00yT3RXdmdKdklLNHFYTFk5akNvaENoUXU5S1Ffb1ByV09LYjFlMFF3UjdPMnZnWXN4LXVXLUtWYy1yUlBhelBZLWZCb2toUndFdTJlMWRrREM5TzExX1VyUkRDVHhfS0J2bzBjZGQ4YlAweGlxMVExR2dpd3ZqMFEzT0JUUHZfOFVqTHZIdnBVOWRVRFk3clBuNGdYYXhhTTlTcVhldlUtRkNtVVlQRExrckl5U1FxUllaVHFZd01KRF8tZVp6OVk1T2J4Zz09
I know, this bull run is longer than the others fs, this dip may last more than 2 weeks , then I believe crypto is going up, sometime soon. And that’s a fact, there’s no other facts about crypto atm.
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0LV9sY2Y4Zk9ZcUMzMnFwRFlwLWhyUWNzWGxlQXA3eHg3ZWl5N2U2V0w0dDN4VS1mRkQ4UTA1SlpFaXdmMVNxT0s4UFo3VldxdzB3eURxTDJ0ZjhMN3c9PQ==
Z0FBQUFBQm9VWTQ0NGVScEJFc3dPYmRPeFdDeW5DUW52UU9QWk9GRXphRm9ZdlhOWW5BTzhpY3hhbGxUSnZMOHU3LWlBTmt4blZ1UXBXYkpZNzFSQUliUzBwUzJOaU1FU1FJQ2hVN3BkNjg2WlNKblNzd2wwVXBXNGVTMWIzTGZRUHFQVWJCY1dsNl9KZEdxdTFtZEMxanlzZDQ1dmYyaTNsd0RYcmZQQWU3czlIWENINGZjS18zemRyNXp6ZlZHWEQ4aWNzbE9qdEFwdjA3V2dQRUo4YUxRWXlBNjlwcnlMQT09
It's just a shitcoin with no real use. Even the real Eth is struggling at the moment. Etc future looks very doubtful.
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0ZFlyMlVValJOcnc1cURkeWVLaC1adlRhdUxUMHRmSUhqaEtPaXU4eFF3d2t6OGpjXzRwWkQtc2NYZURpTTMtSFFZTmQwWWVBeEFsSGRqQVNwaGFLb1pCMGRyendocXdMZUtaNWx1VVZ3SWc9
Z0FBQUFBQm9VWTQ0SDh4dlZGYWh1OHcwdWdKYWlxTHVyaUxfS2JIb1NDeFZMRG5yRGNjVFZNWkR2dmp1bmNLRjNLcVE3UzJINTFVYUVBa0NUTUdueDNTdzBrbVZhN01kQTFPOFl1WlAxRVVfYkIxcUNpUEZWTENTZEd2bXdoQ21UUC1OOTlYWF8zaFJaRFJiVmV4YXRSNDJ1b0xkeGFwNkxZZ3hoZnRDTE5OUVBfX3F1S250ZGMwRDZKNHFiS1QtQ1VPeENDeEFaOGtrUUlxTzVMMkx3TjNWck9JN3Fqb1pPUT09
This account needs more than 15 karma to post *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/EthereumClassic) if you have any questions or concerns.*
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0TnA3a3lfSHhaaGtkYlVRajlyZ1V5bVpxUGpYMFNYdktrLUxtZmgtdUlMZThKN1NMRE1XRXVVZ1RIYnJYUzFDNU9TdEIwZTJTenVBMTVvUTAxbzl0eHc9PQ==
Z0FBQUFBQm9VWTQ0UkZWTVZneE84bnBEMzJPeHNoczM5VENSc2JyUVk0LXB4a3BSeVZpQVJFbFdkaGl4R1VCMXZIX3MtclFvR3hLQlQ3dm5fdEdyRnNYNWlGMzhQeHNkaUxwWHJ3QVdnbXpneHNwQ1dkVmJqN21EN2NuX3l2RGFtNE9vUnY5NGZQbThlS3c4TjB5SmVoWmNJTG5LSWp5QnpOWlAwckplVmp0OEhBeS1WTUN6eVM5RTlsYjVhZFR4TlZ2aE5uaTlaV1RLUzc2eEJkTFk3MjFSaW1FTkt2SmZkNHBDTmhYanFFcmxBdG1GNVIyaGdJZz0=
This account needs more than 15 karma to post *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/EthereumClassic) if you have any questions or concerns.*
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0QTlIZXJpWnRPM3dwYXlOdEc4eGlodW5FQm5NUjNWa2s0S3o5TWgyTEFFbUdYMlhJbWlwRXp1cExzRDNXWTlxdEdZZ21ZZU5ia3FseDJ3YTg4dFJqWEE9PQ==
Z0FBQUFBQm9VWTQ0dHZ3Q01PbTVZRFRQX0xqd3NJWE05YWFZTi1TZ0tQU2x5Ty1UbXhocTNVeTk5NHhReDFGUVVMdE9LZ0RmZ2Z0YWRnUEdqa2dUSnU2LVRwc3E0bHBXVElSeHdfQ0thUWNjTDVYb043R21PTGdmcmFQTXBwZDlsSnNzSy1zc0RoRi05S2MyWEplbjhlUUtQNmxFQU5HZE1mY3dMbUd2UFRXQW1IYTJaLVpMWVRxR09fTjJuZExNUzJJRlNZazNlXzkyR3JqWFhFS1ptcDJsZzUwQ2wzb0dXalZsYkdzaFZvS1QwLUtjQUdxYkJqQT0=
I’m looking at solana rn, it can hit 1000 this cycle for sure!
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0WDVJa0lUamU5TVM0UUtVc0lOU0RiQ2FWb0VPYVU4ZmVuTVNtWEFidERCcXI1X2k0c211M2xBcmk0QUYyOG5CUENWM0Q1TElJTDhyZjhfVGVlVkdFTWc9PQ==
Z0FBQUFBQm9VWTQ0LUhJa1FMbE0yVXVuQTZmdmpsQUl6c0lXeDYtZzh0azYySWhMWEtlQ0N2Z3R6RFAwUTZmRUtHemRPQ1paRXBWeVkwUTBZclpvT3NfYUVEUEp2YU9Ka05NOWNCZVhRbXg3dHhGQm44eXdna1FmTG1STjlLdFlOb1AwbW10S1R6S0R1WmpmZEhVMW5jNGZMMi1nY3pTV0FROXZORVV5MVZyamtCd3MzZG50U0R1ZGtrYTQxY2J5TWVMcmpjdjZTR3JWUkxnSkVvSG5ra0JteXNFcllhSmVpUT09
Mr Consistent, ETC is the the real ETH , you and byro and justin, fudding since 2017 , while ETC has done 50X, then another 50X in 2021, and even in bear markets, if you bought at the lows target highs, you’d be up over 500%. ETC isn’t some dead memecoin, wake up from your 0 knowledge!
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0Qnh1T2k2WEdWSHZmQzhhMVVWZjhJQ19UYUxvaldWOWgxaTg1eXZwc25iQTNUT3dqZHpocDBtNmY4ZldSbWxxeC1zaFdmcHVkYmxQTXlGR2gyREpjaVNSVW8wZ3NEODBPcUdMSHhtdmpLd1E9
Z0FBQUFBQm9VWTQ0bEcxYWFWdEUzZjJyUjgxUDh6dnlLWlM3SUhvaDNPc200aGQyMjA5SU83U0RBdllsbl9zR1lYTWtsVkc5WTF4VXc2bnhKbVRkZWxCMlJvelZPbzJaSkM0bjRqVG1zMi1hZnBCbXJzanYzQ052cTNMRWdOV09VZU5KNjMxbXJTNm5MOE4xeFdTQkJSUGF5bEFZdWVmTXAwaDFwM1c2M2ZGelViZG9SUE1lNVJTSWs5d3hsSjVXdGFxZk5tRzF0UG9BNHVMNlE1WHRTU2tvUHZzTlBjT0Y1UT09
Yes , Solana, if no network shutdowns occur
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0SzA3Zlo4RW05MFZ3elplTnFsaVUtQVVFdDdMc2dodERDeV9aRksxWDB1Wlk1VEhjVXI0V3VOZnVoZzVrdC04ODEwR0J6SkJWYlhXQzBMU1lGRXJnX2ZhWjUydVJmZHhyX0ZHX3d3cGZ6NjQ9
Z0FBQUFBQm9VWTQ0eC1lOXNudGpJLXNBNTVKMHItMEh0a3hWRTdxZHZGZk01QXRucU92QUlmcjVvbWFlc3R3eDBMQkVsVktmcEk0OXJwUWRvWEFaNFFET2Y5ZkpodFFSRURRTlJ3b2NRWlViY1ZSYWt4cVlPbnd5Z1k1ZWwxRXdHZXpOM3JyMTYyVWptX0lkWG0wS2J2MWpFZk9nblMtS056VnVtUU00ZlNwZzhQYnY4RTZIMlZtV2I3bjFXSUNFWS12M09sSk14OXpwYS1zaFJoSVVfekx5ekQtcFh6S3poZz09
It accomplished so much in this cycle compared to other infrastructures lol, ik it’s memes, but everyone was on it, not much going on to eth. Sol is hitting above 1,000 without a doubt.
r/ethereumclassic
comment
r/EthereumClassic
2025-06-07
Z0FBQUFBQm9VWTQ0cW1DWGVfZWhObkNVbzJzTndKV3pGdl8ySDhRSlNRRktwNHFxX0Y2NG5FM3U1aWIycTRubC0tZ1Qzek9MRXdqMFZORHFHSHFCbVE1NjkyR0dQZnl0VXc9PQ==
Z0FBQUFBQm9VWTQ0MkRpbG5mam5vYkR1X29WSEtQVW9abFVkbmtLYkM3STMwMExNeGdQMmhZZXBRS3E3NXZHQ1hFYzlOaXktbHVwanNvQlh0U0FPZjJtdGFlNDlSelRjeTNhaHg3cnJzYzdnM19NRDE1cFJ1TDJKSE5fWm5tNF9ia1JOLVBydnlKdnRWb3RZNk9NV2x4NzVRZkhWcFV1UHJ3SF80LWhCRDVJSGdVdDAtaVRVSlQwcjNKNHVFWlZLbENTcjN0NnVjSEpvTUFIR29zMUZQMnkzVDNWU3FoQ0hyZz09
Rule: 6: Off-topic. This sub is for Bitcoin Cash (BCH).
r/bitcoincash
comment
r/Bitcoincash
2025-06-07
Z0FBQUFBQm9VWTQ0YUJGOWxXbHpYWUV6cHlsWXFRUFFfRWRSVnFFWkJqdHFJbVJPTDJRN2tiNUp1QlRkQnpuWEltcWI4MkQyaXZCb2R0U0x2Qk1Wa2JOZGdGQmpIMHA5VmpyT0RDbDJYMWVra1JVNlF2UTI3SXM9
Z0FBQUFBQm9VWTQ0TEd1bWotcUJtNng3c0pFenczTG5pMUFYTEdSU3lXai0yaEZRZXJBeEw4VnVicjI2Sm51ck4xT0kxcEpyVUl1TUh0YzlsaVRaLWdPUTY3VnlELUFGTklxa3h0dHNZZVJmckJObmNxSnczMjN4Uk5JbHhGSVRaVTdBSjN2d2xCcmJVZjROaGZpejVsWGdhWE1FUmp0Q3FNLXBoRXFOb2lEbUhuNHp3b1RrakJzTEJmenoxMXMxWl9hTTlPYnpIZzVZc3drNXU0dElqNGZiZjljVzJMWmlaUT09
see tldr
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0VGpfREdNaVhHWHdSelEyM3JkUGR6b2NvMXdwUlZ3cVdVanB6Z1FwWU5pZDhablZMdjRSOHM4ZnFvRWlfTXl1Y2NwRS01UTVDNDN2a1d4ZHBBMVUybUE9PQ==
Z0FBQUFBQm9VWTQ0MXBrRm9ZMG9LZ0Q5dWF2bVJLajl3UDhHZUdDbThKYldQWGQ3cm5NaGVUVzEyYXIwWXBwaDY1a0RVTXhBV1JacUZ4R2NMenlNRFFXenNGWlJWaE5ySnFOaVJuNFNvUC1DcXdVVUQ3b296bVhNMHQzTWw5aHViazVPN3ZBVGhyMXpPdmJLa1VEeGhHNXFleC1aektrekZreXdiV0k5TkRVWXVHcEMtNjlQSVZ0S05UQzRLVWhxME90MGc5VjhHeGJCaEVOUzZuWkFlUUJDNzAtNlFwTWctUT09
After I sell any it will. Let me know if you guys want it to go to 2500 and I’ll be a bro and sell some first
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0WVdQMnNRMW1xVFhQR1NZSDdQdUpiTkVTNXp2ZVJUa0FyeThrRUdQRjcwV3ZXUDVtNTdxUmV1RGdKbHNKQVJQY2E0Qmw5bVJ6Z3V2QlY0Q3VlTkFsZm0tMmViSk5paTdadDJKWnViQWcxY2c9
Z0FBQUFBQm9VWTQ0NFp3eWJndHdmcWxESUF0c2dHamlkSzE1SFdTU0tyQmdUOG9NU19sTDE2aG5NdURibm1GZi03TXJRcVZJdEdLcW55dmhNNzBhWUlaZUdtNVNDTzZCbTJVQ0JOQ3doRklETFBxZEJRdnlaQThxMWYtQkhDLWQ5aUlISVFveUpHWEZDT3dQcWkwUDJkOUpEc2M5Q0hBcGJWY2RjbDNWZEdEWGwzV3JJY0FZRldtVHFKWXlKdGVuS3dTcnhsVHJSRTh5TnE2VUlqYzBwZkJyYmZCaHR0YmxHRW1ET3MzcjlRMmRNbjJTdkNTUWZ5RT0=
I set my sale at $200. I ain't changing it.
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0aHRKaXpiNFF3eU0zci16cmV6a0hIQUVsMGNURThUUHZpckg1WFJ5N2RZMlFxNW5KS1VpX1BQTHZCMkRUSDRQbkdKcWQ1eW4wZEZuNEk4dy1ucmp1R0E9PQ==
Z0FBQUFBQm9VWTQ0QldBYmk5NzN4YzZkTms5V1BVYVZYa0tITGRUMURNb3RjQ0tlZ1ZGNTBiX1ZzZmNBd05Bdy1QM2RQejJLMmhQU1NqVGNlWTY0R0dOTk44QkdpWkNlLTZzWjhHaVRuRUdsR2pyYWVoOHh0TFNtT0xKaTllc0RPUzI4VGFhemo0SmhzSU1MeUF3ZVRaS2p4d2lONjNHVFJLWHN6NzZ1VDA0NVZWSUQ0LUhuc1hyR2lQN2c0OEYydEtVMDV3YVVYUG1YUFNwZVdpdVhqaUhsXzZvUGNSNU1hUT09
100
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0WkxoSy1TMlAwSWNzczBIVDNfZ0VUWDJfcGZOX2tNVkJZRFp3emNnVXE2ZDV2d04xNDlGLXJCcHB2YmtqZW15ZnN5ZklzU2otV3pRSks3SUpNcjV1OWc9PQ==
Z0FBQUFBQm9VWTQ0WUhYa1VOdXJSZVBBWDJhNWFfOTdYQ3Vxb1ViZ3lxZmhCMXJyUmQwQlpXMzZUUjVYLWFYeXI4Mk53NXU1NmVDTjFocEJVSm95dmt2a29Fbmtxd25lN1E4VW8wejdSZXJKajJmODE1a2ZoUENCdnp5VzQ0a2k3WC1Rc0d4RW9YZWNNZWE1dWZqOU9GS2JYOGZvRFVIMW5SalZZdUtleHJVS3JLVEpRazVTYmxLMEEtXzdhcTgxdFFyVjQyRkJrNjZXYUY1aG1BSmZnRDN4V2J5SkY0VUp3dz09
is this sub satire?
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0eFUxdFgtSGx5VVUxNnlZMU5vcEVXS1pEa1psTG92MXF4OHVOM19SNzB6M2JORjFEWFk1VW1Gem5ZWkowbHFjMGVlcWQzVjYwd3Iwdi1vRzlFRHMzeFdsazlqUEcwSzBsZFdjb0Rmbmp0ZGs9
Z0FBQUFBQm9VWTQ0dDcxVTZFWVFNbC1jVWZGWXN2NVFLZzJhYmg5a3k0Z2ZZZUc0VG1IX011OUdhUVczeXRueEo0OHRidmZCcUhYZUhDYlNZWUxEM1YxV0hMOFo3R01UOXFSWjB5YnVEek5lTkdBNlAxekFQVDZ0bHZkSFJBTm45TnM2RS1iR0VyRHp0S0ROck9EbW1CX1RzV3E1NlpfeGZ1MWN0ZDlkM0lGVlluMTlCN3RlMEFQQlIyanlhTVd2dENyM3pNT0FRQnpKYUY3ZmlSMU1KX1YwMFV2R1JZX2I4YXFVVFJRbEhvU3BmQlZoN2xhTElqdz0=
I personal am using Multiple wallets to deal with Subnets / Dtao, i have all these wallets on taostats or tao.app to calculate my Tao/ US$ values. I am still using CoinGecko regular Portfolio parallel , so twice a day i calculate my wallets manually and than change / put value into my Tao holdings manually - well now u can do Dtao direct with CoinGecko regular Portfolio !! - search “Bittensor” click “Bittensor Ecosystem” - full SN listing - click a subnet (example 14) click “star” top right - select “New Portfolio” or existing - Add a transaction to your SN - Boom
r/bittensor_
post
r/bittensor_
2025-06-08
Z0FBQUFBQm9VWTQ0ZlNKd05rNjlNd2RtV0g1Z1VVdWlFTzR0ZURDUFhQTTYtRXY4dF9fdWR4SnpCNXVmOW5jZ01fdHZWUWhsNzVTd0RjeDNGcGFxOVdzMTFBX256UktUQlE9PQ==
Z0FBQUFBQm9VWTQ0TDM2RVVud1BuNWpRUGVuUlJrMG1ydXNkdkhyeXRzVVBnN1ZBOWl4czl6Z0xhd2g5T2JLXy13NGl0Z2ZrVTdDUkZfQmRRM1RDZUhaaEZQekcwV2plWEhXWWZqSk16RGx3dERNbl9pbDV1TkxMODBUdnZSZk5rcmE2aGg2Z0c5N0pYYTR0RUpKSU5laDlfeXJMZ0dhclRKRzhRNXJWMHI2ZWRfSkh6UFM5amRnSlpiN2J3Q25YcXpkeXNoRnJsaHJ3endBVTZQTWpOdmpxSmdCU0htY05KZz09
The only reason BTC didn't even increase the blocksize a tiny bit was to cripple Bitcoin. I'm so glad how BCH turned out and that it is free to explore scaling on L1. 💪
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0Mm41VmlXQkUyTGlpY2I1QlBZMUhGWTgwSHh1d1pTV1d5cHBpX19WZ3pHR3Z1NWdsc0I3MGRaUTlqYmp0ZjBSZWpaSk1OQ01hZXRBS0NHTjJUdDBfdXJRTFg2NlU3aWw4ZHNZRENJU2hKeU09
Z0FBQUFBQm9VWTQ0SlJFYTRWMm1wSzNSVG1jS1VwZkhINTRJc2ZNbElzaUVJTFRHejczSm9MUmszOWhXcXFFazJvdUl4ZHpCdndnWm05QjA5Y2hFdks5NmxkZEJnRnRoVVpCN2oxMUFpUUVSWTB4c0tNM3FaNGxvMHVKNURFOGhkUzJVX3BnWDBpczNZZDVZQmFJc3NlRF90bGsxeXVtVGN5NnZzd29uZ2pVTVRYZFQyY2lOaDNKaURlREFsNkNWU0s3UlBjNnJOVU0xOFRqYzdDQkplMVFkUFNZMlVjclo2dz09
Awesome but im having issues using openwebui and AnythingLLM with my "bcashgpt" generated API key. I should be able to use the following endpoints with these programs " bcashgpt.com/api/v1/" or an i missing something else. Ive added some funds to my account to test it but I cant seem to get this to work Regular API keys and endpoints from openai , claude , deepseek etc work with these programs; however i cannot get the bcashgpt endpoints to work . Do you have examples of the config to use with these programs ?
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0dmxnQnZDMGxpVG1GdmJfamR0eXFWdnRWeXFGa0JtUEJXbVZSY2t2UHdnZjd2QWNIc2VqTzJqc05ZdnhvODJBLUZOcnhXZlBhM2ZOMlFCel9iYTJEZmc9PQ==
Z0FBQUFBQm9VWTQ0UlUxaTM2NmloX1liLThfcDRxNjRORHFtTTNjLXNtTkI2UU95aWFKaXl4RXVMYjM4R2dEeVBNQTVBbndtaGFzMUhNX2s5MlBSQlVjcURRUjFPQ2pIMTgwR3h0Rm5tRTIxSzRvVlVJQTdJNjNJVkZSUzdQQTdZdW5BMU9qY3A4REZJUl9rMmZ3UlVuMjJCSHFHSVBFMzN6MC0wV0F4SlVWNlVyLTljaGJlS1pxZHZfdHlGS21ka1BlYk5JYXJpRVV3OHowUHB3TTlraHdKTDdZUzFNaVRNdz09
Please stay on topic: this post is only for comments discussing the uncertainties, shortcomings, and concerns some may have about Monero. **NOT the positive aspects of it.** Discussion can relate to the technology itself or economics. Talk about community and price is not wanted, but some discussion about it maybe allowed if it relates well. Be as respectful and nice as possible. This discussion has potential to be more emotionally charged as it may bring up issues that are extremely upsetting: many people are not only financially but emotionally invested in the ideas and tools around Monero. It's better to keep it calm then to stir the pot, so don't talk down to people, insult them for spelling/grammar, personal insults, etc. This should only be calm rational discussion about the technical and economic aspects of Monero. "Do unto others 20% better than you'd expect them to do unto you to correct subjective error." - Linus Pauling **How it works:** Post your concerns about Monero in reply to this main post. If you can address these concerns, or add further details to them - reply to that comment. This will make it easily sortable Upvote the comments that are the most valid criticisms of it that have few or no real honest solutions/answers to them. The comment that mentions the biggest problems of Monero should have the most karma. As a community, as developers, we need to know about them. Even if they make us feel bad, we got to upvote them. https://youtu.be/vKA4w2O61Xo To learn more about the idea behind Monero Skepticism Sunday, check out the first post about it: https://np.reddit.com/r/Monero/comments/75w7wt/can_we_make_skepticism_sunday_a_part_of_the/
r/monero
post
r/Monero
2025-06-08
Z0FBQUFBQm9VWTQ0bnpUdjB1WmRScTZKVmp6VDgtdVFScHZWczAtN3l6Vi1mOWZvOGVOUmExelBxT0hTTjh3XzlCQXdBaThfOVkzRzV1YXZINWNuWkxMOGtEcUJQb3djbmc9PQ==
Z0FBQUFBQm9VWTQ0Wk5tTjdMMjJzdzZHT1AzREw2aDJEdG5tSERlM1ZxMjA5dHVlVEFtTUhONWNLUE9oaVQ1d2tsYmhseFEybERSWnVHcXZzOFVkZ1djd3JxSWFiSHRvamJyR1N6OUZkc2NyTGVrVzh3Q0hUYVFMWTdZQWd5aUZyc09MaElPd3hCQklwQmNqN3QtN0p2R200SGREWDR2UFF5VDk0Mm02VzRYOHBHZS11MThNVXp4eDhxQWk1b1FzVnJxRnNBdWFJdjE4
Nah, it's just a shitcoin now
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0T25Ed0c3TnRtdWZDTHltQ0NVZ25SNWJTWE00WndkT1FyWGhlbFhSNjM3alNhenJtMmxQNGdXTlRqWUs4NjNUdHVFY29hRFdPdjJVNTZMSmRNanY1UlE9PQ==
Z0FBQUFBQm9VWTQ0ak0zbUdZM2ZfOFZfeWVodldwWFJRQzNGYUtyMk5vb09kRXNreUxlanJGUm9nNDVTVkllQmI3bGs5ZVN5Z25LQlVyODNaRU44dFgtUjc0em1OQ0FPbFJESEpmM3U5MHE0Z2l3QVo3MURWZGZXT09OSkNJNGVkcU1LSGxHM3RlZmNUSzFNVzBZc0wxUTNLVVVOa0pkZ2xkVUliWkstUV9YbkNNeTdfUXhQRG9YcXBDTk9nWWwtVlNCdHVFMVYwYU1EZWtUWnpQblpwUjFRd3E5WTRReHV2N2s0bWVEUmExckFseUVhMXZrVGl5TT0=
Politicians and influencers are driving crypto market like crazy. recently Trump and Elon has dramatically influence crypto market. Market seems directionless when big players manipulate it, disturbing profitability, breaking trends, people are losing money because of their tweets. And they are manipulating and playing with investor portfolio without being obligated! are they deleting their social media posts now? Do you think we need to have crypto regulations based on radical market manipulation without being obligated?
r/cryptomarkets
post
r/CryptoMarkets
2025-06-08
Z0FBQUFBQm9VWTQ0c3R6YUx5TGhYcm1Ed2w0TGtoLVJlMi13MnhYaEtLWjZyaTQxUGdHelhKQnhiSkZINjhGN2I5d2paQUZVSXMtd0lqajZXa3JlR2hHRW9fWjNTRjQzMXc9PQ==
Z0FBQUFBQm9VWTQ0bmJOTWppTU1TSlFSczZydWZ1bkc4Y1dEOTR5b3pUYXdaSllzS3NMcWVLYWJIOVZMY1NrWGswQjQyZTByT3FydmVxWWVkYzNaemhYbTZBVmZkdlhDN1YyUXhpd04wcDN3aDhRSUx2bGJ1c0tzNmtEdGt1eGFpb0RiaUYwV1NOS25OX19PaXkwRklpMVUtMUU0d0V5cXdPNFJaeldfbE9ydTNrMF9pRkhkci02NndPTElPNTNnX2dENWM1ZVNSVVJkLWItTl9RdC1QVkJSNlI4YjZDaTZndz09
Hey guys, I've started making these short explainers covering various subnets for the wider community. Hope you enjoy it!
r/bittensor_
post
r/bittensor_
2025-06-08
Z0FBQUFBQm9VWTQ0bFB5emdyQi1NN1lvTHhLdXlsc1pONG1DTDdoMUV6X042UnFMdW5yckozbjNDMWRXTFAzTVdWaXdZTk1YcDBEOVlITUw3S2lQV01DT3F2YzkwUmlmc0E9PQ==
Z0FBQUFBQm9VWTQ0RDFRa3RobF9BZzZDU2E4Tzc1NmMxQzZrQkZ4ak04ckdJNW1oeHdpRnlnTF8wa1ZOOUZYdDdBQXI0NkV6N3FhT0ZhWGp0UjVmN1BzRXh2bTh4TDZDN1lCTkpLUW15UG5NdEpCcVdkc2ZiYTNIWmg1T2M3bnAzbTY3VGk4VllzS1gxR3hhMWJobUlvdVFydkVRM3J5d05tWFJvNXhGYXdsMWJMeHpZbUhMaWVVOGFyTzhPNGFJYWlTd0RPWUxMY0pzakktNXdkTXlEVWFjQUN3YXdOampyZz09
Hey all, I’ve got around a small bit of **JupSOL** and I’m trying to figure out the best way to earn some **additional yield** on top of the native staking rewards. So far, I’ve looked into: 1. **Lending it** on platforms like **Solend**, **MarginFi**, or **Kamino** – seems like low risk and easy to manage. 2. **LPing JupSOL/SOL** on **Kamino** or **Meteora** – higher APY but comes with impermanent loss and feels like more hassle for a small balance. 3. Just holding it and letting it auto-stake for \~6.7% APY. Right now I’m leaning toward just lending it on Solend or MarginFi since it’s beginner-friendly and doesn’t need constant management. Anyone here tried these? Would love to hear your thoughts or other ideas that work well for smaller balances!
r/solana
post
r/solana
2025-06-08
Z0FBQUFBQm9VWTQ0SHpVQU1BS0tmQ1ZPZ2pwa3RsNzhPTnhiTDdkT2E3ajluWjJOY0t5TDVPZUFRRlJhVnFETmIteDRmN1IyYVJCcTFiemJVcHZGTFlOX0pkQ3NnMWFhcUE9PQ==
Z0FBQUFBQm9VWTQ0cVVhQW1qdjM1bHVXUVhpWWY1TnR6dFo2OFlDX2lpMngyMWx0RjluM0gyT2RSSFEyc3VXcWcwenExZ3d0SlFLd2pSM1p3RmdLSlZkdG1YaG5JcUQ4OHBGd0RNb3VyMHRVXzVDRW5yTlFjRFppLVZYdk1oMTFrVmU4cnFBQ2FldVRDZlZQV0dsX1FSTTVUVnEtNHk3cHFZSWtIdjVmYld4NFc2SnF6LUI4WWs5ejFPejdrX0tHNThlVERsX0xRMF9fWUpYNmpuR3g3ZHhQMkdUbmJ6bFQ1QT09
This is how they answer you on the official Chainalysis website.
r/monero
post
r/Monero
2025-06-08
Z0FBQUFBQm9VWTQ0VTFEakpQSFJMQ2U1dUpiNENVOGU0RkF2elRKWGNzWWhpV2RoTXdwN19fbG8wWkJvcmVFQUlBdHVQbWV3UXdpNDhYM3N5T3pvWFZtaGpKYnlyZm5YeEE9PQ==
Z0FBQUFBQm9VWTQ0VjJ3cE9CeDV1UUMyYlE0LVJVTUYzN3UxaHVSeldXQ3RpMUlnUXJ5SE9HUE42QU5nQ0kzSWlPNG51YXdueWZTQ1pyQXlYMnd2OXpQMzRhQW9uQlBCT3hrS013YzVDYlRkX1FmZEtEOFdnR2JQSFlDNmlJVl9VUWx6UkU5UVpyeW1WaUpqZDVKZ01UOXp4QTJIRXJ1UmlwTmZNN055U3hsMDNPR2RvcUZqdUhOLVFVZHQwWndoVHdCc1VLTTlvUGR3
Back to $9,500
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0RGJwRVB2SHFQS0lwVmJYQ0VqSzFoSnNkY2c4M21vQ1JkS1JLV25TRE5FRndBbkh0NFJrLVAxeGQ3QnRzcFBGVHBjaTRJVzZHSF93MkpJVnZ1c2g0Snc9PQ==
Z0FBQUFBQm9VWTQ0VGlHZVVoSUdHMjVPVGJBX3ZVbnNULTRGTVUtT1JZbnBEWEVIUktsNjgxODFTRDNBMDhfbUNyRXdLOS1MUVRZX183ZDJmOUJpVktvQUlaYl9UWTk5N0F5ZVkxZ1RQeUpYRUFOcEIzQTNUbWZUWVE0dHpaZzluYlAtcHpiQWNjSW13NmFfT2RSYUdZSXkta20zSkpQb3JOc01UZ2FqeGk3TEpoWG1kRVhFWGhmdlN4a1NxWWJ5Q2VjNkxGMjh6dE1VSUFpVldLcmlqWXloMUlrMHlIQ1FFTHpzT1dpVFRQOGM1ODhmTUM3dEZZWT0=
https://nationalpost.com/opinion/wild-overreach-in-liberals-new-border-control-bill This is insane
r/monero
post
r/Monero
2025-06-08
Z0FBQUFBQm9VWTQ0WXYyYWhIbEtUMEg0NjJVTXFycU4yLUhDUUpjTjlvbk5nMUZHeW93Qm5BN2FYRDR2UE1wVzJMeWVYeU9iaG9vWnhicm1xenQ0MXIwYkJzbUVsWFJ0TlE9PQ==
Z0FBQUFBQm9VWTQ0ZGItajh1TFRpSEJkdHZtbjZ0NWJmZnZLOHFsbVJKSndGUWgzcmZrZ3h4aG1odDZHenFOd3RMSzlUM3F4RW1pT3ItcldmUWVfVjBqOXVBRk14TkFHcy1MMF9DSHlLamFBQi0xVmJ3OWNJc21iWkNPLTR5QUtWVUxpb3pYWFFrQUNQMVdGaVN0RkxDb3hEZXI2STc4X3dCbUdrUldDV0xEWVJmelhLWUNRQWlvNTRzRko0NndJNUpsemFQeGo5WDdrNExRY1l5c3d5MEZSbVprSXRWZlNmZz09
https://nano-gpt.com/blog/openwebui It shows nano-gpt.com as URL there, but if you use that tutorial with bcashgpt as the URL it *should* very simply work. Alternatively if that does not work, what happens if you use nano-gpt.com with your bcashgpt API key and that tutorial?
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0LTQ3aVptdFN5Tm51OF9pOVVrVE1CVk1abUJ5WEk4czd4X1JLMWZvOV90V2NIUzhBOHRuWXVLTS1tX3FCSXlpWVdZZjNuUzAzQkk4Mzg3MjY3TlBkamc9PQ==
Z0FBQUFBQm9VWTQ0Q0huQkE3MVFpZlowQUVCU2dwTGkzV1U5SmxhNmZzVVZoQi1JR1FMRm82bnN1ZkZhRWZqc3VkTV8xaDQzb3pQR2xQQ3o5WHAwZkowZEhmZ2xHbzFSRWtfZjIxU3VEdUNYRjdoN1Zmd0J5YzlpR2tiaGJnX1NlWXp1OTFZbDd5RGR1M0FjanFCWWllOUlvZWlZZEhaRmdHUEZzMkJ2Rk1ZUllSRFRONUxiVk9lRUlkOS1hUzZXRGtpRzhIaWVvRE53eG1mU3dxVGpJbG03NUZuS09EZXVLUT09
This account needs more than 15 karma to post *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/EthereumClassic) if you have any questions or concerns.*
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0a3d4VEt3Q3pRMm5PVzV5MmNpOXcxdUE2a25YaEp4QTNYQ0pqend0eldxYko5TFBVRUNFd0EwUTlYN0JEaERfTW5lNVVWcWlWZUZNdS1sOVJ2cGJva2c9PQ==
Z0FBQUFBQm9VWTQ0eXpidUxISmVqYW1GSUlSX0Y4bS02eHlVMkNnY21mUWsweHdmeUxvWE82cDJadURydlVSeFZ3OWV2NHRmUTAxdEdXcFFJOE9MR2NuRU1vZ19OLUpHNzBYMXZIeGhlMTE2QmgteFRtY05ESl9GeTdDd2ZsUFFLb3ZmaGRHVnRzS0dTNXBneTZndGE0S3hSd3NFcmhCNE0yQjZ0NWRmOGF0cGZrTmRiTDQ4U2FvQnBCQVZTMDE3U0pTYXdGcHJ2dllsQUdGZGE2aW1ESE0tSkgzRk5LRDNJRFFpY3BwOXU4MFM0ZERzV3R4dnEyQT0=
No Tor daemon, bootstrapped at launch and onion service operational. Outbound as well as Inbound anonymous connections for all your broadcasting needs. Maybe I'm a too excited to make a reddit post instead of making a pull request, but oh well I need to share my hype.
r/monero
post
r/Monero
2025-06-08
Z0FBQUFBQm9VWTQ0WFVWTmlJb2Y2aE5qbU8tUnE5VlZFVUNKR2dLWTBVVHN3SDAtOXdLRFBMQVpkQ18wakZNWUlxNzc2RVYyb05ZemJCWmU0VDNJcm1MZGhfUU9vS3pVb1NpMUplSVBlR1puZjg4Ml9vbFRNNHM9
Z0FBQUFBQm9VWTQ0YUZrclA0VWFPLW1QS3d2eUMzbFVfRDRNRFo5Y3lBeXFQdXU5a0NENWR5MWpPUXhyWXZWakczSzFZNmpRdElldkhjY1dYaVdWaWNFUkx6SVhRQ0E5YTBXLXR1NUduZmF0emgyMHNXRnFLMHpVc2VnZHQ2dVY5T2YtY05Mb19UZzVxVDlka0dMVmdTUHJaVnk1MlZMQ2VaTHdkV1A0MlVFZ3I1MnkybEQ0clB3PQ==
This account needs more than 15 karma to post *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/EthereumClassic) if you have any questions or concerns.*
r/ethereumclassic
comment
r/EthereumClassic
2025-06-08
Z0FBQUFBQm9VWTQ0aXVMamdLVlhRa3phTmk3d2VwWlZ3MHJLdDFzb3NWYVZlUkREU0dRWHVkcFNVYnJzZ3hIaDlVNklPSXE4a1NBdF9JdHRqTTZYeW9TaUtkM3Q4dFlGbHc9PQ==
Z0FBQUFBQm9VWTQ0ZWUyZHJ1ZGxaX0tOenE2cWNFMDJpS04xaFJwVFB6YU5fb3ltSF9JcE52NnBRaTQ1YV9tV2J2OHBreGZyeFpJOWhOV0pXSWpzZXp5TWNGV2UxV2lUell4Qk1CQmw3d3Q0UEgzazVkbFRJVDBiRHNMSHBnRUJOemlWTGJIT3lTc1ZRX2s0ZVdneThZMTVMLUlCVUk4UnRjQkg1UW5PUV92Y0EwaTlfekQ4QXNYdWM0ak1qT0w0YmoyeVlISVFteG04ajI2NVZvdWVHbmJXZ0E0OWVsbjdJdFY2MDVZRXVCTFBaeml5SG1Pcko1MD0=
The only wallets I've found that have support are zapit and cashonize. And I'm not seeing any hardware wallet support.
r/bitcoincash
post
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0VGZmZHdXcG9fMUV6ckNjdkdVWEhpQ2VSY0I4Q09xeTJVZDJkX3dNN1NpVW1TbFZ6dnRwV0swWWd1RFRMQ00zb1pPYmlPd3lCc25rUlVlYVpBWTB6YUE9PQ==
Z0FBQUFBQm9VWTQ0OHRndTZXN0xhNzREcTk3V2Q0S1NEbWVORTlMUHo0LXdXTWpFVC0zLU1qeVhzR0ZMM01fZklFS05TZzBNa0EzUGRGTVVNTVA4ZEowUHBDUkdrZFRpS3JKcFRwV0phVU8xV0g3RGFkN1dndjFaeVVFaUNzUG53akR3M2oxSUdVYTluSmJfVXhiempFZ3NQRXlyM1NnWXVTWmp0bjlZNzB5aVNrZVlGLW1Nd1pmQVF0dWR1dHFZWGJJc2dFRDZ3UllnaWhxMzFKUXp5eVVzemVPVzdGcHIzQT09
Hey everyone, We’re building a privacy-focused tool that lets users securely transfer Monero to Solana (and back), with optional cleaning steps in the process. It’s not an exchange or a mixer — just a bridge with built-in privacy protections to help people exit or enter the Monero ecosystem without surveillance or taint risks. We’d like to run our own Monero node instead of relying on third-party remote nodes. This would give users more trust in the system and reduce metadata leakage. What we’re looking for: • Tips on VPS specs (we’re on a pretty solid setup already) • Any hardened config guides or best practices • What kind of bandwidth / sync time to expect • Do we need to run a daemon + wallet RPC separately? • Any known pitfalls when serving public access? The project is live on Solana already (solanablender.com), but we’re trying to take privacy to the next level by supporting XMR directly, not just wrapped versions. Appreciate any guidance from the community — we’re fans of Monero and want to integrate it in a way that respects its values. Thanks! 🛡️🧡
r/monero
post
r/Monero
2025-06-08
Z0FBQUFBQm9VWTQ0ajE3cnN5dGcxdEVnVmpPRkw1UTdKOVVqSS1UWU9GNzcyZC1uT3lfaDBreHRmaFZFalQ1Q1RuTHhDNnYzVHEwYmMyaUo4YVZZTEJTVGVkZGNiLVJvalE9PQ==
Z0FBQUFBQm9VWTQ0OFNMWjdpVHVUTXV4dEM1MncyS3VsalpDd2JfZlZRcm5YQm45WHlBZ3hZNVkxSU4zdGpPVGdrZDFnTmJqSTRZTGZiSFBZWGNXejBNOFBRa2pFQ29MYmtKM1hEbktRQ0ItT0g0MDlUblV3MWRGUVlNSC1KLTlrUGhLTFoyNVhHaXdWeTZURmt2cVdDNU1VOUp2ZjFqYldydWQ5WWV1M3BXRG5jQk9hUUZibkpCU0FDVWNjLTdJVFVSd3RReTVHUDd2
“More than 10x is a guarantee that you will be liquidated” Understand the tool and stop regurgitating bullshit. If you play $1 into a 100x trade, it will move the same as a $100 spot position. People who get liquidated are simply not managing risk. Opening any trade where you get liquidated if price moves 5, 10% in crypto is stupidity. And it doesn’t matter if you do that leveraged 125x or 1x. You can gamble on spot trading too. Edit: are most comments here bots? Or you just didn’t read a sentence I wrote
r/cryptomarkets
post
r/CryptoMarkets
2025-06-08
Z0FBQUFBQm9VWTQ0OXd3OHVoYUFDQTB3ZWRsVzhyWmNlUU5jUDJ0MlMzb1VaVmZ4QmVkX01nQ0VNaUZXNGxOMFRmUERZS3JrdkpSN0FPQUlEeWFlbVYtMzRMckFDQjRkcUE9PQ==
Z0FBQUFBQm9VWTQ0S0NJVWRUeW1mcmpVQmtOTldWR0NYQllJRmNFNzdINW8xUlh6bEltTkZFOENjamtRb3gxTnZ0am95QkEtNWdxSnYxR0g2ZEpJa0ZBTG4tVU1yN1A0X0s1SFJvSmNScDdseTBrWWczNktBMEc0Ni1XUXZCckl6SmpLdHBpU2lGRGpweVZLYkQtZFlPMllhYW8xdWIzZnFjUU1ad3RBbHFxT3lWbGhreWFkdUhSOE1xa05SUXNzQ0ZmWVRtZXpnamJO
Also check out paytaca.com and selene.cash. Hardware wallet support is being worked on, but not yet available.
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0OVVaNTczeTdubkVqZXpGU2s4NXVCM2hxNzFwaTdaWVMyM0V6VEkzcURYOWdLMkZfeWZFcWs3Q05hUllQaG1nNTZnbU1EUklaUUk0bHJHdkgtdklheFBrSG9QTzdobjhXU3F0WnRWYUFMS0E9
Z0FBQUFBQm9VWTQ0U29LeUxtUmhPWXA1X29iSTZsS25HcVB1RzduSGlfa0kyY25FbDJMekhZVXdLRnJUVXBUc09IWVNFRHBfZGRsUGFLNkpraTV6OHo4NjFVV2FoRzZZR0x3TmE2b2hnWmowb0Q5eFRqOWREZUduVFFaN1ZmS3RDU3lUb2FRTU5ubzN4VGh4ck4tOS1JS28tVFNJc0ZoOU1iS0FKdGRYS2dFWHNTRU43c1BLeE85bGhEaGlXMzF6QS1sNU9OUDVYcjBrb3JzNUVpWlI1ajhOWTk3a3FEREpEZz09
Paytaca works. Selene does not have wallet connect or a way to connect to dapps.
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0MTFudlBnU2x3aE1oM3BxRXU5SXZ5ZlUyX2ZLZ1lIMW1zbmd6b0x3REpudVMyZWFJUFlsWlY3UGNNcUxpRzlZSVBzTThRN3V5ZlFIcGZZWTFkeWFXVlE9PQ==
Z0FBQUFBQm9VWTQ0WEljSlpKMUZ4d05tMk1MOHR3YjNOUmgza3I5bjQzLWpPVWxKOExOTGFnMG1nQXRyY3ZrcXhUV1lWTXA4bEtueXcwZ0s1aHNIR0s4LWVHekFrY2NaSHdqU01kQUtzWXhoLXZ2dTB1TzRCQzN2SmNDV2daOWdNUzRtM3F1ZkJ4d0o5UUxOVWVLbGx2SjItbzAydnRZWE1xV21kdWZKZFBicWpOSGFQbVhJOUw5eVJhcHplVTBSXzIxU1BXLWJrS011MnJfd1QzVklhdGV2OTdVWjdfVF9LZz09
https://preview.redd.it/…someone explain?
r/solana
post
r/solana
2025-06-08
Z0FBQUFBQm9VWTQ0RDJ6eGlwV2p4ZjdhZ2MtUDBpaERlVzlBLTd1elhjM0paa2JCWUJGcHEwakJUbXF1YWZZeUVtb3hrNE9OeFdlcm9hcHdGTG1ZRE8xanZOY2hGX3pGbmt1RUMza25NNFl6TGZGOWYzX1ZmZ0U9
Z0FBQUFBQm9VWTQ0T0lkakl6TW5ma2FiWWZneU1yYkFfMlhFbWNFNlp4c3h0VXlMRGF3SlFtbUVsZF9BdWtuVHBpMmgteXIzX2tYU1pIcU1tVm5nSU5NdlVDRjBkTHJLODNfTHJpbEttMkpUS3ZpSm1UR3M2YmpJdTJuUWEwSnZFWXpDNV9zSkdyMlB4UXBWRGU0eVBSN1dLMzFDNUtQOTNNU3hIVXp3V1AzcDQ1bXRPUTVPTjlrPQ==
Hello, im trying to collect historical chart data for tokens on dexscreener (market cap close, volume) but I haven't found any APIs that allow me to do saw, its mostly data in real time and I dont know how to properly scrape the dexscreener chart. Does anyone know if there are any APIs that can give me such data or is there a workaround? Thanks
r/solana
post
r/solana
2025-06-08
Z0FBQUFBQm9VWTQ0NjN1Y3JqUDJaM3I3VlpNWGZzVWhROWljMWZha1pNNk0yMkxvRjZjSVI0U1BfVDlnTFBUS3RaSDAtbFIwQ3lpTEJzdm1ZLTNpUmxqdGtlcHhHWGtkNUE9PQ==
Z0FBQUFBQm9VWTQ0WHBVSGNQcmhmTWRhdTJsOHlCQkNHM3l3dnVxUjFCUWJTc18xWHJxWmJ5OTBGWUxpYU5DWGVCNTMyU1BrVzF2NDhOTGtOYUZsckI1T1M1dENvdXZVVTVYM2V6Slh4R2VNaDZKVDNiaWc1SjgxZ0Vjc1J4OHhrQXNIQmVzZ0lYZFlxREI2UnhWZl9CUW52LWdLMThMX0h0NGx0bHl4bVpCbVNsZ0FqSkloVUt5LUlDMU1ydzI3LWlxS24xR0VWYW0z
Patience... Dollar will collapse UE too Cbdc arrives Zano btc bch xmr etc will touch sky
r/bitcoincash
comment
r/Bitcoincash
2025-06-08
Z0FBQUFBQm9VWTQ0N3pvZUZoMU94ZkZYMG5wVUxjRzNLbEdTeWcwVzYyV2lpd2U4enpra2VnZFh2S2ZsdVp1ZEVZdGY1eFZ1UFdJUlZ2TWV6d3NzT21OLTl1VWNfaU9lWUE9PQ==
Z0FBQUFBQm9VWTQ0aGV0VzVoalJPTDMtQ0JxWExDZTlYdEZrNlZvSWdMd3hJMUY5RVM5TG44ekxINDVpRlZ4NFN6aWZqMExmREJqVlJtVXdyQ0lZYUpLaDJUVUh2a2J2Wlgzd1FtdV9iUndoWkc3WWQyemw4dDd4NXpmdHBELUJvaGFIdjRmdHg5VkNfVVRDaGliZW5TZmtEcVBzLVJISk9wWTl2SlRTcjlyeTZPU2huc1E1WlJEcFlaRmo5NEEyMkRWUzQzYU9RWklzS3hPb3BCcnFub3JjeENlLUQxLWozR2JOWlgxNkhfSzFkYWtHc1d6YS1mTT0=
Pls help. Have bought wtao instead but should I have any concerns on holding it wrapped?
r/bittensor_
post
r/bittensor_
2025-06-09
Z0FBQUFBQm9VWTQ0ZHNTb1g1M28tVmp4QktUU0JnUllhdi1admZvNEpuTlM1OHYwcDFHODhIZTZYcmpzbk1pQ0VWSzhpZlFYZHVwUzlwMjFhQWJsY01kZnBBeU1zTFNWNk4tRzBYRWlKVHpmcV82ZWt6MFRWVjA9
Z0FBQUFBQm9VWTQ0OENMTzVvNUkxVnZxek5IbnZGUUdOcHpxV21WOVlLNzFldU5SYWxzWWQ2SXZrRkFvSjhEdy0xNmxjanFKbXpxaHdqTnFhRml2RTM0Y0xSYktmSERkbnlnSktCS05uYTBBNkxFU1B4aVZGeE9rc3FzbjVYU2w3VFJWall3RHJPMkFDT1lKY29WZkQ2d3BZbldPWFNlWnEyS0loeHM2VmlnZnRZeWRlT1RBSXNvPQ==
Not trying to debate coins I’m just genuinely curious why you specifically choose Monero. Is it ideology? Practicality? Distrust in Bitcoin’s privacy model? Always interesting to hear what pulls people into the XMR rabbit hole.
r/monero
post
r/Monero
2025-06-09
Z0FBQUFBQm9VWTQ0NXBlRUJybF9xMkxFNF9vcWE3VUd6eTdJV0paWU55dHMydGtvZHQ1UmFJRFNDek5ialBYY0NIaWFzakJ1NjNQZHJUMko3OVZ1S21laTFKbXNSdEpja0RTY0h1c1hnbEQ4TzFfQ1RaSHQya3c9
Z0FBQUFBQm9VWTQ0VTBUVnNkNkxXMGQwZnZoREV4VGxLVzQ4QkNjSWJzWWVnT3ZfN01aNjV1V0xhM3gyeTZ0NHduLWlIc0JYdnNxS1Y5U2ExbW5JV1BNY04xOTFZTEllOXc2bTdpY2NSX0Q1dDVPQ2p2SzhOZUxYT0FWWHJ6em9odUdjd3VKNk92cXlBZlNsWkZQNWJ4UGN4bzh1SnZYOV9wdTVNLWlEaFRmMjRBU3pYNzZac3gzVDB6VHYxOTBTaEQ4VUdPdm9WRVVB
Hey everyone! A dev here. I wanna build something on solana to create a dapp that people actually enjoy using and isn’t all about making a quick buck. Also, shouldn’t require copious amounts of capital to bootstrap (if needed). Any ideas are welcome, I have literally run out of good ideas. Something that would make the normies wanna use it too.
r/solana
post
r/solana
2025-06-09
Z0FBQUFBQm9VWTQ0WHIyTnZ4Q3VTd1ZyVXVtaWZxbDZMX1Ewb0wtNkVVZFZ3NjB3amE5T3NfZVU0VWpaVTU0d3BVTTFjeEI4bkItZWE2a2FRcXJxY0tVeDNyRnZYYkVJcVE9PQ==
Z0FBQUFBQm9VWTQ0emV6N3FlTjBnNXA4MV9lREgzTlpIR3hzcHRJVFE5NUF0WkdkWmx3emZCS0pYNzA5djVRc1M1cXBfTm8tTDFrOEU3WmlyT2lPejg3elNUYzl3XzF4dEVaRXVzVkVjb19jQ09KX3kyWXlJZlpLRFhuVWpJV0VRMlZESm1Pdi1jUVcyWXRyYWdNak8zSUkyOUdDcnNNaERFQ0RWZjBIYWxLZlRMWHAwWVhfcF9EODNqUDc5V3V1Y0tIQ19jZmFQRndz
Why are most monero wallets XMR only or only support a few coins? I’m finding that a lot of main stream wallets just don’t natively support it. Is there a reason for this or do the devs just not want to take the time to integrate support for the coin?
r/monero
post
r/Monero
2025-06-09
Z0FBQUFBQm9VWTQ0RkVxSTlWaHZoNlZETE9yckEyRzdSVnlNTm8tZ1Y3M2h3LVlaVTVBOHh1TEtsSmgwMjA2U1oxUWhIaGxYTFp2R3VueEhDd2Jodl84X1R5R0VMVTVpa3c9PQ==
Z0FBQUFBQm9VWTQ0ZVlfZFhzTVEyUXBEbk9DMk1nWEl2WV9nUXZnSzhYQ2l3NFVmb25iTHpQY0NONUJPWmYzd1h3LTBubVd0M3J1N2hzN3lnNm1zTEJ2b1VXMWFuZ280czdsUjNNcGR4UDdYNzBBVmxlZTN2OW14aGdmNDlWaVl4QjZvcW9uZ2V3SmM4azhYd2x5cTUtWGRTVTR5S1lhWTBmR3dYUDJpTTczdDd0OS1BWTVpMVhVPQ==
Hey all, I put together a Monero mining tutorial focused on security and privacy for those starting in 2025. It walks through wallet setup, node options, XMRig config, cold storage with VeraCrypt, and pool vs solo mining. No promo, no tracking, just a clean guide: [https://cyberleaktv.github.io/monero-mining-guide](https://cyberleaktv.github.io/monero-mining-guide) If you spot anything I missed or could explain better, I’d genuinely appreciate the feedback. Stay safe & mine privately.
r/monero
post
r/Monero
2025-06-09
Z0FBQUFBQm9VWTQ0a2JHUVc3QUgzcHU2RUJlNF9scWU3cGN1QTEwaXlZMXFVM05LWXVTSWRib0Z0MDY3WWdqUGFpbjlRclE1N20wR0JIM084ZFFtM0tlR0NlZEE4SXplVmpkTGtIenhOaEowdDlwNlhSX2VSX3c9
Z0FBQUFBQm9VWTQ0RG9KaUxqTG96NC1vQ1BDS0MyQWhQeVNoUm1Cdmt0SkJhQmJabzN0ZThxbHFrZ1p2VlkteXZYX096ZU00akpCcXBMWFMyNTVjRE04Y2h4RFhsWTZCSlR3UzJQaXRXeDVCY1ZTOHZ1R0Nwc09CUloweWhpVkNDSFV3dVBYWWo3aXBUQjFWRnBDNEtGU2NEVHltRmlYbC02eEc5bEVXdlBJLTNrMHNmY0prWVprMnVwcHoxQzdpMG9MQ2IzTS1kYVZBNlcxd2RTNFk3cDBBaEdEdE5wYTc1QT09
True, but Selene will soon have wallet connect. Probably Flowee Pay (flowee.org) will also get it this year. Or they maybe will directly implement the successor cash connect.
r/bitcoincash
comment
r/Bitcoincash
2025-06-09
Z0FBQUFBQm9VWTQ0cV9KVVB2T1kxM2pXdU81SWRHajNPNkgzU0lxMENpYTR6MkMtMmtadkV4eUZIeGdvN3piZTczNWZYVW5JSHdzamdXMkZDUjM1Y2MtcVNmNFdvNmk3YUdzNzJfRW5SNldkWmw1NXk4WFZKUVk9
Z0FBQUFBQm9VWTQ0RVE0OG5JY04zU2xOclFpUnBFZkV3Nml2Nm1uWDYyQUdaN2hOTnJQY2lRV0xMUlVJVFk2a2Ytak1lSXZSRjBReUFEMG5qMWhhX2lJS1hnbDVPTldteU90NE5tMGM0ZFBDbGoyMFREXzh6QmJiTHpWeE5ja1NzNGE1M2FJanJ2anhBaVR0Z0t1Zkl0aFI0dWJIQUh5dGdrcFJ6T1ZBZHU4YWU1eGVvbHNfeUpEYkktMlpfTkxxSW53aXhmeHBHeDcyTDRnam9QcUFxM0RTWjZWdlNSS0plZz09
I’ve been buying thr SOL coin and just realized I should be getting the ETH one I think it’s possible the SOL one was getting minted more or something because my dollar amount of SOL doesn’t equal it’s ETH (at least on DEX) So I wanted to know how should I do this? Should I bridge (how?), just swap for USDC, safety concerns? I’m thinking about doing all this in a new wallet and then transferring the coins back to my real wallet Thanks!
r/solana
post
r/solana
2025-06-09
Z0FBQUFBQm9VWTQ0Y3pLemgwdm9qd09HOXlZYVIyaHFPY2NWbGoxMlowZmdKNTV0V2laRlRfaHl4cV83aW1LTFVEdjZfZHRzakFSekVJQ2w3U05xNEZ0OFhPQjVjM1RkQ2c9PQ==
Z0FBQUFBQm9VWTQ0MGRhd3R3c3h3cTlYNzEyUmhTOGstQzBadkQyLXd4eEV0SlJ6dWJ0U1czRDVmbVpSdHg1TmpVZ2pjWkMydFBDQmlBcFBDZDJzM3NLdFFQSHZ1QzhnWUNhcWNtZjB4TmcxNVRFSEdRWDlHTjU0cXpFd2xTb25tRDJCcldWQ2dEZjc0LW5rWTIwMWxGSXFDNXlXbWhxcGhGbkxfZ09oaG9pb0xhb0Y2UGgtWWFhVnFXWldHSV9wV2JHbUlaQ1Z1eFk1
This morning I had an email from ~~Bitstamp~~ Robinhood asking me to confirm my account details. I deleted the email and logged in to Cauldron.
r/bitcoincash
comment
r/Bitcoincash
2025-06-09
Z0FBQUFBQm9VWTQ0YndQWVNKa195TDNqY0MycE5OdjJMVTAwWUlYeUhkUVlzSlhWR1M0cGtPcTBvQjhtZGI5Y3NJNnoxQllUN1Q1TXhWV0gyQzZ4NEtsb2s4YXBOaUR3b1E9PQ==
Z0FBQUFBQm9VWTQ0aUo4S3p0NGZpNzY0eFl6Z3p1ckc0UTZhLXBhWndRRHpPcWdQTmVhOTl1SlFidDA5TVdIQVptdXRxZDdDNXIyYjN5bnN4WXE1VXJuTk9CR29sNHpIUmZSeV9CMUpXWkdnQk03NUMxYW84eFZiRmVJaTJOUlBOYjl0eVJ0ZmM5ZmFiX1E1X09DdGtTXzNFUWRTQWlsVExWMFl1OGcxc0RxaUNtWnVObjg2ZUZfd05hNWxtVEd0RUxMMmhicV82a0xzbkswWVNvZmtLOHlScU0wUkF4OVNTZz09
DCinvestor made a bold prediction on Twitter: ETH could go to $10,000 or more this year thanks to big players like businesses, governments, and Wall Street jumping in. He compares it to Bitcoin's boom in 2017, where retail hype turned into institutional inflows. I cannot help but wonder if he is onto something.. There has been a lot of hype around ETH lately, for example like Larry Fink from BlackRock hinting at on-chain securities and talks about national crypto reserves in different countries, mainly the US (already happening). It is crazy to think the 'degens' might be out of the game, sidelined by misinformation. I read somewhere that retail interest dropped 30% last year because of these psyops, leaving the door open for rich people with deep pockets who do not care about old Twitter beefs. To be completely honest ETH's price has been boring lately, but its fundamentals are still strong, never forget that. If institutions really put trillions in, then $10k could happen. I am both skeptical and excited, maybe it is time to keep an eye on this sleeping titan guys. Those who do not know the difference between Ethereum and the other blockchains are the ones who will end up buying ETH at the top. Source: * https://x.com/iamDCinvestor/status/1930199342759195018
r/ethtrader
post
r/ethtrader
2025-06-09
Z0FBQUFBQm9VWTQ0aVNSNnVoTEFEWmxURmt1ZUxhY1RnUzIySUFxQ2JGSFNlSjJESzV6V0tnYTVGbjZUNjM5TW1mVksyYXhJUmc1NWxLcFlYX3VTZnN5Z3o3TkdDWjhXWjgtR2Q1WlRaNkE4MVV2Z1NQdWdlSVk9
Z0FBQUFBQm9VWTQ0d2NoU0tzSjhuMGJyb3ZmUDB4VHZxeG1YcjRfRlluMnNqWjdvbXdqd2Z3VjZOZXI2MVRYaXhpZWZuSkVZXzFQdU9sNkF5aEhsOFFhdEtuQWhLN2w0V3VoSVVPLVpBTXNlV21fWS11RFVtanc4bG9BaEhDM19OaE9PRVZjOTJvMUdoSk1oRjZTc3JaUE5BeU13NWZiSTdnRlJLTDgtUUhKWU5LME9fRG16UkRrUjFHb1FDQ3BibTNYMFFMN1NaU1dNaUhHZUFKVzlfRmdURVlaRkc1NWh5Zz09
Lol, what great timing! Once I get a permanent address, I'll be using this quite a bit, thank you <3
r/bitcoincash
comment
r/Bitcoincash
2025-06-09
Z0FBQUFBQm9VWTQ0SGJLYkR2U294ZXg0bkc3YW9Ic0FNY1lvZ0h2NU9kWUdzaFpLcloyRHBfUHd6Smlkd0JHTXNkN2tYY3RXQWVvQ3BwelN2US1PX1ZQWi1WcmRsaTdzdnA2UWF0ZkRrYnFhRlpXckw5ejNZTzA9
Z0FBQUFBQm9VWTQ0UFRtRFBHdGI1ekpBbXpNT1BfZFFNQm81ejJEYk92by1QUnM0OExzYzZWYzhSbmJuZzgxaWN1WExnMU4wYkhsUnpsVzk3MWNYLWNVRWRIMjF5b3VaWXBWWjBubjA5MzVRS29JM2FidXlfYlp3azdIbHNWVkkxYXBMVV9hY2tKbHMwUjQyRWxlOVItNFluaW1nak1hd0FqQnBVQTBBc3R2Qkw5WmxSZm5qOEsxV0kyaHJSVnBjLWs4WXJtN05YM0pCWUE2R19UNzJZRDFFajhUdjlOdWU0dz09
I am seeing lots of people creating their own solana memecoin generator. can anyone guide me how? and all their generators look same i don’t know if they bought code or something.
r/solana
post
r/solana
2025-06-09
Z0FBQUFBQm9VWTQ0UUJVQkxLdUdUSzVhU2lBTjNBMzVvWlRNTDZZcVhBUm1XYk5YMkctTnMydC0xQmZLWEduSEdPZlJjd1JsaUtpZ0ZJZDlRR3NKZmo0bXpiVmZfZ1pIdEE9PQ==
Z0FBQUFBQm9VWTQ0dWxtZFdLRXVJb05oZUc2R0o5aWItRFZ0WlV4MzBVaUxfNXRLOXJPVEZJeGloczBJaGhpalkyQVRqbDF2a09wM1Z6TW0waWlsakxJeGRUN2I1MmpQakdSTThZelkxLV9idEVRYzNJa0d6dWNxUDN0R0NzcWtSVlJHWDhtLVJSeWRmSDM3S185ZmRJWlVxMDRSZFB3MUZXNUJ6TUY1azlrdFlaUWRzcTVabVVjVG9WOGdwVEtBS0xIa09NOGtwWTFGSDVndEJ0S1plUXZyVjFZNTh3ajAzdz09
HOLD!
r/ethereumclassic
comment
r/EthereumClassic
2025-06-09
Z0FBQUFBQm9VWTQ0MzRFcnRYY29aQ29Ra0lMbTFoby1XTnotbU1oeDhCTjJ3U2R1cDFFN21KWk95N0NzZFpMWG42bHppMURlWTVaMTV0Z3VsdzAzVFJWU3ZJdHZsRkpvTzh5MVpWWWgyZ0tFR0Y5REhUOTZsNG89
Z0FBQUFBQm9VWTQ0RmVnN08xcVNyS3J3cUp0VUNxU0hTQUtSTWZwVERIRkF3WTFDcUVWeHVqYWxnX3J2U2w5Zzhtc1JmZUhJSzlkY1V6QWNjZDlGVng5WXozQXVBcERkb3EwMjZ5QVNmQW5fSXQyeHZSSllSTlNRdmo2QW1Dbm85eWJLZEZiNnhJbDhCQlZrMEVfQ2w5Z3htdXhQV3RWMGNVRE43N0dCV3BSUGJEQ2FMMW15Nm85OEgwNXRzR0pyMnZ1bWw0T2hTX0RkUERoa2RScTlwN0ptWTU3VldzSEM4SXNIUVBCSk9vRnhfQlBPOGFvdzFQTT0=
.50$ 🤥😱😨
r/ethereumclassic
comment
r/EthereumClassic
2025-06-09
Z0FBQUFBQm9VWTQ0ZDRDNlhPNHZNemRvc2dBYWNDMENsUWFkV2R3MDJLN0YxQ3duQS1XQlRObVByd21ITW95alEyeTdpNWIwZk5aRkRSdXJqcW8yTmhUel9RZGJTNkItalJ3V1dYNU5tN1ZfanJUdmZoa0pZcmM9
Z0FBQUFBQm9VWTQ0aUJlczVRTGUtczk5TEZDYXBJQWRLT3hBVDhZYUFCZi05NE1lcFc5WmIxbWx3OGNnV1ZRcGpKOUFGUFUyQjYxbDgwY1hmbjV0NTczMnk4aUszeEZvT2xra3dGNC0wcFJ3NDRYbkM3N29UNF9yTDc5NDA0Wl9waEtrR0pISnhvZWh1U0hqNXVfd1pXN0t1SEZDZWhKNTdPNHI4MDNQMFl2TzZ5Q0k2SHpfYUVqV2xtRXJGOU96aE5RaWpfamZmZmFSa3RZZU5WWTQwbFMycFZNNzQ5d3U2bk8xQXJJVi1tbnQ2TW5xb0VzVGNrWT0=
Given the success of the previous MAAMs ([see here](https://www.reddit.com/r/Monero/search?q=maam&sort=new&restrict_sr=on)), let's keep this rolling. The principle is simple: ask anything you'd like to know about Monero, especially the dumb questions that you've been keeping for you every other days, may the community clarify it all! Finally, credits to binaryFate for starting the concept!
r/monero
post
r/Monero
2025-06-09
Z0FBQUFBQm9VWTQ0VG5wMFNmMnhvOVZtQ1h2dGgzX1FuTEthblhsaXVnNnRTRGJnQlJPeVh6aVJ2TEdUWUs5X19FZDBqdEQzTll6dVdBVUlnMjF5NzRMRDJ0RktzeXdraHc9PQ==
Z0FBQUFBQm9VWTQ0RmhQbzBVYkx3ZFo5blBaeDdBOXQ3bnlSZEdZV0p2YTRJUDhhN2tTM0RxRzg0TnFZN3VNTm93UVV2RG45T2Nkancwb0NrdHNrakNsaEd5NG5KcXp2UTdMRi0zN0QwSk1OQk1kbjBFWjE2YWxHcXB5bkRES0x3Q0ZtSmJ6cW55UVVjMWxzek5HYllvOFpQenZoNDlfbC1TR0VOQmxBajhXVmszYk9ucFpEeUZOUzlnNHNha01kLUVnTE4zZ1NqRXky
I use banana often, and have MEVX and Soltrading as backup. Bananagun referrals I had isnt working properly for me and they arent fixing the issue. its been a week and I have about 2sol worth of referral fees I cant withdraw so im thinking of looking for another platform. Banana handles multi wallet quite well, i can set multiple wallets as DEFAULT, while MEVX and others forget the selected wallet, which have cause me $$$ when trying to swap in seconds because I have to re-select multiple wallets. Any suggestion on another trading bot that have referral bonus or lower fees? EDIT: Thanks for your advises. Especially about the web ui options. I tried those a year a go and didnt realised how much those have change.
r/solana
post
r/solana
2025-06-09
Z0FBQUFBQm9VWTQ0R2pSVEZxRllLQWhKOEZWNzhNR1JmcElHWjlDNTNtQmlJTGgxeW1HYTUtSHdxd3Q3RWZ0YmVnYzFaZVlHN2puR0ZjbU9tX3ltMEVDcDJSYmt5R202c0NMWjh3WldaX1htckZHRUFydEhSaEU9
Z0FBQUFBQm9VWTQ0Y2ludy1sQklmTFd2NE1NX1dvTkN3NUZlRjd2SzI0TE1aZnFtTWJTVmNpdHRadFIzRWR5SlAzLUduQmZTNTBCeWJTZEhZRldyTmdjUnRoRi1TM2ZjRXpiZGkzU0xUeWRZQjNVRmdyLUY3c2NrSkg5a0ltUzZkLTZ4dy1iNHBzM052b1dIWmRrQUlGN3ZGeHgteHJVM0NKWmc3V29CMG44dmk0bUJCdUtPWWpMaFhTa1ZValRCc0VjOEo1LUhpQ1Ju
this is the way
r/bitcoincash
comment
r/Bitcoincash
2025-06-09
Z0FBQUFBQm9VWTQ0ZVMwM2pWSV8xakpneDdoTEp6V2hBcWdPWVNpTGhQejVtY0FfZWk0aF9RWUtSVlBMSVpFdVJabzR0TWs0anBQZkhMMmNoV01vQjd5QTV1dkpVZzJMNlFwSU40NldEOFpTZVNHWlRTNHdSZnM9
Z0FBQUFBQm9VWTQ0NVI2MmxhZVhJLUdlaWhrWFJLNlhCbU9ycVg4VDRmM01RNWFqV3loMTlRQkFkR2RiQ29POXNzNzBRTnJNZkhsVHhmWlo1ellRVlNYY3RoMGFfRzFfbEpfeHdMUHhic3RHM29iaGRaeHEwbC1QZFQ4eFp0OUg2dmhrVXRwUkpNbzg5eDdwN2k0bENLRVl6VkZJM1RmQndEbHhra093TTJ4R3NON0liSkQ1cDV0QjZhc0RTZ2RJQXg0SmdzakUxa0VTeW5PRmFRRFpHMEI1dkFJMnRGSHhKQT09
And a couple words regarding ovet-the-counter / p2p trading... You all remember the p2p trading platform "LocalMonero", which had a great reputation. LocalMonero closed down, with its head held high and gratitude from the Monero community. Its clone "OpenMonero" appeared, which worked less than 1 year, and it was "hacked" (yes, of course it was). People want to trade XMR, but they don't want to learn anything new (e.g. RetoSwap). They want to play Russian roulette, but not with a revolver, but with a Mosin rifle. Scammers understand this perfectly well, and the further, the more scams will appear that will pretend to be trading platforms. Don't be fucking naive. And if you're naive - do not cry later that you were scammed.
r/monero
post
r/Monero
2025-06-09
Z0FBQUFBQm9VWTQ0SS1veXdTU0FMZFV1ZmgycWpCM3pORjNXSlRzUjA5WGEtWS1PS3dJQWZ0NEZiZXBodUozdEVYX0xzakk2eFFEcXp2TXQtVlF5UTdqbFk3cU5iVWFBVWc9PQ==
Z0FBQUFBQm9VWTQ0NDdILXdPMVFnbjVZQVBWRmZWcUIxYVdMWldyY0FzWVlIS1lQbHE0OVhGaHl3LTU0TnhoS2ZQNHkxVzc3RjZrUjVORnc1WVVGQ0oteUx6RHp2cXdCNjBZY1JYQkczM2EzS19xYTd5XzktM2FTWmtEMVM4NTdjTHdxWWJQakNHM0JWU1BWOHRseVpOemltSFBXV08zdlZDRnpDc3cwdURscHlGZVF3WDItVVBENUhfc0NSMWZjTkFXOTh1TzZpblRLMWdGYUdlLWttSkVhQ0otWEJkRG1zQT09
[https://www.youtube.com/watch?v=P0nKaj5K9hQ](https://www.youtube.com/watch?v=P0nKaj5K9hQ)
r/solana
post
r/solana
2025-06-09
Z0FBQUFBQm9VWTQ0YTJlNmRBSGNldVFZYTBTelR2cWRvV1ZGdU55eHkxNHZIRWZlTUpvYkZvU0FsRm95bWFubklhdUJPWDRQd2J1ZHBjMGk0ZEtuQk5rdmo2OGRIcUJtUEE9PQ==
Z0FBQUFBQm9VWTQ0bGxSMU1hWGUtWTBqcVo2TWsxZXJ4bDhVT1BmTFpRRDl1NXZZSThvS1R4emZoWDQ3aWtfSDByM3lEb3BjWTJ6c2R4Q082UGpKa01fOVhJWjRCZkNNYWp5c2tCU2RYaWxrOUNDYU1LdWk4S3JFZkdKQ0NCOFRuWEV0THNTMlh3X1oxTGhTNVR4eXpiZHBZTHM3WUREem1XejFHS0tDdERUMy1oT3c3T0FIWl82TzhWQTJ5RDUxcDFPNFRjYUczMzN5
💚💚💚
r/ethereumclassic
comment
r/EthereumClassic
2025-06-09
Z0FBQUFBQm9VWTQ0aERQRTRDR1cwYXJJbHRnN0NTRmpZam1PWXFtM1VvbHdYRUpOS2swYkN5MGpjQjRKTXlMbWpWY2hLZGwzOTdDUEtlRFhrRlcxMlNSaG9YMzZoLXBPNmc9PQ==
Z0FBQUFBQm9VWTQ0MlQ2aWRjMUp2RG1mX0FBOVF5aktvQU1MWkpvYzZZQkhFcGN1Z24tZ0p5WkFBRFlWOTlSc0lRT3dUYmtDcDNOUmd1dEJ4SWluR2dZd2E1TFM2ZGRORG52WC1nRVkwTEVFTEl5S0hrdEp0NHgyLUtYQlVUZ2FtcGNQOXRUV3VoZkp1TmtSR1RYMnFadzBIRFNxeS1LMEdQNXF0UFFGMFRDRW9SNUN6ekpOSHo1QW5JY19pTm14UXlDSTJZYXd1c3FqWHhMQ0xXNHVUR3pjaTVfMl8wcWk4NUtjY0drdmFqZUNDalRtclFwTFNpdz0=