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
<?php | |
// Change To Repo Directory | |
chdir("/full/path/to/repo"); | |
// Load Last 10 Git Logs | |
$git_history = []; | |
$git_logs = []; | |
exec("git log -10", $git_logs); |
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
[ | |
{ | |
"metrics": { | |
"saturation": 2.3453485576818607, | |
"non_myopic_member_rewards": { | |
"quantity": 121682991, | |
"unit": "lovelace" | |
}, | |
"produced_blocks": { | |
"quantity": 121, |
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
Welcome to my test project site | |
These are my project policy ids: | |
1. yszflhp0l3is3vtnzj5v6siqpy17zi4stcp2ji2pst7jje4bnmompj81 | |
2. cybvqqvcml0m1e6pw4rv53d3l1li7fc37esby7rmk3ya9v5359km0cso | |
3. 582cc440b143476a063b61944ab76435917414f926d27e69b72f84e3 |
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
class_name CardanoWallet | |
extends Node | |
# Signals | |
signal wallet_enabled(wallet_name: String, success: bool, error: Variant) | |
signal api_result(method_name: String, result: Variant, error: Variant) | |
# Variables | |
var current_wallet: String = "" |