Skip to content

Instantly share code, notes, and snippets.

@payton
payton / README.md
Last active April 23, 2023 22:02
Set up Hubble on EC2 with CloudFormation

Set up Hubble on EC2 with CloudFormation

Instructions

  1. Create new stack with one click or use the provided stack.yaml template (Use a Goerli eth endpoint and leave all other configurations default)
  2. Connect to your EC2 instance
    1. Go to the resources tab
    2. Select your EC2 instance
    3. Go to your EC2 instance's primary page
@payton
payton / README.md
Created December 19, 2022 03:24
An Explanation of Web3 Authentication

Let's start with some foundations...

  • An Ethereum wallet is a private key and a public key pair.

  • A message is any string of text.

  • A signature is a string of text that is a function of a message and your private key.

  • When you have a message and a signature, you can recover the public key of the private key that created the signature.

I am attesting that this GitHub handle payton is linked to the Tezos account tz1gp9pmUpk7gDU5cCQ8JBrg2nid4E4Wad5s for tzprofiles
sig:edsigtvwoAqAsDX1o9ncp7o2y5xVLQSMnaZ6xUbgHBZzixHbe2AAbJiSCz3VGUwEKB52XpA6DGFsZBeccFMThgPXQ7Xed6vDJ3A
@payton
payton / CabotCheckDevelopment.md
Last active May 4, 2018 19:47
Cabot Check Development Guide

Cabot Check Development

This is an unofficial community-created guide

Cabot Setup

  1. Clone cabot
  2. Copy development conf: cp conf/development.env.example conf/development.env
  3. Create a new virtual environment in the Cabot root directory: python -m virtualenv venv
  4. Activate your virtual environment: source venv/bin/activate
  5. Install dependencies: pip install -r requirements.txt -r requirements-dev.txt -r requirements-plugins