Bitcoin Forum
February 16, 2026, 09:08:59 AM *
News: Community awards 2025
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Other / Meta / Another Forum Mobile Enhancement Userscript on: January 04, 2025, 03:24:16 PM
With all the mobile enhancement improvements here's my version  Cheesy

Github Repository

Check all the possible changes of the forum pages, from homepage, boards, topics, replies (ignore users), post/edit, profile settings page's, pm pages, etc.
The layout are responsive regardless the resolution of your device but the UI will look better in tablets/ipad size and smartphones screens.

Look some screenshots.

Screenshots



How to install
- install relative add-on user-scripts extension depends on your browser
   - TamperMonkey for Chrome
   - GreaseMonkey for Firefox
   - Userscript for Safari
- create new script
- paste the contents of the code from GitHub repository
- save
- reload any bitcointalk page



Todo List
- Dark mode



Looks is inspired in current SMF forum mobile version.

Let me know your thoughts, feel free to comment and criticize Smiley
2  Local / Pilipinas / [Telegram Bot] Wallet Notification Notifier - @txnNotifierBot [PH translation] on: December 24, 2024, 10:21:10 PM
Para gumana ang bot gamitin ang /start command

Telegram bot: @txnNotifierBot
GitHub: pxzone/telegram-wallet-notifier

Features
- sumusuporta ng legacy, segwit at taproot wallet address
- add/edit label/tag mara madaling ma identify ang address
- pagtanggal ng wallet address
- pag check kung wasto ang isang wallet address
- redirect sa block explorer gsmit ang wallet address at transaction id
- ang halagang nakalagay ay BTC/crypto at palitan sa USD na halaga
- pwedeng pumili ng block explorer para makita ang wallet address and txid

Bot's initial interface


Wallet address' list


Selecting an address


Block Explorer


Incoming and outgoing transaction UI



Feel free to comment, suggest and criticize Smiley



Bitcointalk thread - https://bitcointalk.org/index.php?topic=5522781.0
Altcoinstalks thread: https://www.altcoinstalks.com/index.php?topic=326705.0
3  Bitcoin / Project Development / [Telegram Bot] Wallet Transaction Notifier - @txnNotifierBot on: December 14, 2024, 03:53:34 PM
Use the bot by starting the /start command

Telegram bot: @txnNotifierBot
Github: pxzone/telegram-wallet-notifier

Features
- adding address including legacy, segwit and taproot address
- add/edit label to the address for faster identification
- remove wallet address
- check valid and invalid address
- redirects to chosen block explorer's transaction page after clicking the "Check Transaction" and "Check address"
- amount in BTC/crypto and USD conversion
- choose block explorer to view address and txid

Bot's initial interface


Wallet address' list


Selecting an address


Block Explorer


Incoming and outgoing transaction UI



Feel free to comment, suggest and criticize Smiley
4  Economy / Lending / [NO NEED] Need $400 repayment $500. 25% in 3 months on: November 29, 2024, 12:34:39 AM
Loan Amount: 400 USDT
Loan Purpose: Personal
Loan Repay Amount: 500 USDT
Loan Repay Date: in 3 months
TRX Address (USDT): TUspDti4fsGuKNXduGwr9u2As6D2xXeKPN (the same address as may previous applications)
5  Economy / Lending / [LOAN REQUEST] Need $100 Repayment $115. 15% interest for 1 month [COMPLETE] on: September 29, 2024, 01:13:17 AM
Loan Amount: 100 USDT
Loan Purpose: Personal
Loan Repay Amount: 115 USDT
Loan Repay Date: Oct 30, 2024 (On or before)
TRX Address (USDT): TUspDti4fsGuKNXduGwr9u2As6D2xXeKPN

6  Other / Meta / Collapsible Merit Received in threads and replies (Show more/less...) on: September 13, 2024, 03:19:28 AM
I have just suggested this one on PowerGlave thread Little things that bug you/me about the forum earlier, after i posted it there, I thought it would be great to read your thoughts about this to be implemented.


Here's my actual post (edited some text)...

Idk if this was suggested before, but i noticed that most merited (by users) thread/reply with multiple rows is a mess. While its good way to show off the merits received and the ones who give merits on that thread/reply. This will be more mess when time goes by knowing we have thousands of users here, imagine if half of all the members give merits to a thread/reply, it will be a long list/rows to show.

That's why I would like to suggest about the showing of received merits from users on a thread/reply to be limited by one row or two three with others as collapsible content, with collapse button/anchor "Show More..." by default, then "Show Less..."

Check the difference of the image result below how neat a two three rows showing merits received from this thread Merit & new rank requirements








I did some tweaking on the codes using CSS for ellipsis and JS for toggle button

Insert HTML class and id with the "Show more..." button

HTML elements to be added:
Code:
id="collapsible-content"
class="merit-content"
html: <span class="toggle-button" id="toggle-button">Show more...</span>

Code:
<td valign="middle" id="collapsible-content">
    <div class="smalltext merit-content">
        <i><span style="color:green">Merited</span>
            .....
        </i>
    <div>
    <span class="toggle-button" id="toggle-button">Show more...</span>
</td>

CSS
Code:
.merit-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 rows/lines */
    -webkit-box-orient: vertical;
}

.expanded .merit-content {
    height: auto; /* Show full content when expanded */
    -webkit-line-clamp: unset; /* Remove line clamp when expanded */
}

.toggle-button {
    display: inline-block;
    color: #476C8E;
    cursor: pointer;
    font-size: 11px;
    margin-top: 5px;
}

JS
Code:
const toggleButton = document.getElementById('toggle-button');
const collapsibleContent = document.getElementById('collapsible-content');

toggleButton.addEventListener('click', function() {
    if (collapsibleContent.classList.contains('expanded')) {
        collapsibleContent.classList.remove('expanded');
        toggleButton.textContent = 'Show more...';
    } else {
        collapsibleContent.classList.add('expanded');
        toggleButton.textContent = 'Show less...';
    }
});



Updated code to be used on userscript extension for three rows.

Code:
// ==UserScript==
// @name     Collapsible Received Merits
// @description     Collapse multiple rows of received merits in Bitcointalk
// @author  PX-Z
// @match  https://bitcointalk.org/index.php?topic=*
// @version  1
// @grant       none
// @run-at      document-end
// ==/UserScript==

(function() {
    'use strict';

    function injectToggleButtonScript() {
        const script = document.createElement('script');
        script.textContent = `
            window.toggleFunc = function(id) {
                const collapsibleContent = document.getElementById(\`collapsible_content_\${id}\`);
                const toggleButtonId = document.getElementById(\`clickid_\${id}\`);
                if (collapsibleContent.classList.contains('expanded')) {
                    collapsibleContent.classList.remove('expanded');
                    toggleButtonId.textContent = 'Show more...';
                } else {
                    collapsibleContent.classList.add('expanded');
                    toggleButtonId.textContent = 'Show less...';
                }
            };
        `;
        document.body.appendChild(script);
    }
    injectToggleButtonScript();

    let url = window.location.href;
    if( url.indexOf("bitcointalk.org/index.php?topic=") > 0){
        console.log('Collapsible Received Merits Initialized');
        // Select all div elements with IDs starting with "subject_"
        const subjectDivs = document.querySelectorAll('div[id^="subject_"]');
        // Iterate through each div and process the ID
        subjectDivs.forEach(div => {
        const fullId = div.id;
        const msgId = fullId.replace('subject_', '');
        const collpaseId = `collapsible_content_${msgId}`;
        let tbodyTr = div.closest('td.td_headerandpost table tbody tr');
            if (tbodyTr) {
                let tds = tbodyTr.querySelectorAll('td[valign="middle"]');
                let secondTd = tds[1];
                secondTd.setAttribute('id', collpaseId);
  
                let smalltextDivs = secondTd.querySelectorAll('div.smalltext');
                if (smalltextDivs.length === 2) {
                let secondSmalltextDivs = smalltextDivs[1];
                secondSmalltextDivs.setAttribute('class', `smalltext merit-content merit-h-${msgId}`);
  
                const dynamicDiv = document.querySelector(`.merit-h-${msgId}`);
                const height = dynamicDiv.offsetHeight;
                    if(height > 45){
                        secondSmalltextDivs.insertAdjacentHTML('afterend', `<span class="toggle-button" onclick="toggleFunc('${msgId}')"><span id="clickid_${msgId}">Show more...</span></span>`);
                    }
                    else{
                        // To avoid id errors
                        secondSmalltextDivs.insertAdjacentHTML('afterend', `<span class="toggle-button" id="toggle_button"></span>`);
                    }
                }
            }
        });

        document.getElementById('toggle_button').addEventListener('click', function() {
            const id = this.getAttribute('data-msgid');
            const collapsibleContent = document.getElementById(`collapsible_content_${id}`);
            const toggleButtonId = document.getElementById(`clickid_${id}`);
            if (collapsibleContent.classList.contains('expanded')) {
                collapsibleContent.classList.remove('expanded');
                toggleButtonId.textContent = 'Show more...';
            } else {
                collapsibleContent.classList.add('expanded');
                toggleButtonId.textContent = 'Show less...';
            }
        });

        const style = document.createElement('style');
        style.textContent = `
        .merit-content {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limit to 3 rows/line */
            -webkit-box-orient: vertical;
        }
        .expanded .merit-content {
            height: auto; /* Show full content when expanded */
            -webkit-line-clamp: unset; /* Remove line clamp when expanded */
        }
        .toggle-button {
            display: inline-block;
            color: #476C8E;
            cursor: pointer;
            font-size: 11px;
            margin-top: 2px;
        }
        `;
        document.head.appendChild(style);
    }
})();

What's your thoughts on this...

Note: This is only a temporary solution, there will be much better approach if sever-side script is included to enhance the code...
7  Economy / Lending / [DONE] Loan 55 USDT will Pay 60 USDT (~9% interest in 5 days) on: April 05, 2024, 11:47:42 PM
Loan application, for 5 days

Loan Amount: 55 usdt
Loan Purpose: Personal
Loan Repay Amount: 60 (or name your price)
Loan Repay Date: On 4-5 days
Type of Collateral: None
TRC20 - USDT address: TUspDti4fsGuKNXduGwr9u2As6D2xXeKPN

I will pay after i received campaign payment on bitcointalk (bc.game campaign) and altcoinstalks (mixer campaign) on monday or tuesday but usually i received it on monday.

I'm just short hand as i need it this sunday yet i will have my additional money in monday so no good.
Thank you.
8  Other / Meta / Bitcointalk Uptime Website Status on: April 05, 2024, 09:26:11 AM
New Update:
Chart bar will only turn red if the downtime is 5 mins and above but it will still show the downtime minutes if hovered, the same thing downtime records will be showed in the -activity section.

Update: Timezone is added

I just created a webpage for uptime status monitor for bitcointalk. It might not be so useful everyday but it will be soon Smiley

This works on visiting the forum website for 1 minute interval and capture response time and status code in every visit.
Status code >=200 && <300 is good while >=300 && <=511 is bad which always considered as downtime error.

The Current status will show if the website is Up (Operational) or down (Downtime) with green and red indicators.

It will record and show the last 60 days of uptime status of the website in desktop mode and 30 days in mobile mode by default.

Screen capture


URL: https://pxzone.online/uptime/bitcointalk
Github: https://github.com/pxzone/pxzone.online
9  Economy / Scam Accusations / [WARNING] Scammers use Patreon to send SPAM emails on: January 23, 2024, 02:01:09 AM
What happened: As the title said, spammers now learned how to bypass spam emails and phishing URLs at least in gmail (which i currently use) to avoid redirecting it spam folder.
This is a related thread posted in reddit https://www.reddit.com/r/patreon/s/JZquBZKFW2

Scammers Profile Link:
Code:
radarappd6.site -> radar-dapp.net

Additional Notes:
The moment i received email from Patreon wonders me why i'm receiving this when i never have subscribe to someone's Patreon before. This avert me to check everything sent on the email. I thought this also a case of spoofed email but it looks like it was sent using patreon's email server.
This is the email content:




The URL in question (scammer profile link) that redirects to other site.

I searched about "radar dapp" and I found one in cmc the "RADAR" token with its website(below) which is the main website
Code:
dappradar.com

So this is just another story of giveaway scam in emails but with a twist.
10  Local / Pamilihan / PH SEC Issues Advisory Against Binance for Unauthorized Operations on: November 28, 2023, 11:20:36 AM
"This move comes just after the SEC recently said it will start naming unlicensed exchanges in its advisories going forward, as well as working with the National Telecommunications Commission (NTC) to block access to the exchanges’ websites."

"The SEC warned that those acting as salesmen, brokers, dealers, agents, or promoters for Binance within the Philippines could face criminal liability under Section 28 of the SRC. The penalties include a fine of up to five million pesos or imprisonment of up to twenty-one years, or both."

Source: https://bitpinas.com/regulation/ph-sec-binance-advisory/



After the recent international news regarding sa binance, now, dito naman satin. Surely, this will have a huge effect dito satin lalo na sa mga p2p traders if ma block ang binance site, maybe hindi lang website nila ang ma ba-block pati nadin ang sms access like sms 2fa.
At i bet na halos lahat ng crypto users dito satin ay may account sa binance compare sa ibang local exchanges.

Also, may penalties pa na pwedeng ipataw sa mga promoters nito based sa Section 28 of the SRC.
11  Bitcoin / Project Development / Bitcoin Price, Blocks, etc. to Image on: February 03, 2023, 05:52:56 PM
So i end up creating this thing after i found out that some other alternatives are not working anymore. Although i found 2 that but lacking some features.

Segwit and Legacy wallet address are supported. Background is transparent and color black #000000 is the default font color.
Supported Currency: ?currency=ticker
- USD
- EUR
- GBP
- PHP

Color:   ?color=hex_code
6-digit hex codes codes not including the hash sign "#".

Default value are in USD/BTC
Currency and Color are optional


Bitcoin Address Balance
Code:
https://pxzone.online/balance/wallet_address

Sample:
Code:
https://pxzone.online/balance/1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa?color=000000
Result:




Bitcoin to Fiat Conversion
Code:
https://pxzone.online/btc/price/bitcoin_value

Sample:
Code:
https://pxzone.online/btc/price/0.001?color=59a210&currency=eur
Result:




Fiat to Bitcoin Conversion
Code:
https://pxzone.online/fiat/btc/fiat_value

Sample:
Code:
https://pxzone.online/fiat/btc/2500?color=000000
Result:




Bitcoin Price History
Code:
https://pxzone.online/btc/history/dd-mm-yyyy

Sample:
Code:
https://pxzone.online/btc/history/04-12-2022?color=000000
Result:





MISC

I added some stats which can be accessed using the link below with some parameters ( ?misc=param) used and sample results in the table

Code:
https://pxzone.online/bitcoin?misc=param

Descriptions ParameterSample Results
Unconfirmed_Transactionsunconfirmed_tx
Transactions in the past 24 hours24h_tx_count
Bitcoins sent in the past 24 hours24h_btc_sent
Latest Block Hashlatest_hash
Hash on specific block heightmisc=block_height&block=(block_number)
Fastest Fee sat/vBfastest_fee
Economy Fee sat/vBeconomy_fee
Minimum Fee sat/vBminimum_fee


The conversion used came from Coingecko, APIs are from blockchain.com and Mempool.space

Let me know your thoughts, issues, anything in the comments/reply. Thanks.
12  Bitcoin / Electrum / Electrum 4.3.4 Relased on: January 28, 2023, 02:06:15 PM
New version of Electrum just released, this update includes several bug fixes, payserver and trampoline improvement, check the release notes for more information.

