Skip to content

Instantly share code, notes, and snippets.

View gringokiwi's full-sized avatar

gringokiwi

View GitHub Profile
mkdir -p src
touch src/index.ts
pnpm init --init-type module
pnpm pkg set scripts.dev="node src/index.ts"
pnpm add @arkade-os/sdk @scure/bip39
cat <<'EOF' > src/index.ts
import { Wallet, MnemonicIdentity, InMemoryWalletRepository, InMemoryContractRepository } from '@arkade-os/sdk'
import { generateMnemonic } from '@scure/bip39'
import { wordlist } from '@scure/bip39/wordlists/english.js'