Skip to content

Commit

Permalink
export generateWallet
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasey committed Oct 25, 2024
1 parent aafaa4a commit 5a7b0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/onchain/src/generateWallet.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { privateKeyToAccount, generatePrivateKey } from 'viem/accounts';

function generateWallet() {
export function generateWallet() {
const key = generatePrivateKey();

const account = privateKeyToAccount(key);
Expand Down

0 comments on commit 5a7b0b1

Please sign in to comment.