Skip to content

Commit

Permalink
chore: release (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler authored Dec 9, 2024
1 parent 50fd5d1 commit a8e9a49
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @biconomy/sdk

## 0.0.14

### Patch Changes

- Add rhintestones attestation address during createAccount

## 0.0.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/sdk",
"version": "0.0.13",
"version": "0.0.14",
"author": "Biconomy",
"repository": "github:bcnmy/sdk",
"main": "./dist/_cjs/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/sdk/clients/createNexusSessionClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ describe("nexus.session.client", async () => {
sessionPublicKey,
description: `Session to increment a counter for ${testAddresses.Counter}`,
moduleData: {
...createSessionsResponse,
permissionIds: createSessionsResponse.permissionIds,
action: createSessionsResponse.action,
mode: SmartSessionMode.USE
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ describe("modules.smartSessions.dx", async () => {
sessionPublicKey,
description: `Session to increment a counter for ${testAddresses.Counter}`,
moduleData: {
...createSessionsResponse,
permissionIds: createSessionsResponse.permissionIds,
action: createSessionsResponse.action,
mode: SmartSessionMode.USE
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ describe("modules.smartSessions.sudo.policy", async () => {
sessionPublicKey,
description: `Session to increment a counter for ${testAddresses.Counter}`,
moduleData: {
...createSessionsResponse,
permissionIds: createSessionsResponse.permissionIds,
action: createSessionsResponse.action,
mode: SmartSessionMode.USE
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ describe("modules.smartSessions", async () => {
description: `Session to increment a counter for ${testAddresses.Counter}`,
sessionPublicKey,
moduleData: {
...createSessionsResponse,
permissionIds: createSessionsResponse.permissionIds,
action: createSessionsResponse.action,
mode: SmartSessionMode.USE
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ describe("modules.smartSessions.uni.policy", async () => {
description: `Session to add balance to MockCallee for ${testAddresses.MockCallee}`,
sessionPublicKey,
moduleData: {
...createSessionsResponse,
permissionIds: createSessionsResponse.permissionIds,
action: createSessionsResponse.action,
mode: SmartSessionMode.USE
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/test/playground.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ describe.skipIf(!playgroundTrue())("playground", () => {
expect(balanceAfter - balanceBefore).toBe(1n)
})

test("should test creating and using a session", async () => {
// Skipped because on base sepolia the attestations for smart sessions have not been created yet
test.skip("should test creating and using a session", async () => {
const sessionsModule = toSmartSessionsValidator({
account: nexusClient.account,
signer: eoaAccount
Expand Down

0 comments on commit a8e9a49

Please sign in to comment.