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

feat: refactor lit protocol provider #1512

Merged
merged 31 commits into from
Dec 13, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
650095e
feat: integrate Lit Protocol with enhanced testing and configuration …
rodrigopavezi Dec 5, 2024
153667e
fix: readme
rodrigopavezi Dec 5, 2024
0a4a75d
Update .circleci/config.yml
rodrigopavezi Dec 5, 2024
a64801f
fix: build
rodrigopavezi Dec 5, 2024
7eb71e1
fix: build giving more memory
rodrigopavezi Dec 5, 2024
1b3f85e
fix: memory issu
rodrigopavezi Dec 5, 2024
11a4e86
fix: out of memory issue
rodrigopavezi Dec 6, 2024
0229d47
chore: upgrade lit protocol sdk version
rodrigopavezi Dec 6, 2024
b953258
fix: package lint
rodrigopavezi Dec 6, 2024
c48b7f6
fix: as per review
rodrigopavezi Dec 6, 2024
14a6aed
Update packages/lit-protocol-cipher/README.md
rodrigopavezi Dec 6, 2024
e1d6c49
fix: revert memory change
rodrigopavezi Dec 9, 2024
42c83d5
Update packages/lit-protocol-cipher/src/lit-protocol-cipher-provider.ts
rodrigopavezi Dec 9, 2024
50aca1a
Update README.md
rodrigopavezi Dec 9, 2024
e64f15b
fix: rename LitProtocolCipherProvider
rodrigopavezi Dec 9, 2024
c73fb44
fix: update lit integration test
rodrigopavezi Dec 9, 2024
c216c24
fix: duplicate files
rodrigopavezi Dec 10, 2024
0a481cc
Merge branch 'master' into refactor/lit-protocol-provider
rodrigopavezi Dec 10, 2024
e48d2ee
fix: tests
rodrigopavezi Dec 10, 2024
af6c986
Merge branch 'refactor/lit-protocol-provider' of https://github.com/R…
rodrigopavezi Dec 10, 2024
8ba492f
Merge branch 'master' into refactor/lit-protocol-provider
rodrigopavezi Dec 10, 2024
605154e
refactor: add lit-protocol-cipher tsconfig and rename provider class
rodrigopavezi Dec 11, 2024
7fb3bae
refactor: enhance encryption parameter validation and condition creation
rodrigopavezi Dec 13, 2024
586467d
Merge branch 'master' into refactor/lit-protocol-provider
rodrigopavezi Dec 13, 2024
5b89fac
chore: update @lit-protocol packages to version 7.0.2
rodrigopavezi Dec 13, 2024
c19db75
fix: add crypto module for Node.js compatibility in jest config
rodrigopavezi Dec 13, 2024
f7c4825
chore: reorder test script execution in integration-test package.json
rodrigopavezi Dec 13, 2024
c3c771a
Update packages/integration-test/test/lit-protocol.test.ts
rodrigopavezi Dec 13, 2024
4975d24
fix: format
rodrigopavezi Dec 13, 2024
4100d89
fix: test timeouts
rodrigopavezi Dec 13, 2024
a847618
fix: per review
rodrigopavezi Dec 13, 2024
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
Prev Previous commit
Next Next commit
chore: reorder test script execution in integration-test package.json
- Updated the test script in package.json to run 'test:lit' before 'test:node' and 'test:layers' for improved test execution flow.
- This change aims to enhance the efficiency of the testing process by prioritizing the lit tests.
- Fix an old nouce error
rodrigopavezi committed Dec 13, 2024
commit f7c48255df19bdcf9a93e05aca37c7ccc6310026
2 changes: 1 addition & 1 deletion packages/integration-test/package.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
"build": "tsc -b tsconfig.build.json",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint \"test/**/*.ts\"",
"test": "run-s test:node test:layers test:lit",
"test": "run-s test:lit test:node test:layers",
"test:scheduled": "run-s test:erc20 test:any test:erc777 test:eth test:btc ",
"test:layers": "jest test/layers.test.ts --forceExit",
"test:node": "jest test/node-client.test.ts --forceExit",