Skip to content

fix: Updated lit signature logic #331

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

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2f9011c
fix: updated lit signature logic
sstefdev Feb 3, 2025
bda56f6
Merge branch 'main' of github.com:RequestNetwork/web-components into …
sstefdev Feb 13, 2025
3b817f0
fix: issue with lit-wallet-sig
sstefdev Feb 18, 2025
ede8ea8
chore: remove console.logs
sstefdev Feb 18, 2025
46bea85
chore: pin web3modal version
sstefdev Feb 26, 2025
96655a9
fix: node out of space error
sstefdev Feb 26, 2025
0432bd8
fix: revert downgrade of actions/setup-node back to v4 instead of v3
MantisClone Feb 27, 2025
e06d530
fix: Set container to 8g memory. Adjust max_old_space_size=7680
MantisClone Feb 27, 2025
1e3fc9c
fix: partial revert - undefiner build container in github action
MantisClone Feb 27, 2025
b0624a0
fix: set max_old_space_size=7680 when building locally too
MantisClone Feb 27, 2025
d7c0440
chore: move turbo clean script under clean instead of deep-clean
MantisClone Feb 27, 2025
72d023b
fix: remove unused variable litSessionInitialized
MantisClone Feb 28, 2025
cf04e29
fix: remove unused debouncedUpdate varaible
MantisClone Feb 28, 2025
e7de39c
Make view-requests log the same error as single-invoice
MantisClone Feb 28, 2025
b3af361
fix: try to make requests load upon wallet connect, per edits by claude
MantisClone Feb 28, 2025
7de94b5
fix: load unencrypted requests after initial wallet connection
MantisClone Feb 28, 2025
3a5cb71
refactor: rename var to litInitializationAttempted for clarity
MantisClone Mar 1, 2025
3620394
fix: remove unnecessary await calling cipherProvider.enableDecryption
MantisClone Mar 1, 2025
d65b963
refactor: lit session handling
MantisClone Mar 1, 2025
82dd1a3
feat: improve toast messages
MantisClone Mar 1, 2025
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: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
node-version: "18"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Build
env:
NODE_OPTIONS: "--max-old-space-size=7680" # 8 GB - 512 MB for OS
run: npm run build
Loading