Skip to content

Commit

Permalink
Merge pull request #33 from pimlicolabs/feat/safeAccount
Browse files Browse the repository at this point in the history
Add safe account
  • Loading branch information
kristofgazso authored Nov 20, 2023
2 parents 370ee5d + 39164f7 commit 8e3b0be
Show file tree
Hide file tree
Showing 10 changed files with 1,033 additions and 19 deletions.
5 changes: 5 additions & 0 deletions .changeset/polite-seals-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"permissionless": patch
---

Added support for Safe account management
Binary file modified bun.lockb
Binary file not shown.
11 changes: 10 additions & 1 deletion src/accounts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,20 @@ import {
privateKeyToSimpleSmartAccount
} from "./privateKeyToSimpleSmartAccount.js"

import {
type PrivateKeySafeSmartAccount,
SignTransactionNotSupportedBySafeSmartAccount,
privateKeyToSafeSmartAccount
} from "./privateKeyToSafeSmartAccount.js"

import { type SmartAccount } from "./types.js"

export {
SignTransactionNotSupportedBySmartAccount,
type PrivateKeySimpleSmartAccount,
privateKeyToSimpleSmartAccount,
type SmartAccount
type SmartAccount,
SignTransactionNotSupportedBySafeSmartAccount,
privateKeyToSafeSmartAccount,
type PrivateKeySafeSmartAccount
}
Loading

0 comments on commit 8e3b0be

Please sign in to comment.