Skip to content

Commit 49d8f68

Browse files
committed
release: lit-client & networks packages
1 parent 5464584 commit 49d8f68

File tree

7 files changed

+23
-4
lines changed

7 files changed

+23
-4
lines changed

.changeset/brown-houses-matter.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@lit-protocol/lit-client': major
3+
'@lit-protocol/networks': major
4+
---
5+
6+
feat(payment): add Ledge contract ABIs

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"all-memes-hang",
2323
"bitter-nights-create",
2424
"bitter-sloths-pick",
25+
"brown-houses-matter",
2526
"chatty-poets-grow",
2627
"chilly-rice-stand",
2728
"cuddly-comics-take",

packages/auth-services/src/login-server/src/createLoginServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export const createLitLoginServer = (
133133
stateStore.set(state, {
134134
appRedirect,
135135
caller,
136-
timeoutId,
136+
timeoutId: timeoutId as unknown as NodeJS.Timeout,
137137
});
138138
} catch (err) {
139139
set.headers = {
@@ -273,7 +273,7 @@ export const createLitLoginServer = (
273273
stateStore.set(state, {
274274
appRedirect,
275275
caller,
276-
timeoutId,
276+
timeoutId: timeoutId as unknown as NodeJS.Timeout,
277277
});
278278
} catch (err) {
279279
set.headers = {

packages/lit-client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lit-protocol/lit-client
22

3+
## 8.0.0-alpha.16
4+
5+
### Major Changes
6+
7+
- feat(payment): add Ledge contract ABIs
8+
39
## 8.0.0-alpha.15
410

511
### Major Changes

packages/lit-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"tags": [
2222
"universal"
2323
],
24-
"version": "8.0.0-alpha.15",
24+
"version": "8.0.0-alpha.16",
2525
"main": "./dist/index.js",
2626
"typings": "./src/index.d.ts",
2727
"types": "./dist/index.d.ts",

packages/networks/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lit-protocol/networks
22

3+
## 8.0.0-alpha.20
4+
5+
### Major Changes
6+
7+
- feat(payment): add Ledge contract ABIs
8+
39
## 8.0.0-alpha.19
410

511
### Major Changes

packages/networks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"tags": [
3636
"universal"
3737
],
38-
"version": "8.0.0-alpha.19",
38+
"version": "8.0.0-alpha.20",
3939
"main": "./dist/index.js",
4040
"typings": "./src/index.d.ts",
4141
"types": "./dist/index.d.ts"

0 commit comments

Comments
 (0)