I hereby claim:
- I am bussyjd on github.
- I am bussyjd (https://keybase.io/bussyjd) on keybase.
- I have a public key whose fingerprint is C964 76FD 1311 D287 3572 1AEB 2E7D AECB 224C 16FA
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # Aztec EL/CL Fitness Validator | |
| # Validates Execution Layer and Consensus Layer endpoints for Aztec validation duties | |
| # | |
| set -uo pipefail | |
| # Note: -e is intentionally omitted to allow graceful error handling | |
| # Default values |
| #!/bin/sh | |
| set -e | |
| # Default configuration | |
| CHAIN=${1:-mainnet} # Default to mainnet if not specified | |
| case "$CHAIN" in | |
| mainnet|holesky|sepolia) ;; | |
| *) echo "Unsupported chain: $CHAIN. Use mainnet, holesky or sepolia." && exit 1 ;; | |
| esac |
| FROM snyk/snyk:linux as builder | |
| ENV NAMADA_TAG=v0.12.0 | |
| ENV TM_HASH=v0.1.4-abciplus | |
| RUN apt-get update -y && apt-get install -y \ | |
| build-essential \ | |
| make \ | |
| pkg-config \ | |
| libssl-dev \ |
| def flatlist(input): | |
| result = [] | |
| for item in input: | |
| # It's a int? store it! | |
| if isinstance(item, int): | |
| result.append(item) | |
| #print(item) | |
| # It's a list? Run through it! | |
| elif isinstance(item, list): | |
| result += flatlist(item) |
| server { | |
| server_name <your ipfs domain name>; # managed by Certbot | |
| location /api/v0/add { | |
| proxy_pass http://localhost:5001; | |
| proxy_set_header Host $host; | |
| proxy_cache_bypass $http_upgrade; | |
| allow all; | |
| } |
| [ | |
| { | |
| "constant": true, | |
| "inputs": [], | |
| "name": "name", | |
| "outputs": [ | |
| { | |
| "name": "", | |
| "type": "string" | |
| } |
| [ | |
| { | |
| "constant": true, | |
| "inputs": [ | |
| { | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "icoRounds", |
I hereby claim:
To claim this, I am signing this object:
| [DEFAULT] | |
| logdir=/var/log/nova | |
| state_path=/var/lib/nova | |
| lock_path=/run/lock/nova | |
| verbose=True | |
| api_paste_config=/etc/nova/api-paste.ini | |
| scheduler_driver=nova.scheduler.simple.SimpleScheduler | |
| s3_host=172.16.1.13 | |
| ec2_host=172.16.1.13 | |
| ec2_dmz_host=172.16.1.13 |
| require 'rubygems' | |
| require 'tire' | |
| require 'yajl/json_gem' | |
| require 'debugger' | |
| #class Lastic | |
| url = '' | |
| content = '' |