Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade lit protocol sdk version
Browse files Browse the repository at this point in the history
rodrigopavezi committed Dec 6, 2024
1 parent 11a4e86 commit 0229d47
Showing 5 changed files with 188 additions and 192 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -31,8 +31,10 @@
"test": "lerna run test --concurrency=1",
"format": "prettier . -w",
"format:check": "prettier . -c",
"link:all": "for d in packages/*; do cd $d; yarn link; cd -; done",
"unlink:all": "for d in packages/*; do cd $d; yarn unlink; cd -; done"
"link:all-npm": "for d in packages/*; do cd $d; npm link; cd -; done",
"unlink:all-npm": "for d in packages/*; do cd $d; npm unlink; cd -; done",
"link:all-yarn": "for d in packages/*; do cd $d; yarn link; cd -; done",
"unlink:all-yarn": "for d in packages/*; do cd $d; yarn unlink; cd -; done"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.18.0",
12 changes: 6 additions & 6 deletions packages/lit-protocol-cipher/package.json
Original file line number Diff line number Diff line change
@@ -40,13 +40,13 @@
"test:watch": "yarn test --watch"
},
"dependencies": {
"@lit-protocol/auth-helpers": "7.0.0",
"@lit-protocol/constants": "7.0.0",
"@lit-protocol/auth-helpers": "7.0.1",
"@lit-protocol/constants": "7.0.1",
"@lit-protocol/contracts": "0.0.74",
"@lit-protocol/encryption": "7.0.0",
"@lit-protocol/lit-node-client": "7.0.0",
"@lit-protocol/lit-node-client-nodejs": "7.0.0",
"@lit-protocol/types": "7.0.0",
"@lit-protocol/encryption": "7.0.1",
"@lit-protocol/lit-node-client": "7.0.1",
"@lit-protocol/lit-node-client-nodejs": "7.0.1",
"@lit-protocol/types": "7.0.1",
"@requestnetwork/request-client.js": "0.52.0",
"@requestnetwork/types": "0.47.0",
"@walletconnect/modal": "2.7.0",
6 changes: 3 additions & 3 deletions packages/request-node/package.json
Original file line number Diff line number Diff line change
@@ -42,11 +42,11 @@
},
"dependencies": {
"@ethersproject/experimental": "5.7.0",
"@lit-protocol/constants": "7.0.0",
"@lit-protocol/constants": "7.0.1",
"@lit-protocol/contracts": "0.0.74",
"@lit-protocol/contracts-sdk": "7.0.0",
"@lit-protocol/lit-node-client": "7.0.0",
"@lit-protocol/types": "7.0.1",
"@lit-protocol/contracts-sdk": "7.0.1",
"@lit-protocol/lit-node-client": "7.0.1",
"@requestnetwork/currency": "0.21.0",
"@requestnetwork/data-access": "0.38.0",
"@requestnetwork/ethereum-storage": "0.38.0",
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@
"prepare": "yarn run build"
},
"dependencies": {
"@lit-protocol/types": "7.0.0",
"@lit-protocol/types": "7.0.1",
"ethers": "5.7.2"
},
"devDependencies": {
Loading

0 comments on commit 0229d47

Please sign in to comment.