Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Nov 13, 2024
1 parent 2ec5a92 commit 1555e0b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 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.10

### Patch Changes

- Added Distributed Session Keys w/ Ownable & Session examples

## 0.0.9

### 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.9",
"version": "0.0.10",
"author": "Biconomy",
"repository": "github:bcnmy/sdk",
"main": "./dist/_cjs/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { toSmartSessionsValidator } from "./toSmartSessionsValidator"
// Distributed Sessions enhance security and efficiency by storing session keys on Biconomy's Delegated Authorisation Network (DAN),
// providing features like automated transaction processing and reduced exposure of private keys.

describe("modules.smartSessions.dan", async () => {
describe("modules.smartSessions.dan.dx", async () => {
let network: NetworkConfig
let chain: Chain
let bundlerUrl: string
Expand Down Expand Up @@ -127,7 +127,7 @@ describe("modules.smartSessions.dan", async () => {

expect(installSuccess).toBe(sessionCreateSuccess)

// Prepare the session data to be shared with the dApp
// Prepare the session data to be stored by the dApp. This could be saved in a Database or client side in local storage.
const sessionData: SessionData = {
granter: usersNexusClient.account.address,
sessionPublicKey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ describe("modules.smartSessions.dx", async () => {

expect(installSuccess).toBe(sessionCreateSuccess)

// Prepare the session data to be stored by the dApp. This could be saved in a Database by the dApp, or client side in local storage.
const sessionData: SessionData = {
granter: usersNexusClient.account.address,
sessionPublicKey,
Expand Down

0 comments on commit 1555e0b

Please sign in to comment.