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

chore: release #144

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading