Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
b34e57b
bip340
matthiasgeihs Nov 21, 2024
217edd2
add bip340 test
matthiasgeihs Nov 21, 2024
e43fa47
custom session sig setter
himanshuchawla009 Nov 25, 2024
5d6aa4e
passkey registration
himanshuchawla009 Nov 26, 2024
952df91
fetch node details with sig type
matthiasgeihs Nov 26, 2024
8cadb32
Merge branch 'feat/custom-session-sigs' into demo/passskey-plugin-demo
himanshuchawla009 Nov 26, 2024
24c3422
use sig type from @toruslabs/constants
matthiasgeihs Nov 27, 2024
ab2fbe6
drop support for v3 lib type
matthiasgeihs Nov 27, 2024
09514aa
demo updates
himanshuchawla009 Nov 28, 2024
f4f81ee
demo updates
himanshuchawla009 Nov 28, 2024
31fd129
Merge pull request #193 from Web3Auth/feat/bip340
himanshuchawla009 Nov 28, 2024
aa4cade
4.0.0-alpha.0
himanshuchawla009 Nov 28, 2024
c6bc270
passkey demo fixes
himanshuchawla009 Dec 2, 2024
27d7ae3
Merge pull request #198 from Web3Auth/demo/passskey-plugin-demo
himanshuchawla009 Dec 2, 2024
09327bd
merge with v4
himanshuchawla009 Dec 2, 2024
1401cb1
4.1.0-alpha.0
himanshuchawla009 Dec 2, 2024
6b63307
example fixes
himanshuchawla009 Dec 2, 2024
a86878b
remove debugger
himanshuchawla009 Dec 2, 2024
a1f8149
browser support check added
himanshuchawla009 Dec 2, 2024
e6bd18c
expose context object and custom sig setter
himanshuchawla009 Dec 11, 2024
3aab39b
4.1.1-alpha.0
himanshuchawla009 Dec 12, 2024
94044ef
expose config on context
himanshuchawla009 Dec 12, 2024
96b1b99
4.1.2-alpha.0
himanshuchawla009 Dec 12, 2024
97a01e1
make context read only
himanshuchawla009 Dec 12, 2024
d837e14
4.1.3-alpha.0
himanshuchawla009 Dec 12, 2024
2717db1
switch to context based interface
himanshuchawla009 Dec 12, 2024
7e07d42
4.1.4-alpha.0
himanshuchawla009 Dec 12, 2024
b2c8446
minor cleanup
himanshuchawla009 Dec 12, 2024
a7a7bcc
4.1.5-alpha.0
himanshuchawla009 Dec 12, 2024
4935a36
update demo
himanshuchawla009 Dec 12, 2024
80ee266
reuse session sigs
himanshuchawla009 Dec 12, 2024
eea06ae
add event emitter
himanshuchawla009 Dec 13, 2024
52388af
4.1.6-alpha.0
himanshuchawla009 Dec 13, 2024
965f009
event emitter added
himanshuchawla009 Dec 13, 2024
9729f9c
cleanup
himanshuchawla009 Dec 16, 2024
3dd275a
Merge pull request #195 from Web3Auth/feat/custom-session-sigs
himanshuchawla009 Dec 16, 2024
c3fc225
remove demo/dist
matthiasgeihs Dec 16, 2024
016d6f2
bip340 key tweaking
matthiasgeihs Dec 11, 2024
e16c2df
add sign method to ICoreKit interface
matthiasgeihs Dec 16, 2024
2586497
suppress dkls client logs
matthiasgeihs Dec 16, 2024
42db10e
quick fixes to test code
matthiasgeihs Dec 16, 2024
1df032f
fix: use new instance for each tests
ieow Dec 17, 2024
b885897
Merge pull request #202 from Web3Auth/feat/bip340-key-tweak
himanshuchawla009 Dec 17, 2024
ae4f62d
4.1.7-alpha.0
himanshuchawla009 Dec 17, 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
1 change: 1 addition & 0 deletions demo/redirect-flow-example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

# production
/build
/dist

# misc
.DS_Store
Expand Down
2,443 changes: 1,039 additions & 1,404 deletions demo/redirect-flow-example/package-lock.json

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions demo/redirect-flow-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
"private": true,
"dependencies": {
"@tkey/common-types": "^15.1.0",
"@toruslabs/tss-dkls-lib": "^4.0.0",
"@toruslabs/tss-frost-lib": "^1.0.0",
"@toruslabs/torus.js": "15.2.0-alpha.0",
"@toruslabs/tss-dkls-lib": "^5.0.0-alpha.0",
"@toruslabs/tss-frost-lib": "^2.0.0-alpha.0",
"@toruslabs/tss-frost-lib-bip340": "^0.1.0-alpha.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.48",
"@types/react": "^18.3.11",
Expand All @@ -14,6 +16,7 @@
"@web3auth/base": "^9.0.2",
"@web3auth/ethereum-mpc-provider": "^9.3.0",
"@web3auth/mpc-core-kit": "file:../..",
"@web3auth/mpc-passkey-plugin": "0.1.15-alpha.0",
"browserify-zlib": "^0.2.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.3",
Expand Down Expand Up @@ -50,6 +53,9 @@
"react-app/jest"
]
},
"overrides": {
"@toruslabs/torus.js": "15.2.0-alpha.0"
},
"devDependencies": {
"@types/eccrypto": "^1.1.6",
"@types/elliptic": "^6.4.18",
Expand Down
2 changes: 1 addition & 1 deletion demo/redirect-flow-example/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@
.flex-column {
display: flex;
flex-direction: column;
}
}
14 changes: 7 additions & 7 deletions demo/redirect-flow-example/src/App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
// import { render, screen } from '@testing-library/react';
// import App from './App';

test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
// test('renders learn react link', () => {
// render(<App />);
// const linkElement = screen.getByText(/learn react/i);
// expect(linkElement).toBeInTheDocument();
// });
Loading
Loading