Search
Solana Passes Proposal to Assign 100% of Priority Fees to Validators
28.5.2024
Solana validators have voted to pass Solana Improvement Document number 96 (SIMD-0096), which proposes that 100% of priority transaction fees will be awarded to validators. This breaks the current model that passes only 50% of these funds to validators, while the other half gets burned. According...
DTCC Declares No Collateral Value for Bitcoin-Linked ETFs, Impacting Loan Extensions
27.4.2024
The Depository Trust and Clearing Corporation (DTCC) has announced that it will not assign any collateral value to exchange-traded funds (ETFs) with exposure to Bitcoin or cryptocurrencies.
The post DTCC Declares No Collateral Value for Bitcoin-Linked ETFs, Impacting Loan Extensions appeared first...
1 in 4 investment firms assign senior execs to digital assets: Report
10.9.2023
One-quarter of asset managers and hedge funds in the US and Europe have recruited senior executives to oversee digital asset strategies, according to a recent report
Texas Lawmakers Introduce Bill Proposing to Establish a Gold-Backed Digital Currency
8.4.2023
Two Republican lawmakers from Texas, senator Bryan Hughes and representative Mark Dorazio, have introduced legislation to create a gold-backed digital currency that could be enacted by the state legislature. The policymakers believe that this currency could greatly benefit the Lone Star State...
Indonesia to Change Crypto Regulators as Part of Plan for Stricter Oversight
11.11.2022
The government of Indonesia wants to assign crypto supervision to the Asian nation’s financial watchdog in order to ensure better protection for investors. The move is part of a planned overhaul of regulations in the sector aimed at increasing oversight of the expanding digital assets market....
Study: Switzerland Has ‘the Most Profitable Bitcoin Traders’ Worldwide, While France ‘Is the Best Bitcoin Trading Nation’
20.4.2022
According to a recent study published by the online investing news and education platform Invezz, Switzerland currently has the most profitable bitcoin traders worldwide. That’s according to data stemming from Chainalysis, Worldometers, and Triple A, which helped Invezz assign each country...
Optimizing CSS for faster page loads
18.9.2020
A straightforward post with some perf data from Tomas Pustelnik. It’s a good reminder that CSS is a crucial part of thinking web performance, and for a huge reason:
Any time [the browser] encounters any external resource (CSS, JS, images, etc.) it will assign it a download priority...
Understanding Immutability in JavaScript
30.1.2020
If you haven’t worked with immutability in JavaScript before, you might find it easy to confuse it with assigning a variable to a new value, or reassignment. While it’s possible to reassign variables and values declared using let or var, you'll begin to run into issues when you try that with...
Object.fromEntries
9.11.2018
The Object object has been buffed with useful methods over the past few years. Object.keys, Object.values, Object.freeze, and Object.assign all address frequently desired functionality. One of the new Object methods is fromEntries, which accepts a Map or map-like array nesting and converts it...
Build a state management system with vanilla JavaScript
25.7.2018
Managing state is not a new thing in software, but it’s still relatively new for building software in JavaScript. Traditionally, we’d keep state within the DOM itself or even assign it to a global object in the window. Now though, we’re spoiled with choices for libraries and frameworks to help...