Skip to content

Instantly share code, notes, and snippets.

@ChewingGlass
ChewingGlass / verify.sh
Last active December 18, 2024 18:46
Verify all anchor programs
#!/bin/bash
# Function to verify a single program
verify_program() {
local program_dir=$1
local max_attempts=5
local attempt=1
# Get the base name and convert hyphens to underscores
library_name=$(basename "$program_dir" | tr '-' '_')