January – Earlybirds Invest https://earlybirdsinvest.com Latest Crypto News Sun, 17 Aug 2025 14:12:11 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.7 https://i0.wp.com/earlybirdsinvest.com/wp-content/uploads/2024/12/cropped-New-Project-2024-12-17T235703.455.png?fit=32%2C32&ssl=1 January – Earlybirds Invest https://earlybirdsinvest.com 32 32 240146708 HMRC Targets Crypto Trades With New Tax Rules in January 2026 https://earlybirdsinvest.com/hmrc-targets-crypto-trades-with-new-tax-rules-in-january-2026/ https://earlybirdsinvest.com/hmrc-targets-crypto-trades-with-new-tax-rules-in-january-2026/#respond Sun, 17 Aug 2025 14:12:10 +0000 https://earlybirdsinvest.com/hmrc-targets-crypto-trades-with-new-tax-rules-in-january-2026/

His Majesty’s Revenue & Customs (HMRC) has announced plans to introduce stricter cryptocurrency tax rules in January 2026.

The changes mean that anyone holding or trading digital assets in the UK is required to pay attention to how their activities are reported, or risk facing financial penalties or even prosecution.

One of the main points is that HMRC often treats crypto as a capital asset. This means Capital Gains Tax (CGT) can apply when someone sells cryptocurrencies for money, exchanges them for other cryptocurrencies, or gifts them to anyone other than a spouse.

What is Ethereum 2.0? Upgrades Easily Explained With Animations

Did you know?

Want to get smarter & wealthier with crypto?

Subscribe – We publish new crypto explainer videos every week!

There is a small allowance to reduce the impact for lower amounts. If total gains in a tax year are under £3,000, CGT does not apply. However, this is lower than in the past, so transactions that previously fell below the threshold might be taxable.

HMRC is also increasing its ability to detect unreported gains. The agency is working with major exchanges and using blockchain analysis to track activity.

If tokens are received as payment for work or services, they are taxed as income instead. The same applies to coins earned from mining or staking. In these cases, standard income tax rules apply, and the UK’s personal allowance of £12,570 can be used.

Meanwhile, on August 11, Wisconsin legislators introduced Senate Bill 386 to address scams involving crypto kiosks. What does the bill cover? Read the full story.


]]>
https://earlybirdsinvest.com/hmrc-targets-crypto-trades-with-new-tax-rules-in-january-2026/feed/ 0 53667
The 1.x Files: January call digest https://earlybirdsinvest.com/the-1-x-files-january-call-digest/ https://earlybirdsinvest.com/the-1-x-files-january-call-digest/#respond Mon, 11 Aug 2025 10:40:37 +0000 https://earlybirdsinvest.com/the-1-x-files-january-call-digest/

January 14th tl;dc (too long, didn’t call)

Disclaimer: This is a digest of the topics discussed in the recurring Eth1.x research call, and doesn’t represent finalized plans or commitments to network upgrades.

The main topics of this call were

  • Rough data quantifying advantages of switching to a binary trie structure
  • Transition strategies and potential challenges for a switch to binary tries
  • “Merklizing” contract code for witnesses, and implications for gas scheduling/metering
  • Chain pruning and historical chain/state data — network implications and approaches to distribution.

Logistics

The weekend following EthCC (March 7-8), there will be a small 1.x research summit, with the intent of having a few days of solid discussion and work on the topics at hand. The session will be capped (by venue constraints) at 40 attendees, which should be more than enough for the participants expected.

There will also likely be some informal, ad-hoc gathering around Stanford Blockchain week and ETHDenver, but nothing explicitly planned.

The next call is tentatively scheduled for the first or second week in February — half-way between now and the summit in Paris.

Technical discussion

EIP #2465

Although not directly related to stateless ethereum, this EIP improves the network protocol for transaction propagation, and is thus a pretty straightforward improvement that moves things in the right direction for what research is working on. Support!

Binary Trie size savings

Transitioning to a binary trie structure (instead of the current hexary trie structure) should in theory reduce the size of witnesses by something like 3.75x, but in practice that reduction might only be about half, depending on how you look at it..

Witnesses are about 30% code and 70% hashes. Hashes within the trie are reduced by 3x, but code is not improved with a binary trie, since it always needs to be included in the witness. So switching to a binary trie format will bring witness sizes to ~300-1400kB, down from ~800-3,400kB in the hexary trie.

Making the switch

Enacting the actual transition to a binary trie is another matter, with a few questions that need to be fleshed out. There are essentially two different possible strategies that could be followed:

