diff --git a/bun.lockb b/bun.lockb index fdafda22..70a951b0 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 8f55a9ee..ec204e5c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @zerodev/sdk +## 5.5.4 + +### Patch Changes + +- feat: export actions from root in core package + ## 5.5.3 ### Patch Changes diff --git a/packages/core/index.ts b/packages/core/index.ts index da768124..34b0e040 100644 --- a/packages/core/index.ts +++ b/packages/core/index.ts @@ -20,6 +20,26 @@ export { type SponsorUserOperationParameters, type SponsorUserOperationReturnType } from "./actions/paymaster/sponsorUserOperation.js" +export { + upgradeKernel, + type UpgradeKernelParameters +} from "./actions/account-client/upgradeKernel.js" +export { + changeSudoValidator, + type ChangeSudoValidatorParameters +} from "./actions/account-client/changeSudoValidator.js" +export { + invalidateNonce, + type InvalidateNonceParameters +} from "./actions/account-client/invalidateNonce.js" +export { + uninstallPlugin, + type UninstallPluginParameters +} from "./actions/account-client/uninstallPlugin.js" +export { + signUserOperation, + type SignUserOperationReturnType +} from "./actions/account-client/signUserOperation.js" export type { SmartAccountClientConfig } from "./clients/kernelAccountClient.js" export { zerodevPaymasterActions, diff --git a/packages/core/package.json b/packages/core/package.json index fb638b76..34d5a385 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@zerodev/sdk", - "version": "5.5.3", + "version": "5.5.4", "author": "ZeroDev", "main": "./_cjs/index.js", "module": "./_esm/index.js",