Skip to content

Instantly share code, notes, and snippets.

View mrbrucespringsteen's full-sized avatar

Matt Stephenson mrbrucespringsteen

  • Planck
  • New York
View GitHub Profile
@shrugs
shrugs / amulet.ts
Created February 24, 2021 04:30
amulet verification code
import { utils } from 'ethers'
export interface Amulet {
value: string;
hash: string;
count: number;
}
const getAmuletCount = (hash: string): number => {
const matches = hash.match(/(8)\1*/g);