progressive transition — This is a ‘ship of Theseus’ model of transition whereby the entire state trie is migrated to a binary format account-by-account and storageSlot-by-storageSlot, as each part of state is touched by EVM execution. This implies that, forevermore, Ethereum’s state would be a hexary/binary hybrid, and accounts would need to be “poked” in order to be updated to the new trie format (maybe with a POKE opcode ;). The advantages are that this does not interrupt the normal functioning of the chain, and does not require large-scale coordination for upgrading. The disadvantage is complexity: both hexary and binary trie formats need to be accounted for in clients, and the process would never actually “finish”, because some parts of the state cannot be accessed externally, and would need to be explicitly poked by their owners which probably wont happen for the entire state. The progressive strategy would also require clients to modify their database to be a kind of ‘virtualized’ binary trie inside of a hexary database layout, to avoid a sudden dramatic increase in storage requirements for all clients (note: this database improvement can happen independent of the full ‘progressive’ transition, and would still be beneficial alone).

compute and clean-cut — This would be an ‘at once’ transition accomplished over one or more hard-forks, whereby a date in the future would be chosen for the switch, and then all participants in the network would need to recompute the state as a binary trie, and then switch to the new format together. This strategy would be in some sense ‘simpler’ to implement because it’s straightforward on the engineering side. But it’s more complex from a coordination perspective: The new binary trie state needs to be pre-computed before the fork which could take an hour (or thereabouts) — during that window, its not clear how transactions and new blocks would be handled (because they would need to be included in the yet-un-computed binary state trie, and/or the legacy trie). This process would be made harder by the fact that many miners and exchanges prefer to upgrade clients at the last moment. Alternatively we could imagine halting the entire chain for a short time to re-compute the new state — a process which might be even trickier, and potentially controversial, to coordinate.

Both options are still ‘on the table’, and require further consideration and discussion before any decisions are made with regards to next steps. In particular weighing the trade-offs between implementation complexity on one hand and coordination challenges on the other.

Code “chunking”

Addressing the code portion of witnesses, there has been some prototyping work done on code ‘merklization’, which essentially allows contract code to be split up into chunks before being put into a witness. The basic idea being that, if a method in a smart contract is called, the witness should only need to include the parts of the contract code that were actually called, rather than the entire contract. This is still very early research, but it suggests an additional ~50% reduction in the code portion of a witness. More ambitiously, the practice of code chunking could be extended to create a single global ‘code trie’, but this is not a well developed idea and likely has challenges of its own that warrant further investigation.

There are different methods by which code can be broken up into chunks, and then be used to generate witnesses. The first is ‘dynamic’, in that it relies on finding JUMPDEST instructions, and cleaving near those points, which results in variable chunk sizes depending on the code being broken up. The second is ‘static’, which would break up code into fixed sizes, and add some necessary metadata specifying where correct jump destinations are within the chunk. It seems like either of these two approaches would be valid, and both might be compatible and could be left up to users to decide which to employ. Either way, chunking enables a further shrinking of witness sizes.

(un)gas

One open question is what changes would be necessary or desirable in gas scheduling with the introduction of block witnesses. Witness generation needs to be paid for in gas. If the code is chunked, within a block there would be some overlap where multiple transactions cover the same code, and thus parts of a block witness would be paid for more than once by all the included transactions in the block. It seems like a safe idea (and one that would be good for miners) would be to leave it to the poster of a transaction to pay the full cost of their own transaction’s witness, and then let the miner keep the overpayment. This minimizes the need for changes in gas costs and incentivizes miners to produce witnesses, but unfortunately breaks the current security model of only trusting sub-calls (in a transaction) with a portion of the total committed gas. How that change to the security model is handled is something that needs to be considered fully and thoroughly. At the end of the day, the goal is to charge each transaction the cost of producing its own witness, proportional to the code it touches.

Wei Tang’s UNGAS proposal might make any changes to the EVM easier to accomplish. It’s not strictly necessary for stateless Ethereum, but it is an idea for how to make future breaking changes to gas schedules easier. The question to ask is “What do the changes look like both without and with UNGAS — and those things considered, does UNGAS actually make this stuff significantly easier to implement?”. To answer this, we need experiments that run things with merklized code and new gas rules appled, and then see what should change with regard to cost and execution in the EVM.

Pruning and data delivery

In a stateless model, nodes that do not have some or all of the state need a way to signal to the rest of the network what data they have and what data they lack. This has implications for network topology — stateless clients that lack data need to be able to reliably and quickly find the data they need somewhere on the network, as well as broadcast up-front what data they don’t have (and might need). Adding such a feature to one of the chain-pruning EIPs is a networking (but not consensus) protocol change, and its something that also can be done now.

The second side of this problem is where to store the historical data, and the best solution so far proposed is an Eth-specific distributed storage network, that can serve requested data. This could come in many flavors; the complete state might be amenable to ‘chunking’, similar to contract code; partial-state nodes could watch over (randomly assigned) chunks of state, and serve them by request on the edges of the network; clients might employ additional data routing mechanism so that a stateless node can still get missing data through an intermediary (which doesn’t have the data it needs, but is connected to another node that does). However it’s implemented, the general goal is that clients should be able to join the network and be able to get all the data they need, reliably, and without jockying for position connecting to a full-state node, which is effectively what happens with LES nodes now. Work surrounding these ideas is still in early stages, but the geth team has some promising results experimenting with ‘state tiling’ (chunking), and turbo-geth is working on data routing for gossiping parts of state.