Release Notes
Code:
# Release 4.3.4 - Copyright is Dubious (January 26, 2023)
 * Lightning:
   - make sending trampoline payments more reliable (5251e7f8)
   - use different trampoline feature bits than eclair (#8141)
 * invoice-handling: fix get_request_by_addr incorrectly mapping
   addresses to request ids when an address was reused (#8113)
 * fix a deadlock in wallet.py (52e2da3a)
 * CLI: detect if daemon is already running (c7e2125f)
 * add an AppStream metainfo.xml file for Linux packagers (#8149)
 * payserver plugin:
   -replaced vendored qrcode lib
   -added tabs for on-chain and lightning invoices
   -revamped html and javascript
electrum/RELEASE-NOTES

Reminder:
Only download electrum from the main website[1] and don't forget to verify[2] before installing it.

[1] https://electrum.org/#download
[2] https://bitcointalk.org/index.php?topic=5240594.0
13  Bitcoin / Electrum / Electrum improved Payserver plugin by ChatGPT on: January 20, 2023, 10:54:20 PM
I found this tweet earlier today. I don't know how true this post is and if there should to be worry about talking about chatGPT in programming space.
I just want to ask coz this sounds like sarcasm to me lol.

About the improved payserver, well, that's all good to me though.


https://twitter.com/ElectrumWallet/status/1616542181115990016
14  Economy / Gambling discussion / Streamer and Crypto Guru Gambles Away Investor Funds on: January 11, 2023, 09:36:05 AM
Quote from: gamblingnews.com
DNP3 confessed to having gambled away all investors’ funds, the result of debilitating gambling addiction which forced him into desperation. DNP3 said that his addiction began unexpectedly, and it quickly took a hold of him.

DNP3 confessed to having spent all money he could find on a popular crypto gambling brand, chasing elusive big wins. “Even when the big wins did happen it wasn’t enough,” the streamer said. He admitted to having lost everything – including not only the investors’ funds but also his own savings.
I knew this guy because i followed him on twitter on his philanthropist activities on the platform also on twitch, that was a year ago, i guess. And was surprised after reading this news.
The act of using the investors funds without their consent is illegal in any way, worst if you gamble it all.

Well, when gambling addiction hits you, no matter how rich or poor you are, this will be a possible illness to every gambler. That's why gambling moderately.

I just read this news which has posted few days ago but never saw this topic on gambling related boards from 1-5 pages. Let me know if there's an existing discussion related to this so i can lock this instead.

Source: Gamblingnews.com
15  Bitcoin / Electrum / Electrum 4.3.3 Relased on: January 03, 2023, 03:17:31 PM
Even at this early days of the year after a long holiday devs still deliver its newest update of the app to its newest version. And yeah, with lots of fixed bugs this includes lightning, hardware wallets connection, binaries, etc.

Release notes
Code:
# Release 4.3.3 - (January 3, 2023)
 * Lightning:
   - fix handling failed HTLCs in gossip-based routing (#7995)
   - fix LN cooperative-chan-close to witness v1 addr (#8012)
 * PSBTs:
   - never put ypub/zpub in psbts, only plain xpubs (#8036)
   - for witness v0 txins, put both UTXO and WIT_UTXO in psbt (#8039)
 * Hardware wallets:
   - Trezor: optimize signing speed by not serializing tx (#8058)
   - Ledger:
     - modify plugin to support new bitcoin app v2.1.0 (#8041),
     - added a deprecation warning when using Ledger HW.1 devices.
       Ledger itself stopped supporting HW.1 some years ago, and it is
       becoming a maintenance burden for us to keep supporting it.
       Please migrate away from these devices. Support will be removed
       in a future release.
 * Binaries:
   - tighten build system to only use source pkgs in more places
     (#7999, #8000)
   - Windows:
     - use debian makensis instead of upstream windows exe (#8057)
     - stop using debian sid, build missing dep instead (98d29cba)
   - AppImage: fix failing to run on certain systems (#8011)
 * commands:
   - getinfo() to show if running in testnet mode (#8044)
   - add a "convert_currency" command (for fiat FX rate) (#8091)
 * Qt wizard: fix QR code not shown during 2fa wallet creation (#8071)
 * rework Tor-socks-proxy detection to reduce Tor-log-spam (#7317)
 * Android: add setting to enable debug logs (#7409)
 * fix payserver (merchant) js for electrum 4.3 invoice api (0fc90e07)
 * bip21: more robust handling of URIs that include a "lightning" key
   (ac1d53f0, 2fd762c3, #8047)
electrum/RELEASE-NOTES

Reminder:
Only download electrum from the main website[1] and don't forget to verify[2] before installing it.

[1] https://electrum.org/#download
[2] https://bitcointalk.org/index.php?topic=5240594.0
16  Economy / Gambling discussion / Re: [Boxing] Casimero vs Akaho. From "No-Contest" to "KO" on: December 21, 2022, 02:37:13 PM
I just want to brought this topic back since the previous one[1] was locked.

Yes as the title said the KBM or Korean Boxing Members Commission change the decision after some reviews and the admittance of Akaho that it's a KO defeat. Source[2].
"Mr. Akaho said that the damage he received was not due to the impact of the punch hit the back of his head," said John Hwang, KBM chairman, in a letter to the Games and Amusement Board (GAB).

"He took a break to fight again, but he gave up because he couldn't, and he admitted that it was KO defeat."

[1] https://bitcointalk.org/index.php?topic=5417421.0
[2] https://news.abs-cbn.com/sports/12/21/22/boxing-akaho-admits-he-lost-by-ko-to-casimero

I'll lock this thread later on...
17  Bitcoin / Electrum / Electrum 4.3.2 Relased on: September 28, 2022, 01:45:57 PM
New electrum version is released. No major updates though, more were bugs fixing. Check the release notes for more info.

* When creating new requests, reuse addresses of expired requests
   (fixes #7927).
 * Index requests by ID instead of receiving address. This affects the following commands: get_request, get_invoice, list_requests, list_invoices, delete_request, delete_invoice
 * Trampoline routing: remember routes that have failed. Try other routes instead of systematically raising tampoline fees.
 * Fix sweep to_local output from channel backup (#7959)
 * Harden build script for macOS binary: avoid using
   precompiled wheels from PyPI for most packages (#7918)
 * The Windows/AppImage/Android binaries are now built on debian using the snapshot.debian.org archive instead of ubuntu. This should help with historical reproducibility. (#7926)

Download the app here[1] don't forget to verify signature though.
[1] https://electrum.org/#download
18  Economy / Gambling discussion / [NEWS] Gambler Charged with Murder after Letting Kids Die on: September 06, 2022, 02:26:01 PM
A careless mother’s casino time resulted in her children’s death. The neglectful parent had left her kids in a hot car to place a few punts at a local casino without considering the consequences.
This is the saddest news I read today. I knew this case isn't possible when in online gambling but this is possible for other unfortunate circumstances too especially at home or somewhere else when you're doing your online gambling activity.

This should be a lesson to take to all parents out there that family is priority first before anything else especially children.

I wonder if there are parents who have experienced something like this or someone knew that has the same case, not with the one with a dead case though but something accident happened because of neglect parenting.

19  Bitcoin / Electrum / Electrum 4.3.0 Relased on: August 05, 2022, 10:51:02 PM
New electrum version is released. This release is focused on improvement of Lightning UI and finally the support of the Blockstream Jade hardware wallet[1].

# Release 4.3.0 - (August 5, 2022)

 * This version introduces a set of UI modifications that simplify the
   use of Lightning. The idea is to abstract payments from the payment
   layer, and to suggest solutions when a lightning payment is hindered
   by liquidity issues.
    - Invoice unification: on-chain and lightning invoices have been
      merged into a unique type of invoice, and the GUI has a single
      'create request' button. Unified invoices contain both a
      lightning invoice and an onchain fallback address.
    - The receive tab of the GUI can display, for each payment
      request, a lightning invoice, a BIP21 URI, or an onchain
      address. If the request is paid off-chain, the associated
      on-chain address will be recycled in subsequent requests.
    - The receive tab displays whether a payment can be received using
      Lightning, given the current channel liquidity. If a payment
      cannot be received, but may be received after a channel
      rebalance or a submarine swap, the GUI will propose such an
      operation.
    - Similarly, if channels do not have enough liquidity to pay a
      lightning invoice, the GUI will suggest available alternatives:
      rebalance existing channels, open a new channel, perform a
      submarine swap, or pay to the provided onchain fallback address.
    - A single balance is shown in the GUI. A pie chart reflects how
      that balance is distributed (on-chain, lightning, unconfirmed,
      frozen, etc).
    - The semantics of the wallet balance has been modified: only
      incoming transactions are considered in the 'unconfirmed' part
      of the balance. Indeed, if an outgoing transaction does not get
      mined, that is not going to decrease the wallet balance. Thus,
      change outputs of outgoing transactions are not subtracted from
      the confirmed balance. (Before this change, the arithmetic
      values of both incoming and outgoing transactions were added to
      the unconfirmed balance, and could potentially cancel
      each other.)

 * In addition, the following new features are worth noting:
    - support for the Blockstream Jade hardware wallet (#7633)
    - support for LNURL-pay (LUD-06) (#7839)
    - updated trampoline feature bit in invoices (#7801)
    - the claim transactions of reverse swaps are not broadcast until
      the parent transaction is confirmed. This can be overridden by
      manually broadcasting the local transaction.
    - the fee of submarine swap transactions can be bumped (#7724)
    - better error handling for trampoline payments, which should
      improve payment success rate (#7844)
    - channel backups are removed automatically when the corresponding
      channel is redeemed (#7513)
Although i just heard this new hardware wallet, it looks like neat but like a bulk remote to me. Lol
To those who keep collecting hardware wallets, making reviews, using the liquid network, i guess its must to try.

[1] https://blockstream.com/jade/
20  Economy / Service Discussion / Google Ads Updates its Policy towards Crypto on: July 20, 2022, 04:03:27 AM
It happens when I'm searching bitcoin/crypto related keywords yet there's no ads showing in the google search using different browsers and starting to wonder why. So I research and found this link from google[1].

It mentioned that it requires the advertisers docs and certificates from the country's central banks or authorized body for having the certificate of having a crypto business in one country.
And I said why this wasn't a think before? It will probably lessen the scams from google services' ads (google search and youtube) especially newbies who are trying to make a research and unfortunately clicked the ads where scam or fake websites worst malware and then experienced the dark side of crypto because of scammers/hackers.

[1] https://support.google.com/adspolicy/answer/12055790?hl=en


I don't know if there is an existing discussion about this, kindly linked the thread here so I can lock the topic.

Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!