Skip to content

Instantly share code, notes, and snippets.

View danimbrogno's full-sized avatar

Dan Imbrogno danimbrogno

View GitHub Profile
@danimbrogno
danimbrogno / Whitelist.md
Last active June 19, 2024 01:06
EEPVERS ArtEngine Hoody Whitelist
  • 0xdC7765Ca06554904aD61b540B20ebCC2efa5e20B
  • 0x416bc791F0FaD9b0E1295962290a32bd08De140A
  • 0xfEC45c5468a3e77F4Ec3aF6657BcA3afBEF89C82
  • 0xF36907F31C2e5b90e4Ab94796BEeAfd5572dDE47
  • 0xe8Bef391Ee7395061Ce4C6B251409D80AC600894
  • 0x97138bbb46aE2e3d7F1Ba950A0443DEB7a9a0eA9
  • 0x524ea990fa330E732BfcCc1731Daec06fc16aff4
  • 0xD1F27509e21b0a9A061585f8a6e4725CC478bfEa
  • 0xb2B65202A8a6d29b77Cf1B1997Ae1A7c524E3F4a
  • 0xACBAa6Cd6CEB6F3F23d4f8600D8911e8A523ab4E
@danimbrogno
danimbrogno / README.md
Last active May 28, 2024 15:02
Demonstration of running two instances of quilibrium in docker, with update.sh script

Example of running two instances of Quilibrium side by side inside docker containers with an update script.

File Structure:

quilibrium/
- .config1/ # Folder mount for persisting config of first instance
- .config2/ # Folder mount for persisting config of second instance
- src/ # Your local clone of the Quilibrium Repository (http://github.com/QuilibriumNetwork/ceremonyclient)
- update.sh # Shell script for updating to latest version and restarting docker instances (must by chmod u+x)
- docker-compose.yaml # Docker compose file for starting services
@danimbrogno
danimbrogno / gist:27a9aac91d5af3c8775a4345d7c45ae5
Created April 11, 2024 01:22
Farcaster frame unsupported transaction returned json
{
"chainId": "eip155:11155111",
"method": "eth_sendTransaction",
"params": {
"abi": [
{
"type": "function",
"name": "mint",
"inputs": [
{
@danimbrogno
danimbrogno / monitor.sh
Last active March 5, 2024 14:03
Quilibrium Convenience Scripts
#! /bin/bash
# Launch node monitoring.
# Remember to `chmod u+x` then run ./monitor.sh
sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat
@danimbrogno
danimbrogno / gist:4ebf4f5c22eef8a935a3
Created February 19, 2015 20:12
Output Buffering Example
public static function displaySvg($handle){
$svg_path = sprintf('images/svg/%s.svg',$handle);
ob_start();
include(Theme::getResourcePath($svg_path));
$svg = ob_get_contents();
@danimbrogno
danimbrogno / gist:f58c195f2385329a7d4b
Created February 19, 2015 20:06
OutputSocialMediaMenuFunction
$links = array();
foreach(Theme::getSocialMediaChannels() as $handle => $name)
{
$url = get_theme_mod($handle);
if($url!='http://' && $url!='')
{