As always, if you have questions about Eth1x efforts, requests for topics, or want to contribute, attend an event, come introduce yourself on ethresear.ch or reach out to @gichiba and/or @JHancock on twitter.

]]>
https://earlybirdsinvest.com/the-1-x-files-january-call-digest/feed/ 0 52639
Grantee Roundup: January 2021 https://earlybirdsinvest.com/grantee-roundup-january-2021/ https://earlybirdsinvest.com/grantee-roundup-january-2021/#respond Sat, 05 Jul 2025 09:28:52 +0000 https://earlybirdsinvest.com/grantee-roundup-january-2021/

Our intrepid grantees have been keeping busy as always – read on for some recent accomplishments 🏆

ENS

ENS (Ethereum Name Service) runs on the Ethereum blockchain, but it’s not just for ETH addresses! ENS maps human-readable domain names to locations all across the distributed web, including ethereum and other blockchain addresses, Tor .onion addresses, decentralized websites and data hashes stored on IPFS, and more. ENS continues to expand its reach, with recent integrations including:


That’s far from everything – read the ENS 2020 Retrospective for a recap of a pretty packed year, follow ENS on Twitter @ensdomains and check out the 2021 roadmap to see what’s next.

Textile and 3box for IPLD Object signing and encryption

IPLD is a data structuring framework used in IPFS. Textile and 3Box received a combined grant, joint funded with Protocol Labs, to create a signing and encryption standard to enable greater composability and interoperability between web3 applications while keeping user data sovereign. All work funded by this grant has now been completed, including:


Ethereum developers can already integrate JOSE standards such as JWE and JWS into their IPLD-based dApps, and there’s more to come! This work is part of a longer term effort to increase data interoperability across IPFS/IPLD-based apps and tools.
For more, you can follow principal investigators carsonfarmer and oed, who continue to engage with the community around this project; follow Textile on Twitter @textileio, blog.textile.io or Slack; and 3box on Twitter @3boxdb, medium.com/3box or Discord!

bitfly for beaconcha.in eth2 block explorer

As the launch of the beacon chain approached, the bitfly team wanted to make sure there was an open source eth2 block explorer from day 1. beaconcha.in has become that and much more, with a treasure trove of resources for Ethereum stakers and enthusiasts including:

  • Growing eth2 knowledge base
  • Wide variety of trackers and visualizations including charts with data on liveness, participation, total stake and more
  • Mobile app for monitoring eth2 validators

Keep up with bitfly on Twitter @etherchain_org or Reddit u/etherchain.

But wait, there’s more!

  • Unirep private and non-repudiable reputation system: completed smart contracts, CLI and zk circuits
  • MPC Phase 2 UI: completed design and specification; developed components including server, CLI and browser client

More to come next month!

]]>
https://earlybirdsinvest.com/grantee-roundup-january-2021/feed/ 0 45890
Grantee Roundup: January 2022 – Japan Local Grants Edition! https://earlybirdsinvest.com/grantee-roundup-january-2022-japan-local-grants-edition/ https://earlybirdsinvest.com/grantee-roundup-january-2022-japan-local-grants-edition/#respond Mon, 19 May 2025 05:54:53 +0000 https://earlybirdsinvest.com/grantee-roundup-january-2022-japan-local-grants-edition/

In today’s roundup, we’re excited to feature four recipients from a recent Local Grants wave in Japan! We see Ethereum as an ever-growing, creative and inclusive playground, and it is our responsibility to let everyone keep playing.

It’s not easy to commit to public goods or novel use cases without a quick financial return, and it’s important to support the dedicated teams working to solve interesting problems, improve public infrastructure and build creative blockchain use cases. In this Local Grants round, the Ethereum Foundation is happy to shine a spotlight on a local community proactively working to demonstrate the potential of decentralized technology.

zkCREAM: Zero-knowledge Confidential Reliable Ethereum Anonymous Mixer

zkCREAM:Confidential Reliable Ethereum Anonymous Mixer is a set of protocols and dapps which enables more robust, accessible, secure, anonymous, and verifiable voting for public elections in Japan. zkCREAM is developed as a pilot program. It consists of a set of smart contracts and user-friendly interface app that allows the average general public to vote in a completely anonymous fashion while maintaining the integrity and verifiability of the final vote tallies. It also supports MACI making it more collusion resistant, reliable, and anonymous.

The team’s next focus of the development is to build both mobile and desktop voting application that are easy to use. It will showcase and leverage the use of zkCREAM in the Ethereum community. In addition, the team will develop additional voting logic layers to support other common scenarios, such as quadratic voting, instant runoff voting, and ranked-choice voting.

Ryodan System AG: Building Layer 2 with zkRollups and zkCloud

