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: OneKey Classic 1S #500

Merged
merged 5 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-staking",
"version": "0.3.22",
"version": "0.3.23",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/FAQ/data/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const questions = (
},
{
title: "Are hardware wallets supported?",
content: `The only hardware wallets supporting Bitcoin Staking are: <p>(1) Keystone via QR code and (2) OneKey Pro <strong>using Taproot only</strong> through the OneKey Chrome Extension. Using any other hardware wallet through any means (such as connection to a software/extension/mobile wallet) can lead to permanent inability to withdraw the stake.</p>`,
content: `The following are the only hardware wallets supporting Bitcoin Staking: (1) Keystone -- via QR code and (2) OneKey -- via the OneKey Chrome extension and the hardware devices (a) OneKey Pro and (b) OneKey Classic 1s (experimental, <code><strong>3.10.1</strong></code> firmware or higher) using <strong>Taproot only</strong>. Using any other hardware wallet through any means (such as connection to a software/extension/mobile wallet) can lead to permanent inability to withdraw the stake.`,
},
];
if (shouldDisplayPoints()) {
Expand Down
15 changes: 10 additions & 5 deletions src/app/components/Modals/ConnectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,16 @@ export const ConnectModal: React.FC<ConnectModalProps> = ({
/>
<span className="label-text text-xs leading-snug md:text-sm md:max-w-[34rem]">
The following are the only hardware wallets supporting Bitcoin
Staking: (1) Keystone via QR code and (2) OneKey Pro{" "}
<strong>using Taproot only</strong> through the OneKey Chrome
Extension. Using any other hardware wallet through any means
(such as connection to a software/extension/mobile wallet) can
lead to permanent inability to withdraw the stake.
Staking: (1) Keystone -- via QR code and (2) OneKey -- via the
OneKey Chrome extension and the hardware devices (a) OneKey
Pro and (b) OneKey Classic 1s (experimental,{" "}
<code>
<strong>3.10.1</strong>
</code>{" "}
firmware or higher) using <strong>Taproot only</strong>. Using
any other hardware wallet through any means (such as
connection to a software/extension/mobile wallet) can lead to
permanent inability to withdraw the stake.
</span>
</label>
</div>
Expand Down