Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: sdkv5.4 viem native aa #194

Merged
merged 25 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4e71862
refactor: Update entryPoint type to EntryPointVersion in plugin manag…
SahilVasava Oct 31, 2024
25b1794
feat: Migrated to [email protected] in core and ecdsa pkgs(removed permissi…
SahilVasava Nov 6, 2024
6f9900e
feat: updated passkey validator and webauthn-key pkgs
SahilVasava Nov 7, 2024
7f7a7c0
feat: updated passkey validator and webauthn-key pkgs
SahilVasava Nov 7, 2024
e574f3f
style: formate and lint
SahilVasava Nov 7, 2024
0f49db1
feat: updated permissions pkg
SahilVasava Nov 7, 2024
c9e1b3f
feat: updated session-key pkg
SahilVasava Nov 7, 2024
061eeaa
feat: updated hooks pkg
SahilVasava Nov 7, 2024
2fe509e
feat: updated modularPermission pkg
SahilVasava Nov 7, 2024
694bff7
feat: updated multi-chain-weighted-validator pkg
SahilVasava Nov 12, 2024
cc54903
feat: updated multi-chain-weighted-validator pkg
SahilVasava Nov 12, 2024
7d968e6
feat: updated multi-tenant-session-account pkg
SahilVasava Nov 13, 2024
8c0fa96
feat: updated weighted-ecdsa-validator and weighted-validator pkgs
SahilVasava Nov 13, 2024
69a9333
feat: updated multi-chain-ecdsa and multi-chain-web-authn pkgs
SahilVasava Nov 14, 2024
9bd6c89
chore: update import
SahilVasava Nov 14, 2024
ebf6001
chore: update multichain to multi-chain-ecdsa
SahilVasava Nov 14, 2024
4e96e18
feat: update remoteSigner
SahilVasava Nov 14, 2024
e460fcb
feat: added different Signer support, entryPoint util and types and r…
SahilVasava Nov 15, 2024
ce0835d
chore: update bun.lockb
SahilVasava Nov 15, 2024
ddceb91
Merge branch 'main' of github.com:zerodevapp/sdk into feat/sdkv5.4_vi…
SahilVasava Nov 15, 2024
e845f91
chore: format
SahilVasava Nov 15, 2024
66b93bc
feat: added zd_sponsorUserOperation flow
SahilVasava Nov 15, 2024
52540da
Merge branch 'feat/sdkv5.4_viem-native-aa' of github.com:zerodevapp/s…
SahilVasava Nov 15, 2024
1aa9c52
feat: remove entryPoint from paymasterClient
SahilVasava Nov 17, 2024
fcec7f0
release: release 5.4.x pkgs to prod
SahilVasava Nov 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @zerodev/sdk

## 5.4.0

### Minor Changes

- Migrate to using `[email protected]` with native AA modules instead of `permissionless`

## 5.4.0-beta.0

### Minor Changes

- Migrate to using `[email protected]` with native AA modules instead of `permissionless`

## 5.3.26

### Patch Changes
Expand Down
7 changes: 5 additions & 2 deletions packages/core/accounts/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
export {
createKernelAccount,
type KernelSmartAccount,
type CreateKernelAccountParameters,
type CreateKernelAccountReturnType,
type KernelSmartAccountImplementation,
KERNEL_ADDRESSES
} from "./kernel/createKernelAccount.js"
export {
createKernelAccountV1,
type KernelSmartAccountV1
type CreateKernelAccountV1ReturnType,
type KernelSmartAccountV1Implementation
} from "./kernel/v1/createKernelAccountV1.js"
export { createKernelAccountV0_2 } from "./kernel/v2/createKernelAccountV0_2.js"
export { KernelAccountV2Abi } from "./kernel/v2/abi/KernelAccountV2Abi.js"
Expand Down
Loading