The Ryodan team works on problems of scalability, privacy, and code complexity. They take a multi-faceted approach that incorporates both protocol R&D, and building tools to make zero knowledge proofs more accessible to developers.

The zkCloud service aims to help developers use zero-knowledge proofs to write smart contracts and programs more easily. zkCloud currently supports Groth16 and PLONK proofs, with STARKs coming soon. The team is also developing an optimized zkSTARK Rust library, along with other tools to enable a no-code approach to zero knowledge-based applications.

The team is also developing a new zk-rollup, based on a design proposed by CEO Leona Hioki. The approach offers potential privacy and efficiency improvements by not requiring transaction history data for contract execution.

Startrail: Records Infrastructure for Physical and Digital Artwork

Startrail is an Ethereum-based infrastructure for recording the provenance and exhibition history of both physical and digital artwork. In addition to using ERC721 to represent an artwork or its certificate, NFC chips can be attached to physical artworks and associated with the certificate on the blockchain.

CEO Taihei himself is a contemporary artist who was inspired to use blockchain technology to solve pain points he experienced in the art industry. Since 2016, he has built a team of people from both art and technical backgrounds who are inspired by the possibilities of distributed ledger technology to solve problems of provenance and compliance in art ownership. They work with people from the art industry, such as artists, gallerists, curators and web-based marketplaces, to make sure that they meet their practical needs in operation.

The team’s next goals include open sourcing their smart contracts and expanding their infrastructure to the global market. Advocating for the rights of all people in the art industry, including artists and collectors, they hope to bring all kinds of art industry participants into the Ethereum ecosystem.

w3a.io: Smart Lock Authentication for Physical Devices

W3a.io uses Ethereum to verify usage rights for physical devices. The team first explored the concept in 2020 in a joint experiment with Nara Institute of Science and Technology (NAIST) in which they trialed a blockchain-based system for automated car sharing on the NAIST campus. A “virtual key” allowed an authorized user to lock and unlock a car with their smartphone, and users were incentivized to return cars to locations where they would be in the highest demand.

W3a.io builds on the concept and learnings from the NAIST pilot, using digital signatures to authenticate authorized operators of physical devices even while offline. The team hopes it can be applied to many use cases to make it easier to bring Ethereum into the real world!

Famiee: Partnership Certificates on Ethereum

Famiee is a non-profit dedicated to helping all types of families access the benefits available to legally married couples through a platform for issuing partnership certificates on Ethereum. A network of participating corporations provide services for couples who hold Famiee certificates, giving them access to benefits that would otherwise only be available to legally married couples such as employee family benefits, joint mortgage applications, family discounts, public assistance or life insurance.

Famiee began issuing certificates for same-sex partners in February 2021, and plans to extend the service to include other types of families and partnerships that are not legally recognized in certain places, such as marriages where women choose to keep their original names or single mothers living together to support each other. They are currently working on a mobile app to issue certificates that meet a high standard for privacy protection, security and KYC.


Countless local Ethereum communities around the world are a big part of why Ethereum feels simultaneously global and personal for so many people. Accordingly, we are continuously experimenting with ways to support local communities around the world.

Again, thank you to all of the contributors who are promoting Ethereum adoption in the real world, and if you think you’re the next one, please head to our grants page to learn more about what we look for in the projects we fund.

]]>
https://earlybirdsinvest.com/grantee-roundup-january-2022-japan-local-grants-edition/feed/ 0 37050
Leverage outweighs liquidity as Bitcoin spot volumes drop 40% since January https://earlybirdsinvest.com/leverage-outweighs-liquidity-as-bitcoin-spot-volumes-drop-40-since-january/ https://earlybirdsinvest.com/leverage-outweighs-liquidity-as-bitcoin-spot-volumes-drop-40-since-january/#respond Thu, 08 May 2025 07:39:04 +0000 https://earlybirdsinvest.com/leverage-outweighs-liquidity-as-bitcoin-spot-volumes-drop-40-since-january/ Bitcoin’s market structure has shifted decisively toward leverage, with derivatives now overwhelmingly accounting for the majority of daily trading volume.

Data from CryptoQuant showed that the derivatives market consistently comprised over 90% of Bitcoin’s total trading activity in 2025, pushing the average derivative-to-spot volume ratio to 13.2x YTD. This ratio peaked at 16.6× on May 6, the same day Bitcoin closed near $96,800.

Bitcoin Trading Volume (Spot VS. Derivative)
Graph showing Bitcoin’s YTD aggregated trading volume across spot and derivative exchanges (Source: CryptoQuant)

The shift towards derivatives accelerated sharply in March and April. As Bitcoin’s price bottomed around $80,000 in late March and began climbing again in April, derivative flow increased while spot activity remained weak.

The biggest difference in volume came on Apr. 7, when derivatives hit a daily record of over 1.26 million BTC, even as spot volume failed to reach 30,000 BTC. On most days since mid-February, spot turnover has remained well below that level.

