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: demo for recover, export and import tss key #110

Closed
wants to merge 20 commits into from
Closed
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
ca5d77b
enable variable session time for mpcCoreKit
lwin-kyaw Jan 30, 2024
2e0be6a
cleanup debug logs
lwin-kyaw Jan 30, 2024
9563e50
[IRT-1076] chore: Update packages
huggingbot Feb 2, 2024
4176a3f
[IRT-1076] chore: Update package-lock
huggingbot Feb 2, 2024
618c686
Merge remote-tracking branch 'origin/master' into feat/variable-sessi…
lwin-kyaw Feb 27, 2024
8e068f3
update torus.js to v12.2.0
lwin-kyaw Mar 13, 2024
0a4785c
Merge remote-tracking branch 'origin/master' into feat/variable-sessi…
lwin-kyaw Mar 13, 2024
bff7a50
update [email protected], updated 'sessionTime' test
lwin-kyaw Mar 13, 2024
861acf6
clean up
lwin-kyaw Mar 13, 2024
1573951
tested 'variable session time' with redirect demo
lwin-kyaw Mar 13, 2024
1b5cb2c
resolved conflicts and updated deps
lwin-kyaw Apr 8, 2024
0350e84
update test cases
lwin-kyaw Apr 8, 2024
c72a4d7
removed serverTimeOffset param inside corekit constructor
lwin-kyaw Apr 9, 2024
1e9fb83
upgrade [email protected] and include 'serverTimeOffset' value in cus…
lwin-kyaw Apr 9, 2024
99e0553
Merge pull request #89 from Web3Auth/feat/variable-session-time
himanshuchawla009 Apr 9, 2024
014f08f
feat: demo for recover, export and import tss key
ieow Apr 17, 2024
fef50aa
feat: demo for recover, export and import tss key
ieow Apr 17, 2024
e4c31df
update demo with export/import/recovery tss key, refactor and fixed MFA
lwin-kyaw Apr 17, 2024
85906f9
resolved conflicts
lwin-kyaw Apr 17, 2024
a39785b
fix: add signTx using exported key
ieow Apr 18, 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
49 changes: 25 additions & 24 deletions demo/redirect-flow-example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/redirect-flow-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@types/node": "^16.18.48",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@web3auth/mpc-core-kit": "file://../../",
"@web3auth/mpc-core-kit": "file:../..",
"browserify-zlib": "^0.2.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.3",
Expand Down
39 changes: 35 additions & 4 deletions demo/redirect-flow-example/src/App.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.container {
width: 60%;
min-width: 400px;
margin: auto;
padding: 0 2rem;
}
Expand Down Expand Up @@ -82,9 +83,9 @@
}

@media (max-width: 1200px) {
.container {
/* .container {
width: 100%;
}
} */
}

.flex-container {
Expand Down Expand Up @@ -117,9 +118,39 @@
.disabledDiv {
pointer-events: none;
opacity: 0.4;
}
}

.hidden {
display: none;
}

.flex-column {
display: flex;
flex-direction: column;
}
}

.recover-account-div {
width: 100%;
}

.recover-account-div .recovery-form {
display: flex;
width: 100%;
justify-content: center;
margin-bottom: 10px;
}

.recover-account-div .recovery-form .right,.left {
width: 50%;
}

.recover-account-div label {
font-size: 0.8rem;
}

.recover-account-div input {
display: block;
width: 70%;
font-size: 0.9rem;
padding: 5px;
}
Loading
Loading