Skip to content

Instantly share code, notes, and snippets.

View zenkodr's full-sized avatar
💭
I may be slow to respond.

Joseph Martinez zenkodr

💭
I may be slow to respond.
  • SSECA Founder, Syntax Syndicate CO-Founder
  • California, USA
View GitHub Profile
@zenkodr
zenkodr / rescue-tokens.ts
Created September 3, 2023 18:36 — forked from ezynda3/rescue-tokens.ts
Flashbots Rescue Tokens
import { ethers, providers, Wallet, utils, Transaction } from "ethers";
import {
FlashbotsBundleProvider,
FlashbotsBundleResolution,
} from "@flashbots/ethers-provider-bundle";
import { exit } from "process";
const FLASHBOTS_URL = "https://relay-goerli.flashbots.net";
const TOKEN_ADDRESS = "0x4E5d67a73bdb6BF68fADa7BDD7F455A7aA02C8ab";
@zenkodr
zenkodr / CommunityCard.tsx
Created August 12, 2023 16:18 — forked from adrianhajdin/CommunityCard.tsx
Build and Deploy a Full Stack MERN Next.js 13 Threads App | React, Next JS, TypeScript, MongoDB
import Image from "next/image";
import Link from "next/link";
import { Button } from "../ui/button";
interface Props {
id: string;
name: string;
username: string;
imgUrl: string;
@zenkodr
zenkodr / ETC_multisig_wallet_audit_report.md
Created July 24, 2023 15:54 — forked from Dexaran/ETC_multisig_wallet_audit_report.md
Ethereum CLassic multisig wallet audit report.

Ethereum Classic Multisig Wallet audit report.

Summary

This is the report from a security audit performed on Ethereum Classic Multisig Wallet by Dexaran. This contracts are a version of OpenZeppelin Multisig Wallet.

The audit focused primarily on the security of funds and fault tolerance of the multisig wallet. The main intention of this multisig wallet is to serve as an official storage of funds donated for ETC development.

In scope

@zenkodr
zenkodr / index.html
Last active May 2, 2022 15:57
Satisfying Button (Neumorphism)
<header>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
</header>
<h1>Neumorphic Buttons</h1>
<p>Hover us and enjoy the satisfying neumorphic animation designs!</p>
<div class="frame">
<button class="custom-btn btn-1">Read More</button>
<button class="custom-btn btn-2">Read More</button>
<button class="custom-btn btn-3"><span>Read More</span></button>
@zenkodr
zenkodr / Contract Killer 3.md
Created May 2, 2022 15:40 — forked from oz87/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@zenkodr
zenkodr / Contract Killer 3.md
Created May 2, 2022 15:40 — forked from tony-caffe/Contract Killer 3.md
The latest version of Bytes Unlimited ‘Contract Killer’ for web professionals

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Revised by Bytes Unlimited : Feb 3rd 2020

@zenkodr
zenkodr / houdini-gradient-border-button.markdown
Created May 2, 2022 15:29
Houdini Gradient Border Button
@zenkodr
zenkodr / candy-color-button-animation.markdown
Created May 2, 2022 15:19
Candy Color Button Animation
@zenkodr
zenkodr / TestTemplate.cs
Created December 16, 2020 04:44
Xunit Testing Template
using System;
using Xunit;
namespace TestTemplate.Tests
{
public class Test
{
[Fact]
public void Test()
{