Skip to content

Instantly share code, notes, and snippets.

View kelvinpraises's full-sized avatar
🦍
Working...

kelvinpraises

🦍
Working...
View GitHub Profile
#!/bin/bash
set -e
RPC_URL="https://ethereum-sepolia-rpc.publicnode.com"
EOA_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
EOA_ADDR="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
PAYER_KEY="0x2df416eabadfad63d49c3555472336318b90309192de1701b568117e5ef3218a"
TARGET_ADDR="0x0000000000000000000000000000000000000000"
echo "Initial State:"
import React, { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
const items = [
"Community",
"NFT Marketplace",
"Partnerships",
"Events",
"Blog",
]; // Add more or remove but always try to make it odd or adjust the visibility from the css below
@kelvinpraises
kelvinpraises / fix-dyld-missing-symbol-called-errors-on-m1-macs.md
Created August 7, 2023 19:44 — forked from adrienjoly/fix-dyld-missing-symbol-called-errors-on-m1-macs.md
Fix `dyld[]: missing symbol called` errors when running Node.js programs on M1 Macs

Problem

If you're getting this kind of error when running Node.js programs with binary dependencies that don't support M1 yet, e.g.:

$ yarn test
dyld[51175]: missing symbol called
dyld[51176]: missing symbol called
@kelvinpraises
kelvinpraises / package.json
Created January 10, 2023 22:54 — forked from kim3er/package.json
TypeScript package with ES Module and CommonJS support
{
"name": "example-proj",
"version": "0.0.1",
"description": "",
"exports": {
"./*": {
"import": "./js/*.js",
"require": "./js/*.cjs"
}
},
@kelvinpraises
kelvinpraises / README.md
Created December 24, 2022 10:32 — forked from Tynael/README.md
How to use npx to run gist based scripts