Skip to content

Instantly share code, notes, and snippets.

View 0xRAG's full-sized avatar

Ryan Gilbert 0xRAG

  • Coinbase
  • Miami, FL
View GitHub Profile
@0xRAG
0xRAG / script.ts
Created November 18, 2024 02:57
eip 7702 gas error
import {
Address,
Secp256k1,
Authorization,
TransactionEnvelopeEip7702,
Value,
Hex,
RpcTransport,
} from "ox";
import { odysseyTestnet } from "viem/chains";
{"lastUpload":"2022-03-21T15:09:19.050Z","extensionVersion":"v3.4.3"}
@0xRAG
0xRAG / bst.py
Last active January 1, 2019 23:30
class Node:
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def __eq__(self, other):
if other == None:
return False
return (self.value == other.value and