This aligns with previous CryptoSlate reports, which found that the price recovery we’ve seen since February wasn’t driven by fresh inflows or strong retail demand on exchanges.

The data shows a clear inverse relationship between leverage intensity and price strength. The correlation between the daily derivative-to-spot ratio and BTC’s spot price stands at –0.40 YTD, meaning that periods of heavier derivative dominance generally align with weaker price performance.

This trend has appeared repeatedly throughout the year: in March and April, derivatives accounted for over 95% of the total volume multiple times, following local tops and retracements in Bitcoin’s price.

During Bitcoin’s push above $100,000 in January, spot volumes occasionally surpassed 100,000 BTC, including a Jan. 20 spike that paired high spot participation with a local price peak. Since then, such strong spot volume has vanished. In April and May, even as prices approached earlier highs, spot volumes remained tepid, seldom exceeding 20,000 BTC per day.

Aggregate volume data reinforces this view. Between Jan. 1 and May 6, total spot trading reached just 4.15 million BTC, compared to over 50.5 million BTC in derivative volume. Futures markets have thus absorbed more than 92% of Bitcoin’s daily turnover across the year.

The steady rise in the derivative/spot ratio, from 11.27× in January to 13.77× in May, reflects this market transformation into a leverage-driven structure. While volatility has declined since March, the rising ratio indicates continued reliance on margin and futures products for directional bets.

This kind of structural imbalance raises significant risks. When spot liquidity thins, price discovery becomes more sensitive to leverage positioning, and funding rates or liquidation cascades can move the market much more than actual flows. Thin order books on exchanges mean that even small sell pressure can slip prices rapidly, particularly when the prevailing trade is crowded into one side of the futures curve.

The lack of spot conviction could limit the upside for Bitcoin unless ETF inflows or large-scale on-chain accumulation resume. So far, spot market behavior suggests most demand is synthetic, with little real buying pressure visible on exchanges.

Until spot flow begins to accompany price strength, the market remains fragile: highly reactive but underpinned by exposure, not conviction.

The post Leverage outweighs liquidity as Bitcoin spot volumes drop 40% since January appeared first on CryptoSlate.

]]>
https://earlybirdsinvest.com/leverage-outweighs-liquidity-as-bitcoin-spot-volumes-drop-40-since-january/feed/ 0 35027
BlackRock’s Bitcoin ETF Posts Second-Largest Inflow Since January Launch https://earlybirdsinvest.com/blackrocks-bitcoin-etf-posts-second-largest-inflow-since-january-launch/ https://earlybirdsinvest.com/blackrocks-bitcoin-etf-posts-second-largest-inflow-since-january-launch/#respond Tue, 29 Apr 2025 05:09:19 +0000 https://earlybirdsinvest.com/blackrocks-bitcoin-etf-posts-second-largest-inflow-since-january-launch/ BlackRock’s spot Bitcoin ETF, iShares Bitcoin Trust (IBIT), recorded nearly $1b in inflows on Monday, marking its second-largest single-day intake since its debut earlier this year.

According to SoSoValue data, IBIT pulled in $970.93m, underlining the renewed appetite among institutional investors for crypto assets.

The surge comes amid a broader recovery in Bitcoin markets. Investors have been steadily returning to Bitcoin-linked products, buoyed by signs of resilience in the asset despite volatility in equities.

Crypto supporters have pointed out Bitcoin’s relative stability compared to US stocks during periods of economic uncertainty, a trend that has reignited discussions around Bitcoin’s potential as a safe-haven asset.

The IBIT fund is part of a wave of spot Bitcoin ETFs that launched on Jan. 11. That day marked a turning point for the industry, opening the door for traditional investors to gain direct exposure to Bitcoin through regulated market vehicles. Nine new funds debuted alongside Grayscale’s long-running Bitcoin Trust, which converted into an ETF structure the same day.

Strong BlackRock IBIT Inflows Contrast With Outflows From Rival Funds

James Toledano, chief operating officer at Unity Wallet, said the current momentum stems from multiple factors. He noted that President Donald Trump’s recent silence on crypto matters had helped market sentiment. “Historically, his comments have coincided with price drops, though correlation is not causation,” he said.

Toledano added that easing rhetoric around tariffs and the Federal Reserve has lifted investor confidence, alongside the strong inflows into Bitcoin ETFs that reflect renewed institutional support.

Despite IBIT’s strong performance, the broader Bitcoin ETF market showed mixed momentum, signaling that investor demand remains selective.

Monday’s inflows were heavily concentrated in BlackRock’s IBIT, which brought in $970m. In contrast, Fidelity’s FBTC recorded outflows of $86.8m, while Grayscale’s GBTC saw $42.66m in net outflows.

Despite IBIT’s Gains, Broader Bitcoin ETF Market Shows Strain

Ark Invest’s ARKB fund posted the largest single-day outflow among major ETFs at $226.3m. Despite IBIT’s strong performance, the broader Bitcoin ETF market showed mixed momentum, signaling that investor demand remains selective.

