Skip to content

Instantly share code, notes, and snippets.

View alex-georgiou's full-sized avatar
💭
I'm adding taproot assets to the LND adapter for Bitcoin & Altcoin Wallets.

Alexandros Georgiou alex-georgiou

💭
I'm adding taproot assets to the LND adapter for Bitcoin & Altcoin Wallets.
View GitHub Profile
@alex-georgiou
alex-georgiou / bitcoin-icon.php
Last active August 30, 2018 22:40
Generate a Bitcoin icon in SVG and PNG
<?php
ob_start();
$text = '&#x20bf;';
?><?xml version="1.0"?>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
@alex-georgiou
alex-georgiou / wallets-xyz-coin-adapter.php
Last active December 4, 2022 05:53
Example of how to add an RPC-compatible wallet to the Full Node Multi Coin Adapter for Bitcoin and Altcoin Wallets
<?php
/*
Plugin Name: XYZ Coin Adapter
Plugin URI: https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/full-node-multi-coin-adapter-extension/
Description: Example of how to add an RPC-compatible wallet to the Full Node Multi Coin Adapter for Bitcoin and Altcoin Wallets
Version: 0.1.0
Author: Alex Georgiou <alexgeorgiou@gmail.com>
Author URI: http://alexgeorgiou.gr
*/
@alex-georgiou
alex-georgiou / wallets-fixed-rates.php
Last active August 20, 2021 03:20
This example code adds some fixed exchange rates to the Bitcoin and Altcoin Wallets WordPress plugin version 3.4.0 or later.
<?php
/*
* Plugin Name: Bitcoin and Altcoin Wallets: Fixed exchange rates extension
* Description: Example of how to add fixed exchange rates to Bitcoin and Altcoin Wallets.
* Version: 1.0.0
* Plugin URI: https://gist.github.com/alex-georgiou/492196184f206002c864225180ca8fbb
* Author: Alexandros Georgiou <info@dashed-slug.net>
* Author URI: http://dashed-slug.net
* License: GPLv2 or later
*
@alex-georgiou
alex-georgiou / Dockerfile
Last active April 5, 2016 09:08
Run `grunt phpunit` against your project on PHP versions 5.3 through 5.6
# Run `grunt phpunit` against your project on PHP versions 5.3 through 5.6
# Assumes a Gruntfile.js with working phpunit task
# Based on http://blog.eriksen.com.br/en/docker-image-multi-version-php-development
#
# Copy this Dockerfile into your project. Build the image with:
#
# docker build -t alexg/php-x-test:1.0 -t alexg/php-x-test:latest .
#
# Run your tests with:
#