Skip to content

Instantly share code, notes, and snippets.

og-evm Validator Network: Internal Operator Runbook

For the team that owns the og-evm AWS account and runs the validator network.

Overview

Cosmos-EVM (evmd) chain. Cosmos chain-id og-evm-testnet-1, EVM chain-id 262144, bech32 prefix og. Base denom ogwei; display OGETH ("OG Ether"), 1 OGETH = 10^18 ogwei. The denom name is set by bootstrap-keys.sh at genesis, not by the binary (upstream evmd ships the

Joining the og-evm Network: External Validator Guide

How to run a full node and become a validator on og-evm from your own infrastructure. You do not need access to the operators' AWS account, only the published values in the Network Information table below.

Note

og-evm is a single-binary Cosmos-EVM chain (evmd runs CometBFT consensus and the EVM in one process). There is no separate consensus/execution client, no JWT, no fixed deposit. Your consensus key comes from priv_validator_key.json via evmd comet show-validator.

CasinoBet.jsx Refactoring Plan

Date: 2025-12-10


Overview

Current State: CasinoBet.jsx is ~2400 lines with 20+ useState hooks, 15+ useEffect hooks, and multiple inline components. This causes maintenance issues and the result flashing bug.

Goal: Transform into a modular, extensible architecture with custom hooks and separated components.

@BornPsych
BornPsych / docker-postgres.md
Last active October 15, 2025 12:55
docker postgres command

For Quickly running postgres database for monitoring - watch -n 0.1 "ps aux | grep [p]ostgres"

Pull docker image

docker pull postgres

Run docker image

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@BornPsych
BornPsych / rust_error.rs
Created March 25, 2025 08:45
Rust Error file quick start
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {}
// region: --- Error Boilerplate
impl core::fmt::Display for Error {
fn fmt(
&self,
fmt: &mut core::fmt::Formatter,
) -> core::result::Result<(), core::fmt::Error> {
@BornPsych
BornPsych / GitHub-Tips.md
Created February 19, 2025 11:30 — forked from stevecondylios/GitHub-Tips.md
Advanced GitHub Search Tricks & Tips
@BornPsych
BornPsych / Instruction.md
Created December 30, 2024 06:39 — forked from minhanhhere/Instruction.md
Customise Your Terminal Using Zsh & powerlevel10k

What we will setup

1. ZSH

ZSH, also called the Z shell, is an extended version of the Bourne Shell (sh), with plenty of new features, and support for plugins and themes.

2. oh-my-zsh

This is a framework for zsh

3. Powerlevel 10k

Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility and out-of-the-box experience.

@BornPsych
BornPsych / config
Last active October 28, 2025 19:44
Ghostty-config
# === Theme and Colors ===
theme = Catppuccin Frappe
# === Mouse Behavior ===
mouse-hide-while-typing = true
mouse-scroll-multiplier = 2.0
# === Quick Terminal ===
keybind = global:alt+space=toggle_quick_terminal
@BornPsych
BornPsych / Ghostty-config-example
Created December 30, 2024 03:37 — forked from Mario-SO/config
Ghostty config example
# === Font Configuration ===
font-family = "" # String: Font name or empty to reset
font-family-bold = "" # String: Bold font variant
font-family-italic = "" # String: Italic font variant
font-family-bold-italic = "" # String: Bold-italic font variant
font-style = "" # String: Named font style or "false" to disable
font-style-bold = "" # String: Named bold font style
font-style-italic = "" # String: Named italic font style
font-style-bold-italic = "" # String: Named bold-italic font style
font-synthetic-style = "" # Values: "true", "false", "no-bold", "no-italic", "no-bold-italic"