The rising demand shows how Bitcoin’s narrative as a hedge against macroeconomic uncertainty is gaining traction again. With US equities under pressure and global markets seeking direction, both gold and Bitcoin have benefited from a pivot toward alternative stores of value.

The post BlackRock’s Bitcoin ETF Posts Second-Largest Inflow Since January Launch appeared first on Cryptonews.

]]>
https://earlybirdsinvest.com/blackrocks-bitcoin-etf-posts-second-largest-inflow-since-january-launch/feed/ 0 33392
Comment on AN UPDATE, January 7th, 2025: Why My Blog Is On Hold (And Why I Am Not Making A Final Decision Until Later this Year) by Bethany https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-bethany/ https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-bethany/#respond Fri, 18 Apr 2025 04:27:46 +0000 https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-bethany/

Today, I wrote the following post on the new Second Life social media platform, Primfeed (which you can currently only read if you already have an account on Primfeed, as I have not yet chosen to make my Primfeed profile and posts publicly viewable):


With all the batshit-crazy political news coming out of the U.S. today making me feel anxious and depressed, I have decided that, in order to preserve my mental health, I now have to abandon the very last traditional social media platform I used daily: Reddit. This means that, from now on, I am only going to be using Primfeed, and NOTHING ELSE: No Reddit, no Mastodon, no Twitter/X, no Facebook, no Instagram, no TikTok.

Corporate-run social media platforms are all becoming a toxic cesspool and dumpster fire, with negative effects on my mental health. I quit Facebook, Instagram, and Twitter years ago, and I have never bothered with TikTok. I haven’t bothered checking into Mastodon in well over half a year now. Reddit was my last refuge, but alas, no longer. I am OUT. (I announced late last year that I was shutting down my blog, but in light of me now leaving Reddit, I will have to take some time to reflect a bit more on that decision. I also need to think about whether or not I want to make my Primfeed profile public.)

It looks like 2025 is shaping up to be an even crazier and more chaotic year than 2024, and I might need to escape to my beloved Second Life now more than ever!


A quick update: last November, my doctor stepped in and put me on full-time sick leave for a couple of weeks. I then went back to work on half-time sick leave, and at the moment, that arrangement will continue until the end of April, 2025. My supervisor at work has also stepped in to address my current workload, and I am no longer working on the project of setting up the virtual reality lab at my university library system. I am just feeling incredibly burned out and utterly exhausted, still, and it is probably going to take me quite some time to rest and recover.

In light of my decision today to quit Reddit (the last traditional social media platform I was still using, albeit without setting up an account, i.e. read-only and anonymously), I do now need to re-evaluate my decision late last year to stop blogging completely. The truth is that I am still feeling tired and burned out, and I don’t have the time, energy, or inclination to blog. So I honestly don’t know where things stand for the blog right now.

My blog will remain up; I do not plan to take it down. I will also keep my associated Discord server running, as it is still being used by a good number of people. I have zero plans to take the RyanSchultz.com Discord server down. However, I have, as of January 1st, 2025, suspended charging my existing Patreon patrons (and a very big thank you to those of you who have chosen to support me financially via Patreon these past five-six years; it has been, and is still, greatly appreciated).

Right now, I need to focus on my physical, mental and emotional health, and I need to focus on returning to my paying job, full-time (minus the VR lab project). Those are my priorities at the moment. In order to help achieve that focus, I am avoiding all social media (except Primfeed), and all metaverse platforms (except InSpaze on the Apple Vision Pro, and my beloved Second Life, which reliably puts me in a comfortable flow state during the creative process, and which consistently brings me happiness, especially with so much bad news happening in my real life).

Everything else must wait, including this blog. I will not make a final decision about my blog until much later this year, once I am in a better place. Thank you for your support over the past 7+ years.

UPDATE Jan. 8th, 2025: Meanwhile, over on Elon Musk’s X (formerly Twitter):

Liked it? Then please consider supporting Ryan Schultz on Patreon! Even as little as US$1 a month unlocks exclusive patron benefits. Thank you!

Become a patron at Patreon!

]]>
https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-bethany/feed/ 0 31431
Comment on AN UPDATE, January 7th, 2025: Why My Blog Is On Hold (And Why I Am Not Making A Final Decision Until Later this Year) by Toby Beresford https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-toby-beresford/ https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-toby-beresford/#respond Fri, 18 Apr 2025 00:06:53 +0000 https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-toby-beresford/

Today, I wrote the following post on the new Second Life social media platform, Primfeed (which you can currently only read if you already have an account on Primfeed, as I have not yet chosen to make my Primfeed profile and posts publicly viewable):


With all the batshit-crazy political news coming out of the U.S. today making me feel anxious and depressed, I have decided that, in order to preserve my mental health, I now have to abandon the very last traditional social media platform I used daily: Reddit. This means that, from now on, I am only going to be using Primfeed, and NOTHING ELSE: No Reddit, no Mastodon, no Twitter/X, no Facebook, no Instagram, no TikTok.

