Skip to content

Commit

Permalink
chore: release Kernelv3.2 to prod
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilVasava committed Dec 23, 2024
1 parent 47f2f72 commit e5f400a
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @zerodev/sdk

## 5.4.6

### Patch Changes

- Integrated KernelV3.2 support

## 5.4.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zerodev/sdk",
"version": "5.4.5",
"version": "5.4.6",
"author": "ZeroDev",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down
22 changes: 9 additions & 13 deletions packages/test/v0.7/ecdsaKernelAccount.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ describe("ECDSA kernel Account", () => {
index: index,
initCodeHash:
constants.KernelVersionToAddressesMap[kernelVersion]
.initCodeHash ?? "0x",
.initCodeHash ?? "0x"
})
console.log(
"Generate accountAddress using getKernelAddressFromECDSA: ",
Expand Down Expand Up @@ -312,25 +312,21 @@ describe("ECDSA kernel Account", () => {
async () => {
const sepoliaAccount = await getEcdsaKernelAccountWithRandomSigner(
[],
sepolia.id,
sepolia.id
)
const baseSepoliaAccount =
await getEcdsaKernelAccountWithRandomSigner(
[],
baseSepolia.id,
)
await getEcdsaKernelAccountWithRandomSigner([], baseSepolia.id)
const sepoliaPublicClient = await getPublicClient(sepolia.id)
const baseSepoliaPublicClient = await getPublicClient(
baseSepolia.id
)

const message = "0x51ec26f01af586507f7a8198bc8fba82754567b5cca1bff07f9765ebfe69ed66"
const replayableSignature = await sepoliaAccount.signMessage(
{
message,
useReplayableSignature: true
}
)
const message =
"0x51ec26f01af586507f7a8198bc8fba82754567b5cca1bff07f9765ebfe69ed66"
const replayableSignature = await sepoliaAccount.signMessage({
message,
useReplayableSignature: true
})
console.log("replayableSignature", replayableSignature)

const sepoliaAmbireResult = await verifyMessage({
Expand Down
6 changes: 6 additions & 0 deletions plugins/ecdsa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @zerodev/ecdsa-validator

## 5.4.1

### Patch Changes

- Integrated KernelV3.2 support

## 5.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/ecdsa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zerodev/ecdsa-validator",
"version": "5.4.1-alpha.0",
"version": "5.4.1",
"author": "ZeroDev",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down

0 comments on commit e5f400a

Please sign in to comment.