- 0xdC7765Ca06554904aD61b540B20ebCC2efa5e20B
- 0x416bc791F0FaD9b0E1295962290a32bd08De140A
- 0xfEC45c5468a3e77F4Ec3aF6657BcA3afBEF89C82
- 0xF36907F31C2e5b90e4Ab94796BEeAfd5572dDE47
- 0xe8Bef391Ee7395061Ce4C6B251409D80AC600894
- 0x97138bbb46aE2e3d7F1Ba950A0443DEB7a9a0eA9
- 0x524ea990fa330E732BfcCc1731Daec06fc16aff4
- 0xD1F27509e21b0a9A061585f8a6e4725CC478bfEa
- 0xb2B65202A8a6d29b77Cf1B1997Ae1A7c524E3F4a
- 0xACBAa6Cd6CEB6F3F23d4f8600D8911e8A523ab4E
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"chainId": "eip155:11155111", | |
"method": "eth_sendTransaction", | |
"params": { | |
"abi": [ | |
{ | |
"type": "function", | |
"name": "mint", | |
"inputs": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Launch node monitoring. | |
# Remember to `chmod u+x` then run ./monitor.sh | |
sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static function displaySvg($handle){ | |
$svg_path = sprintf('images/svg/%s.svg',$handle); | |
ob_start(); | |
include(Theme::getResourcePath($svg_path)); | |
$svg = ob_get_contents(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$links = array(); | |
foreach(Theme::getSocialMediaChannels() as $handle => $name) | |
{ | |
$url = get_theme_mod($handle); | |
if($url!='http://' && $url!='') | |
{ | |