Corporate-run social media platforms are all becoming a toxic cesspool and dumpster fire, with negative effects on my mental health. I quit Facebook, Instagram, and Twitter years ago, and I have never bothered with TikTok. I haven’t bothered checking into Mastodon in well over half a year now. Reddit was my last refuge, but alas, no longer. I am OUT. (I announced late last year that I was shutting down my blog, but in light of me now leaving Reddit, I will have to take some time to reflect a bit more on that decision. I also need to think about whether or not I want to make my Primfeed profile public.)

It looks like 2025 is shaping up to be an even crazier and more chaotic year than 2024, and I might need to escape to my beloved Second Life now more than ever!


A quick update: last November, my doctor stepped in and put me on full-time sick leave for a couple of weeks. I then went back to work on half-time sick leave, and at the moment, that arrangement will continue until the end of April, 2025. My supervisor at work has also stepped in to address my current workload, and I am no longer working on the project of setting up the virtual reality lab at my university library system. I am just feeling incredibly burned out and utterly exhausted, still, and it is probably going to take me quite some time to rest and recover.

In light of my decision today to quit Reddit (the last traditional social media platform I was still using, albeit without setting up an account, i.e. read-only and anonymously), I do now need to re-evaluate my decision late last year to stop blogging completely. The truth is that I am still feeling tired and burned out, and I don’t have the time, energy, or inclination to blog. So I honestly don’t know where things stand for the blog right now.

My blog will remain up; I do not plan to take it down. I will also keep my associated Discord server running, as it is still being used by a good number of people. I have zero plans to take the RyanSchultz.com Discord server down. However, I have, as of January 1st, 2025, suspended charging my existing Patreon patrons (and a very big thank you to those of you who have chosen to support me financially via Patreon these past five-six years; it has been, and is still, greatly appreciated).

Right now, I need to focus on my physical, mental and emotional health, and I need to focus on returning to my paying job, full-time (minus the VR lab project). Those are my priorities at the moment. In order to help achieve that focus, I am avoiding all social media (except Primfeed), and all metaverse platforms (except InSpaze on the Apple Vision Pro, and my beloved Second Life, which reliably puts me in a comfortable flow state during the creative process, and which consistently brings me happiness, especially with so much bad news happening in my real life).

Everything else must wait, including this blog. I will not make a final decision about my blog until much later this year, once I am in a better place. Thank you for your support over the past 7+ years.

UPDATE Jan. 8th, 2025: Meanwhile, over on Elon Musk’s X (formerly Twitter):

Liked it? Then please consider supporting Ryan Schultz on Patreon! Even as little as US$1 a month unlocks exclusive patron benefits. Thank you!

Become a patron at Patreon!

]]>
https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-toby-beresford/feed/ 0 31392
Comment on AN UPDATE, January 7th, 2025: Why My Blog Is On Hold (And Why I Am Not Making A Final Decision Until Later this Year) by Ryan Schultz https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-ryan-schultz/ https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-ryan-schultz/#respond Mon, 14 Apr 2025 16:58:07 +0000 https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-ryan-schultz/

Today, I wrote the following post on the new Second Life social media platform, Primfeed (which you can currently only read if you already have an account on Primfeed, as I have not yet chosen to make my Primfeed profile and posts publicly viewable):


With all the batshit-crazy political news coming out of the U.S. today making me feel anxious and depressed, I have decided that, in order to preserve my mental health, I now have to abandon the very last traditional social media platform I used daily: Reddit. This means that, from now on, I am only going to be using Primfeed, and NOTHING ELSE: No Reddit, no Mastodon, no Twitter/X, no Facebook, no Instagram, no TikTok.

Corporate-run social media platforms are all becoming a toxic cesspool and dumpster fire, with negative effects on my mental health. I quit Facebook, Instagram, and Twitter years ago, and I have never bothered with TikTok. I haven’t bothered checking into Mastodon in well over half a year now. Reddit was my last refuge, but alas, no longer. I am OUT. (I announced late last year that I was shutting down my blog, but in light of me now leaving Reddit, I will have to take some time to reflect a bit more on that decision. I also need to think about whether or not I want to make my Primfeed profile public.)

It looks like 2025 is shaping up to be an even crazier and more chaotic year than 2024, and I might need to escape to my beloved Second Life now more than ever!


A quick update: last November, my doctor stepped in and put me on full-time sick leave for a couple of weeks. I then went back to work on half-time sick leave, and at the moment, that arrangement will continue until the end of April, 2025. My supervisor at work has also stepped in to address my current workload, and I am no longer working on the project of setting up the virtual reality lab at my university library system. I am just feeling incredibly burned out and utterly exhausted, still, and it is probably going to take me quite some time to rest and recover.

