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

Add Legacy Wallet Exporter #50

Merged
merged 4 commits into from
Jul 26, 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
112 changes: 55 additions & 57 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": "dcl-ui",
"version": "1.0.13",
"version": "1.0.15",
"description": "A Vuejs based application for managing CSA Distributed Compliance Ledger",
"author": "Comcast Inc.",
"private": true,
Expand Down
11 changes: 9 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,16 @@ export default {
{ label: 'Compliance', icon: 'pi pi-fw pi-check-circle', to: '/compliance' },
{ label: 'PKI', icon: 'pi pi-fw pi-lock', to: '/pki' },
{ label: 'Validators', icon: 'pi pi-fw pi-server', to: '/validators' },
{ label: 'Upgrades', icon: 'pi pi-fw pi-history', to: '/upgrades' }
{ label: 'Upgrades', icon: 'pi pi-fw pi-history', to: '/upgrades' },
]
}
},
{
label: 'Tools and Documentation',
items: [
{ label: 'Legacy Wallet', icon: 'pi pi-fw pi-wallet', to: '/legacy-wallet' },
{ label: 'Keplr Wallet - Guide', icon: 'pi pi-fw pi-book', to: '/keplr-wallet' }
]
}
]
}
},
Expand Down
31 changes: 2 additions & 29 deletions src/components/Dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
<template>
<div class="grid">
<!-- Warning Block -->
<div v-if="isTestnetOrLocalhost" class="card mb-0 col-12 mb-3 mt-3">
<div class="flex justify-content-between mb-3">
<div>
<span class="block text-500 font-medium text-lg mb-3">
Important Notice
</span>
<p>
The current wallet is not recommended and will be decommissioned soon. Please use our alternative site
<a href="https://testnet-keplr.iotledger.io" target="_blank" rel="noopener noreferrer">
https://testnet-keplr.iotledger.io
<i class="pi pi-external-link"></i>
</a>
that supports Keplr wallet.
</p>
<p>
One of the key features of the Keplr wallet is its support for hardware wallets, ensuring a higher level of security. For a more detailed overview and support,
<a href="https://keplr.app/" target="_blank" rel="noopener noreferrer">
check out Keplr's official documentation
<i class="pi pi-external-link"></i>
</a>.
</p>
</div>
<div class="flex align-items-center justify-content-center bg-yellow-100 border-round" style="width: 2.5rem; height: 2.5rem">
<i class="pi pi-exclamation-triangle text-yellow-500 text-xl"></i>
</div>
</div>
</div>

<div class="col-12 lg:col-6 xl:col-3">
<div class="card mb-0">
Expand Down Expand Up @@ -326,8 +299,8 @@
@click="
copyToClipboard(
JSON.stringify({
type: '/cosmos.crypto.secp256k1.PubKey',
key: pubKey.value,
'@type': '/cosmos.crypto.secp256k1.PubKey',
'key': pubKey.value,
})
)
"
Expand Down
Loading