In light of my decision today to quit Reddit (the last traditional social media platform I was still using, albeit without setting up an account, i.e. read-only and anonymously), I do now need to re-evaluate my decision late last year to stop blogging completely. The truth is that I am still feeling tired and burned out, and I don’t have the time, energy, or inclination to blog. So I honestly don’t know where things stand for the blog right now.

My blog will remain up; I do not plan to take it down. I will also keep my associated Discord server running, as it is still being used by a good number of people. I have zero plans to take the RyanSchultz.com Discord server down. However, I have, as of January 1st, 2025, suspended charging my existing Patreon patrons (and a very big thank you to those of you who have chosen to support me financially via Patreon these past five-six years; it has been, and is still, greatly appreciated).

Right now, I need to focus on my physical, mental and emotional health, and I need to focus on returning to my paying job, full-time (minus the VR lab project). Those are my priorities at the moment. In order to help achieve that focus, I am avoiding all social media (except Primfeed), and all metaverse platforms (except InSpaze on the Apple Vision Pro, and my beloved Second Life, which reliably puts me in a comfortable flow state during the creative process, and which consistently brings me happiness, especially with so much bad news happening in my real life).

Everything else must wait, including this blog. I will not make a final decision about my blog until much later this year, once I am in a better place. Thank you for your support over the past 7+ years.

UPDATE Jan. 8th, 2025: Meanwhile, over on Elon Musk’s X (formerly Twitter):

Liked it? Then please consider supporting Ryan Schultz on Patreon! Even as little as US$1 a month unlocks exclusive patron benefits. Thank you!

Become a patron at Patreon!

]]>
https://earlybirdsinvest.com/comment-on-an-update-january-7th-2025-why-my-blog-is-on-hold-and-why-i-am-not-making-a-final-decision-until-later-this-year-by-ryan-schultz/feed/ 0 30774
January 2025 Work Progress Report: Changes to BTC Payouts for Bitcoin Gold Mining https://earlybirdsinvest.com/january-2025-work-progress-report-changes-to-btc-payouts-for-bitcoin-gold-mining/ https://earlybirdsinvest.com/january-2025-work-progress-report-changes-to-btc-payouts-for-bitcoin-gold-mining/#respond Fri, 28 Mar 2025 23:23:11 +0000 https://earlybirdsinvest.com/january-2025-work-progress-report-changes-to-btc-payouts-for-bitcoin-gold-mining/

January Work Progress Report

Bitcoin (BTC) Payouts Disabled for Bitcoin Gold (BTG) Mining

Previously, miners had the option to receive Bitcoin (BTC) payouts while mining Bitcoin Gold (BTG) through the Gate.io exchange. However, due to Gate.io discontinuing BTG deposits in the coming days, we will no longer support BTC payouts for BTG mining.

Effective immediately, all BTG mining payouts will be made exclusively in BTG.

What This Means for Miners:

  • New BTG mining payouts will be processed in BTG only.
  • Pending BTC payouts from recent days will still be processed, provided the exchange completes the necessary deposit transactions.

We understand that changes like this can be inconvenient, and we appreciate your understanding as we adapt to evolving exchange policies.

Node Updates

Zcash (ZEC) v6.1.0

The latest Zcash update, version 6.1.0, is a maintenance release designed to ensure the smooth operation of the network. This update sets a new end-of-service height, ensuring continued network functionality without disruptions. All Zcash miners are encouraged to update to this version to maintain uninterrupted mining.

miner

Zephyr Protocol v2.0.2 – ZSD Yield (Hotfix)

The Zephyr Protocol has introduced version 2.0.2 as an emergency hotfix release, specifically targeting mining pools. This is a required update, and mining pools must upgrade to this version immediately.

Exchanges have been advised to keep deposits and withdrawals suspended for the time being. Regular desktop users do not need to update, as a larger chain audit update is expected soon.

Hardfork v7 Activation:

  • Activated at block 433000.
  • Includes a crucial security update to address an issue discovered prior to the full audit update.
  • Details of the hotfix will be disclosed after the transition to v7 is complete.

We strongly recommend all mining pools running Zephyr to update immediately to ensure network stability.

Block Reward Reductions

January 2025 saw scheduled block reward reductions for multiple cryptocurrencies in accordance with their emission schedules. The updated rewards are as follows:

Kaspa (KAS)

  • Previous Block Reward: 73.41 KAS
  • New Block Reward: 69.29 KAS

Ergo (ERG)

  • Previous Block Reward: 21 ERG
  • New Block Reward: 18 ERG

Karlsen (KLS)

  • Previous Block Reward: 35.15 KLS
  • New Block Reward: 34.19 KLS

These reductions are part of the ongoing emission schedules for each network. To calculate potential mining rewards after these changes, visit 2CryptoCalc.

As always, stay updated through our X (Twitter) and Telegram miner community. Happy mining!

]]>
https://earlybirdsinvest.com/january-2025-work-progress-report-changes-to-btc-payouts-for-bitcoin-gold-mining/feed/ 0 27766